/* ============================================================
   DJ LICKSTREAM — Main Stylesheet
   Dark Luxury x Urban Energy
   ============================================================ */

/* --- Custom Properties --- */
:root {
    --bg-primary:   #0A0A0F;
    --bg-secondary: #111118;
    --bg-card:      #13131C;

    --gold:         #C8A96E;
    --gold-light:   #DFC089;
    --gold-dim:     rgba(200, 169, 110, 0.15);

    --orange:       #FF6B35;

    --white:        #EAEAEA;
    --white-dim:    rgba(234, 234, 234, 0.55);
    --white-faint:  rgba(234, 234, 234, 0.12);

    --gray:         #3A3A4A;
    --gray-mid:     #222230;

    --green:        #4CAF50;

    --font-sans:    'Space Grotesk', sans-serif;
    --font-serif:   'DM Serif Display', serif;

    --nav-h:        76px;
    --max-w:        1180px;
    --section-py:   110px;

    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --radius:       3px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg-primary);
    color: var(--white);
    font-family: var(--font-sans);
    line-height: 1.65;
    overflow-x: hidden;
    cursor: none;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: left, top;
}

.cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 38px; height: 38px;
    border: 1.5px solid rgba(200, 169, 110, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease),
                border-color .25s, background .25s, opacity .3s;
    will-change: left, top;
}

.cursor-ring.hover {
    width: 64px; height: 64px;
    border-color: var(--gold);
    background: rgba(200, 169, 110, 0.06);
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 48px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: none;
    transition: all .3s var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--bg-primary);
}
.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 169, 110, 0.28);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(234, 234, 234, 0.28);
}
.btn--ghost:hover { border-color: rgba(234, 234, 234, 0.7); }

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn--outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn--sm   { padding: 9px 18px; font-size: 0.76rem; }
.btn--full { width: 100%; justify-content: center; }
.btn__play { font-size: 0.7rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: background .45s, backdrop-filter .45s, border-color .45s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: rgba(200, 169, 110, 0.1);
}

/* Logo — Text oder Bild */
.nav__logo {
    cursor: none;
    display: flex;
    align-items: center;
    transition: opacity .3s;
}
.nav__logo:hover { opacity: 0.8; }

.nav__logo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
}

/* LS Icon */
.nav__logo-img {
    height: 38px;
    width: auto;
    display: block;
    filter: brightness(1.05);
    transition: filter .3s;
    flex-shrink: 0;
}

/* Schriftzug — mit Abstand links */
.nav__logo-schriftzug {
    height: 36px;
    width: auto;
    display: block;
    margin-left: 10px;
    filter: brightness(1.05);
    transition: filter .3s;
}

.nav__logo:hover .nav__logo-img,
.nav__logo:hover .nav__logo-schriftzug {
    filter: brightness(1.2);
}

/* Schriftzug auf kleinen Screens ausblenden */
@media (max-width: 480px) {
    .nav__logo-schriftzug { display: none; }
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white-dim);
    cursor: none;
    transition: color .3s;
}
.nav__link:hover { color: var(--white); }

.nav__link--cta {
    color: var(--gold);
    border: 1.5px solid rgba(200, 169, 110, 0.5);
    padding: 7px 18px;
    border-radius: var(--radius);
}
.nav__link--cta:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 6px;
    width: 36px; height: 36px;
}
.nav__burger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--white);
    transition: all .3s var(--ease);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu__close {
    position: absolute;
    top: 28px; right: 36px;
    background: none; border: none;
    color: var(--white-dim);
    font-size: 1.4rem;
    cursor: none;
    transition: color .3s;
}
.mobile-menu__close:hover { color: var(--gold); }

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu__link {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white-dim);
    cursor: none;
    transition: color .3s;
}
.mobile-menu__link:hover,
.mobile-menu__link--gold { color: var(--gold); }

.mobile-menu__footer {
    position: absolute;
    bottom: 40px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-faint);
}

/* ============================================================
   HERO — Full-Bleed Split Layout
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark gradient background */
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 20% 50%, rgba(26, 26, 46, 0.95) 0%, transparent 65%),
        radial-gradient(ellipse 30% 40% at 10% 85%, rgba(200, 169, 110, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 25% 30% at 15% 15%, rgba(255, 107, 53, 0.04) 0%, transparent 55%),
        linear-gradient(160deg, #0A0A0F 0%, #0D0D1A 55%, #0A0A12 100%);
    z-index: 0;
}

/* Floating orbs */
.hero__bg::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.05) 0%, transparent 65%);
    top: -100px; left: 5%;
    animation: orb-float 10s ease-in-out infinite;
    border-radius: 50%;
}
.hero__bg::after {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.04) 0%, transparent 65%);
    bottom: 10%; left: 20%;
    animation: orb-float 14s ease-in-out infinite reverse;
    border-radius: 50%;
}

@keyframes orb-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-40px) scale(1.06); }
}

/* Film grain */
.hero__noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Portrait — full bleed right side */
.hero__visual {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 52%;
    z-index: 1;
    overflow: hidden;
}

.hero__visual-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 10%;
    filter: contrast(1.1) saturate(0.65) brightness(0.88);
    display: block;
}

/* Left-to-right fade: dark background bleeds into the image */
.hero__visual-fade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  var(--bg-primary) 0%, rgba(10,10,15,0.5) 28%, transparent 52%),
        linear-gradient(to top,    var(--bg-primary) 0%, transparent 28%),
        linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%);
    z-index: 2;
}

/* Subtle scanlines on the image for that cinematic feel */
.hero__visual-scanlines {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.04) 2px,
        rgba(0,0,0,0.04) 4px
    );
    z-index: 3;
    pointer-events: none;
}

/* Gold accent line along left edge of visual */
.hero__visual::before {
    content: '';
    position: absolute;
    left: 0; top: 15%; bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(200, 169, 110, 0.35), transparent);
    z-index: 4;
}

/* Text column */
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    padding-top: var(--nav-h);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__text {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 60px;
}

.hero__availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-dim);
    animation: fade-up .9s var(--ease) 0.1s both;
}

.hero__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0   rgba(76,175,80,0.5); }
    50%       { box-shadow: 0 0 0 9px rgba(76,175,80,0); }
}

.hero__title {
    display: flex;
    flex-direction: column;
    line-height: 0.88;
    gap: 4px;
}

.hero__title-prefix {
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--white-dim);
    animation: fade-up .9s var(--ease) 0.25s both;
}

.hero__title-name {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 0 80px rgba(200, 169, 110, 0.2);
    animation: fade-up .9s var(--ease) 0.4s both;
}

.hero__genre {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white-dim);
    animation: fade-up .9s var(--ease) 0.55s both;
}

.hero__tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    color: transparent;
    animation: fade-up .9s var(--ease) 0.65s both;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Dünne Linien links und rechts */
.hero__tagline::before,
.hero__tagline::after {
    content: '';
    flex: 0 0 32px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 169, 110, 0.5));
}

.hero__tagline::after {
    background: linear-gradient(to left, transparent, rgba(200, 169, 110, 0.5));
}

.hero__tagline-inner {
    color: rgba(200, 169, 110, 0.75);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fade-up .9s var(--ease) 0.85s both;
    padding-top: 6px;
}

/* Streaming quicklinks below CTAs */
.hero__stream-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fade-up .9s var(--ease) 1.0s both;
    margin-top: 4px;
}

.hero__stream-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-faint);
}

.hero__stream-link {
    color: var(--white-dim);
    transition: color .3s, transform .3s;
    display: flex;
    align-items: center;
    cursor: none;
}
.hero__stream-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: fade-in 1s var(--ease) 1.6s both;
}
.hero__scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--white-faint);
}
.hero__scroll-line {
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
    45%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
    46%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    90%  { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    100% { transform: scaleY(0); transform-origin: top;    opacity: 0; }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
    from { opacity: 0; } to { opacity: 1; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about__left {
    position: sticky;
    top: calc(var(--nav-h) + 40px);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.28;
    color: var(--white);
    border: none; padding: 0;
}
.about__quote em { color: var(--gold); font-style: italic; }

.about__banner {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--gray-mid);
}
.about__banner-img {
    width: 100%;
    filter: saturate(0.85) brightness(0.96);
    transition: filter .5s;
}
.about__banner:hover .about__banner-img {
    filter: saturate(1) brightness(1.04);
}

.about__timeline {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding-left: 24px;
    border-left: 1px solid var(--gray-mid);
}

.about__timeline-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-mid);
    align-items: flex-start;
}
.about__timeline-item:last-child { border-bottom: none; }

.about__timeline-year {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    min-width: 42px;
    padding-top: 3px;
    flex-shrink: 0;
}

.about__timeline-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.about__timeline-content p {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.65;
}

.about__timeline-content p em {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

.about__bio {
    font-size: 0.97rem;
    color: var(--white-dim);
    line-height: 1.82;
    margin-bottom: 36px;
}

/* ============================================================
   SERVICES — Was ich biete
   ============================================================ */
.services {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-mid);
    border-radius: 4px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .35s var(--ease), border-color .35s;
    position: relative;
    overflow: hidden;
}

/* Gold bottom-line reveal on hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .4s var(--ease);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 110, 0.2);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
    color: var(--gold);
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border-radius: 3px;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--white-dim);
    line-height: 1.7;
    flex: 1;
}

.service-card__tag {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-top: auto;
}

/* Live Gigs Highlight Card */
.services__live {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 28px;
    padding: 36px 40px;
    border: 1px solid rgba(200, 169, 110, 0.35);
    border-radius: 4px;
    background: linear-gradient(
        135deg,
        rgba(200, 169, 110, 0.07) 0%,
        rgba(200, 169, 110, 0.03) 50%,
        transparent 100%
    );
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 32px;
}

/* Subtle gold corner glow */
.services__live::before {
    content: '';
    position: absolute;
    top: -40px; left: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services__live-left {
    flex: 1;
    min-width: 260px;
}

.services__live-badge {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200, 169, 110, 0.45);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}

.services__live-left h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.services__live-left p {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.72;
    max-width: 500px;
}

.services__live-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    flex-shrink: 0;
}

.services__live-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

/* CTA row */
.services__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.services__cta p {
    font-size: 0.9rem;
    color: var(--white-dim);
}

/* Live card responsive */
@media (max-width: 768px) {
    .services__live {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }
    .services__live-right {
        align-items: flex-start;
        width: 100%;
    }
    .services__live-tags { justify-content: flex-start; }
}

/* ============================================================
   MUSIC
   ============================================================ */
.music {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.music__featured {
    background: var(--bg-card);
    border: 1px solid var(--gray-mid);
    border-radius: 4px;
    padding: 36px;
    margin-bottom: 48px;
    transition: border-color .3s;
}
.music__featured:hover { border-color: rgba(200, 169, 110, 0.25); }

.music__featured-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.music__featured-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.music__featured-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.music__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.music__tag {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid var(--gray);
    border-radius: 2px;
    color: var(--white-dim);
}

/* Placeholder */
.music__player-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 52px 24px;
    border: 1px dashed var(--gray);
    border-radius: 3px;
    text-align: center;
    transition: border-color .3s;
}
.music__player-placeholder:hover { border-color: var(--gold); }

.music__placeholder-text {
    font-size: 0.88rem;
    color: var(--white-dim);
}

.music__placeholder-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Animated waveform */
.music__waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
}
.music__waveform span {
    display: block;
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.6;
    animation: wave-bar 1.4s ease-in-out infinite;
}
.music__waveform span:nth-child(1)  { height: 12px; animation-delay: 0.00s; }
.music__waveform span:nth-child(2)  { height: 22px; animation-delay: 0.10s; }
.music__waveform span:nth-child(3)  { height: 30px; animation-delay: 0.20s; }
.music__waveform span:nth-child(4)  { height: 18px; animation-delay: 0.30s; }
.music__waveform span:nth-child(5)  { height: 36px; animation-delay: 0.40s; }
.music__waveform span:nth-child(6)  { height: 28px; animation-delay: 0.50s; }
.music__waveform span:nth-child(7)  { height: 40px; animation-delay: 0.60s; }
.music__waveform span:nth-child(8)  { height: 32px; animation-delay: 0.50s; }
.music__waveform span:nth-child(9)  { height: 22px; animation-delay: 0.40s; }
.music__waveform span:nth-child(10) { height: 38px; animation-delay: 0.30s; }
.music__waveform span:nth-child(11) { height: 26px; animation-delay: 0.20s; }
.music__waveform span:nth-child(12) { height: 16px; animation-delay: 0.10s; }
.music__waveform span:nth-child(13) { height: 32px; animation-delay: 0.00s; }
.music__waveform span:nth-child(14) { height: 20px; animation-delay: 0.15s; }
.music__waveform span:nth-child(15) { height: 28px; animation-delay: 0.25s; }
.music__waveform span:nth-child(16) { height: 14px; animation-delay: 0.35s; }
.music__waveform span:nth-child(17) { height: 34px; animation-delay: 0.45s; }
.music__waveform span:nth-child(18) { height: 24px; animation-delay: 0.55s; }
.music__waveform span:nth-child(19) { height: 18px; animation-delay: 0.65s; }
.music__waveform span:nth-child(20) { height: 10px; animation-delay: 0.70s; }

@keyframes wave-bar {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50%       { transform: scaleY(1);   opacity: 0.9; }
}

/* SoundCloud embed (when active) */
.music__sc-embed iframe { border-radius: 3px; display: block; }

/* Mix grid */
.music__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

.music__card {
    background: var(--bg-card);
    border: 1px solid var(--gray-mid);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .35s var(--ease), border-color .35s;
}
.music__card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 110, 0.3);
}

.music__card-art {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-primary);
}
.music__card-art img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease), filter .55s;
    filter: saturate(0.75) brightness(0.92);
}
.music__card:hover .music__card-art img {
    transform: scale(1.07);
    filter: saturate(0.95) brightness(1.0);
}

.music__card-overlay {
    position: absolute; inset: 0;
    background: rgba(10, 10, 15, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.music__card:hover .music__card-overlay { opacity: 1; }

.music__card-play {
    font-size: 2rem;
    color: var(--gold);
    cursor: none;
    transition: transform .3s var(--ease);
}
.music__card-play:hover { transform: scale(1.15); }

.music__card-art--empty {
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.music__card-art--empty span {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
}

.music__card-info { padding: 18px 20px; }
.music__card-info h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    margin: 10px 0 6px;
}
.music__duration {
    font-size: 0.72rem;
    color: var(--white-dim);
    letter-spacing: 0.06em;
}

/* Spotify Embed */
.spotify-embed {
    margin: 40px 0;
}
.spotify-embed__placeholder {
    background: var(--bg-card);
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.spotify-embed__info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}
.spotify-embed__icon { color: #1DB954; flex-shrink: 0; }
.spotify-embed__label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1DB954;
    margin: 0 0 2px;
}
.spotify-embed__title {
    font-size: 0.95rem;
    color: var(--white);
    margin: 0;
}
.spotify-embed__note {
    width: 100%;
    font-size: 0.68rem;
    color: var(--white-dim);
    margin: 8px 0 0;
}
.spotify-embed__player iframe {
    border-radius: var(--radius);
    display: block;
}

/* --- Produktionen — Vinyl Karussell --- */
.music__productions {
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid var(--white-faint);
}

.music__productions-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 6px;
}

.music__productions-sub {
    font-size: 0.85rem;
    color: var(--white-dim);
    letter-spacing: 0.03em;
    margin-bottom: 40px;
}

.music__productions-hint {
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold);
    opacity: 0.6;
    margin-top: 36px;
    letter-spacing: 0.02em;
}

/* Custom Production Hinweis */
.music__custom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--white-dim);
    line-height: 1.7;
    margin-top: 48px;
    opacity: 0.55;
    transition: opacity 0.3s var(--ease);
}

.music__custom:hover {
    opacity: 0.85;
}

.music__custom a {
    display: inline-block;
    margin-top: 6px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: color 0.3s var(--ease);
    cursor: none;
}

.music__custom a:hover {
    color: var(--gold-light);
}

/* Carousel Container */
.production-carousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    margin: 0 -40px;
    padding-left: 40px;
    padding-right: 40px;
    scrollbar-width: none;
}

.production-carousel::-webkit-scrollbar {
    display: none;
}

/* Card */
.production-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    text-align: center;
    cursor: none;
}

/* --- Vinyl Disc --- */
.production-card__vinyl {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
}

.production-card__disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, transparent 18%, rgba(200,169,110,0.06) 18.5%, transparent 19%),
        radial-gradient(circle at 50% 50%, transparent 28%, rgba(200,169,110,0.04) 28.5%, transparent 29%),
        radial-gradient(circle at 50% 50%, transparent 36%, rgba(200,169,110,0.04) 36.5%, transparent 37%),
        radial-gradient(circle, #1a1a24 16%, #15151f 40%, #0f0f18 100%);
    box-shadow:
        0 0 0 2px rgba(200, 169, 110, 0.1),
        0 0 40px rgba(200, 169, 110, 0.04),
        inset 0 0 20px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 1.2s var(--ease);
}

/* Conic shimmer */
.production-card__disc::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%, rgba(200,169,110,0.03) 15%, transparent 30%,
        rgba(200,169,110,0.05) 50%, transparent 65%,
        rgba(200,169,110,0.02) 85%, transparent 100%
    );
}

.production-card:hover .production-card__disc {
    transform: rotate(180deg);
}

/* Grooves */
.production-card__groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.06);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.production-card__groove--1 { width: 50%; height: 50%; }
.production-card__groove--2 { width: 68%; height: 68%; }
.production-card__groove--3 { width: 88%; height: 88%; }

/* Center Label */
.production-card__label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--bg-primary);
    box-shadow: 0 0 12px rgba(200, 169, 110, 0.15);
}

/* Pulse ring for Coming Soon */
.production-card__ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0;
}

.production-card--soon .production-card__ring {
    animation: prod-ring 3s ease-out infinite;
}

@keyframes prod-ring {
    0%   { transform: scale(0.92); opacity: 0.35; }
    100% { transform: scale(1.06); opacity: 0; }
}

/* --- Card Text --- */
.production-card__badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200, 169, 110, 0.25);
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.production-card__title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.production-card__sub {
    font-size: 0.78rem;
    color: var(--white-dim);
    margin-bottom: 14px;
    font-style: italic;
}

.production-card__tags {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.production-card__tags span {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    color: var(--white-dim);
    background: var(--white-faint);
    padding: 3px 10px;
    border-radius: 2px;
}

/* Scroll-Hinweis (nur Mobile) */
.production-scroll-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-dim);
    opacity: 0.5;
}

.production-scroll-hint span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    animation: scroll-hint-slide 1.5s ease-in-out infinite;
}

@keyframes scroll-hint-slide {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50%      { transform: translateX(8px); opacity: 1; }
}

@media (max-width: 768px) {
    .music__productions { margin-top: 56px; padding-top: 48px; }
    .production-carousel { gap: 20px; margin: 0 -24px; padding-left: 24px; padding-right: 24px; }
    .production-card { flex: 0 0 220px; }
    .production-card__vinyl { width: 160px; height: 160px; }
    .production-card__label { width: 42px; height: 42px; font-size: 0.6rem; }
    .production-scroll-hint { display: flex; }
}

@media (max-width: 480px) {
    .production-carousel {
        gap: 16px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .production-card { flex: 0 0 75vw; }
    .production-card__vinyl { width: 52vw; height: 52vw; max-width: 180px; max-height: 180px; }
    .production-card__label { width: 36px; height: 36px; font-size: 0.55rem; }
    .production-card__title { font-size: 0.95rem; }
    .production-card__sub { font-size: 0.72rem; }
}

/* Platforms strip */
.music__platforms {
    text-align: center;
}

.music__platforms-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 20px;
}

.music__platforms-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--bg-card);
    border: 1px solid var(--gray-mid);
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white-dim);
    cursor: none;
    transition: all .3s var(--ease);
}
.platform-badge:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================================
   EVENTS
   ============================================================ */
.events {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.events__tabs {
    display: flex;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-mid);
}

.events__tab {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: var(--white-dim);
    cursor: none;
    transition: all .3s;
}
.events__tab:hover,
.events__tab--active { color: var(--gold); border-bottom-color: var(--gold); }

.events__list          { margin-bottom: 16px; }
.events__list--hidden  { display: none; }

.events__coming-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 8px;
    border: 1px dashed rgba(200, 169, 110, 0.25);
    border-radius: 3px;
    font-size: 0.84rem;
    color: var(--white-dim);
    font-style: italic;
}

.events__coming-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    animation: pulse-dot 2.2s ease-in-out infinite;
}

.event-card {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 28px 16px;
    border-bottom: 1px solid var(--gray-mid);
    border-radius: var(--radius);
    transition: background .3s, padding .3s;
}
.event-card:hover {
    background: var(--bg-card);
    padding: 28px 24px;
    border-color: transparent;
}

.event-card__date { display: flex; flex-direction: column; align-items: center; text-align: center; flex-shrink: 0; }
.event-card__day  { font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; }
.event-card__month { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); margin-top: 3px; }

.event-card__title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.event-card__venue { font-size: 0.84rem; color: var(--white-dim); margin-bottom: 10px; }
.event-card__tags  { display: flex; gap: 8px; flex-wrap: wrap; }

.event-card__status {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}
.event-card__status--upcoming { background: rgba(200,169,110,0.12); color: var(--gold); border: 1px solid rgba(200,169,110,0.28); }
.event-card__status--past     { background: rgba(234,234,234,0.06); color: var(--white-dim); border: 1px solid var(--gray-mid); }

.events__nudge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    padding: 40px 48px;
    border: 1px solid var(--gray-mid);
    border-radius: 4px;
    background: var(--bg-card);
    flex-wrap: wrap;
    transition: border-color .3s;
}
.events__nudge:hover { border-color: rgba(200,169,110,0.2); }
.events__nudge-label { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.events__nudge-sub   { font-size: 0.78rem; letter-spacing: 0.1em; color: var(--white-dim); text-transform: uppercase; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.booking__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.booking__intro { position: sticky; top: calc(var(--nav-h) + 40px); }

.booking__sub {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-top: -32px;
    margin-bottom: 44px;
}

.booking__direct {
    padding: 28px;
    border: 1px solid var(--gray-mid);
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--bg-card);
}
.booking__direct-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 10px; }
.booking__email {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    word-break: break-all;
    margin-bottom: 14px;
    transition: color .3s;
    cursor: none;
}
.booking__email:hover { color: var(--gold-light); }
.booking__response { font-size: 0.78rem; color: var(--white-dim); }

.booking__genres {
    padding: 24px 28px;
    border: 1px solid var(--gray-mid);
    border-radius: 4px;
    background: var(--bg-card);
}
.booking__genre-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

/* Form */
.booking__form { display: flex; flex-direction: column; gap: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-dim); }
.form-optional { font-size: 0.65rem; color: var(--gray); letter-spacing: 0; text-transform: none; }

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius);
    padding: 13px 15px;
    font-family: var(--font-sans);
    font-size: 0.93rem;
    color: var(--white);
    transition: border-color .3s, box-shadow .3s;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,110,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233A3A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: none;
}
.form-group select option { background: var(--bg-card); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* Checkbox */
.form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: none;
}

.form-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: none;
    border: 1px solid var(--gray-mid);
    background: var(--bg-card);
    border-radius: 2px;
    padding: 0;
}

.form-checkbox-label span {
    font-size: 0.82rem;
    color: var(--white-dim);
    line-height: 1.6;
}

.form-privacy-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .3s;
    cursor: none;
}
.form-privacy-link:hover { color: var(--gold-light); }

.form-field-hint {
    font-size: 0.72rem;
    color: var(--white-dim);
    line-height: 1.5;
    margin-top: 6px;
}

/* Datenschutz-Hinweis unter dem Button */
.form-hint {
    font-size: 0.72rem;
    color: var(--white-dim);
    line-height: 1.6;
    text-align: center;
    padding-top: 4px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 16px 24px;
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
    border-radius: var(--radius);
    font-size: 0.88rem;
    color: #81C784;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--gray-mid);
    padding: 72px 0 36px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer__logo-img {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(1.05);
}

.footer__logo-schriftzug {
    height: 42px;
    width: auto;
    display: block;
    margin-left: 10px;
    filter: brightness(1.05);
}
.footer__tagline {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-faint);
    margin-bottom: 16px;
}
.footer__contact-email {
    font-size: 0.82rem;
    color: var(--white-dim);
    transition: color .3s;
    cursor: none;
}
.footer__contact-email:hover { color: var(--gold); }

.footer__col-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    font-size: 0.84rem;
    color: var(--white-dim);
    cursor: none;
    transition: color .3s, padding-left .3s;
}
.footer__link:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__divider {
    border: none;
    border-top: 1px solid var(--gray-mid);
    margin-bottom: 24px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: var(--white-dim);
    flex-wrap: wrap;
    gap: 8px;
}

.footer__legal {
    color: var(--white-dim);
    cursor: none;
    transition: color .3s;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.72rem;
}
.footer__legal:hover { color: var(--gold); }

.footer__cookie-settings { cursor: none; }

.footer__url { color: var(--gray); font-size: 0.68rem; letter-spacing: 0.08em; }

.footer__credit {
    text-align: center;
    padding-top: 20px;
    margin-top: 16px;
    border-top: 1px solid var(--white-faint);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.footer__credit-link {
    color: var(--white-dim);
    transition: color 0.3s var(--ease);
    cursor: none;
}

.footer__credit-link:hover {
    color: var(--gold);
}

/* ============================================================
   EASTER EGG — Vinyl Scratch Secret
   ============================================================ */
.easter-egg {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.easter-egg.active {
    opacity: 1;
    visibility: visible;
    cursor: default;
}

/* Glitch flash on trigger */
.easter-egg__glitch {
    position: fixed;
    inset: 0;
    background: var(--gold);
    opacity: 0;
    pointer-events: none;
    z-index: 10001;
}

.easter-egg__glitch.flash {
    animation: ee-flash 0.5s steps(4) forwards;
}

@keyframes ee-flash {
    0%   { opacity: 0.7; }
    15%  { opacity: 0; }
    25%  { opacity: 0.4; }
    35%  { opacity: 0; }
    50%  { opacity: 0.2; }
    100% { opacity: 0; }
}

.easter-egg__content {
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s var(--ease) 0.3s, opacity 0.8s var(--ease) 0.3s;
}

.easter-egg.active .easter-egg__content {
    transform: translateY(0);
    opacity: 1;
}

/* --- Vinyl Wrap mit Sound-Ringen --- */
.easter-egg__vinyl-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
}

/* Pulsierende Sound-Ringe */
.easter-egg__ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid var(--gold);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    pointer-events: none;
}

.easter-egg__ring--1 { width: 200px; height: 200px; }
.easter-egg__ring--2 { width: 240px; height: 240px; }
.easter-egg__ring--3 { width: 280px; height: 280px; }

.easter-egg.playing .easter-egg__ring--1 {
    animation: ee-pulse 2s ease-out infinite;
}
.easter-egg.playing .easter-egg__ring--2 {
    animation: ee-pulse 2s ease-out 0.4s infinite;
}
.easter-egg.playing .easter-egg__ring--3 {
    animation: ee-pulse 2s ease-out 0.8s infinite;
}

@keyframes ee-pulse {
    0%   { transform: translate(-50%, -50%) scale(0.7); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Vinyl */
.easter-egg__vinyl {
    width: 180px;
    height: 180px;
    position: absolute;
    top: 0; left: 0;
}

.easter-egg__disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, transparent 20%, rgba(200, 169, 110, 0.06) 20.5%, transparent 21%),
        radial-gradient(circle at 50% 50%, transparent 30%, rgba(200, 169, 110, 0.04) 30.5%, transparent 31%),
        radial-gradient(circle at 50% 50%, transparent 38%, rgba(200, 169, 110, 0.04) 38.5%, transparent 39%),
        radial-gradient(circle, #1a1a24 22%, #15151f 42%, #0f0f18 100%);
    box-shadow:
        0 0 0 2px rgba(200, 169, 110, 0.15),
        0 0 50px rgba(200, 169, 110, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.4);
    position: relative;
    animation-play-state: paused;
}

/* Conic shimmer */
.easter-egg__disc::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%, rgba(200, 169, 110, 0.04) 12%, transparent 24%,
        rgba(200, 169, 110, 0.06) 40%, transparent 52%,
        rgba(200, 169, 110, 0.03) 68%, transparent 80%,
        rgba(200, 169, 110, 0.05) 92%, transparent 100%
    );
}

.easter-egg.playing .easter-egg__disc {
    animation: ee-spin 2.5s linear infinite;
}

.easter-egg.paused .easter-egg__disc {
    animation: ee-spin 2.5s linear infinite;
    animation-play-state: paused;
}

.easter-egg__groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.06);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.easter-egg__groove--1 { width: 52%; height: 52%; }
.easter-egg__groove--2 { width: 68%; height: 68%; }
.easter-egg__groove--3 { width: 86%; height: 86%; }

/* --- Play/Pause Button (Label-Position) --- */
.easter-egg__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(10, 10, 15, 0.85);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: background 0.3s var(--ease), color 0.3s var(--ease),
                transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    z-index: 2;
    cursor: pointer;
}

.easter-egg__play:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 24px rgba(200, 169, 110, 0.35);
}

.easter-egg__play-icon {
    width: 20px;
    height: 20px;
}

.easter-egg__play-icon--play  { display: block; margin-left: 2px; }
.easter-egg__play-icon--pause { display: none; }

.easter-egg.playing .easter-egg__play-icon--play  { display: none; }
.easter-egg.playing .easter-egg__play-icon--pause  { display: block; }

/* Gold glow pulse while playing */
.easter-egg.playing .easter-egg__play {
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.25);
    animation: ee-glow 1.5s ease-in-out infinite alternate;
}

@keyframes ee-glow {
    0%   { box-shadow: 0 0 16px rgba(200, 169, 110, 0.15); }
    100% { box-shadow: 0 0 30px rgba(200, 169, 110, 0.4); }
}

@keyframes ee-spin {
    to { transform: rotate(360deg); }
}

/* --- Equalizer Bars --- */
.easter-egg__eq {
    display: flex;
    gap: 3px;
    justify-content: center;
    height: 32px;
    align-items: flex-end;
    margin-bottom: 24px;
}

.easter-egg__eq span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(to top, var(--gold), var(--gold-light));
    height: 4px;
    transition: height 0.1s;
}

/* Paused / default: flat bars */
.easter-egg__eq span {
    animation: none;
    height: 4px;
    opacity: 0.3;
}

/* Playing: animated bars */
.easter-egg.playing .easter-egg__eq span {
    opacity: 1;
    animation: ee-eq 0.8s ease-in-out infinite alternate;
}

.easter-egg.playing .easter-egg__eq span:nth-child(1)  { animation-duration: 0.7s;  animation-delay: 0.0s; }
.easter-egg.playing .easter-egg__eq span:nth-child(2)  { animation-duration: 0.5s;  animation-delay: 0.05s; }
.easter-egg.playing .easter-egg__eq span:nth-child(3)  { animation-duration: 0.9s;  animation-delay: 0.1s; }
.easter-egg.playing .easter-egg__eq span:nth-child(4)  { animation-duration: 0.6s;  animation-delay: 0.15s; }
.easter-egg.playing .easter-egg__eq span:nth-child(5)  { animation-duration: 0.8s;  animation-delay: 0.2s; }
.easter-egg.playing .easter-egg__eq span:nth-child(6)  { animation-duration: 0.55s; animation-delay: 0.08s; }
.easter-egg.playing .easter-egg__eq span:nth-child(7)  { animation-duration: 0.75s; animation-delay: 0.18s; }
.easter-egg.playing .easter-egg__eq span:nth-child(8)  { animation-duration: 0.65s; animation-delay: 0.12s; }
.easter-egg.playing .easter-egg__eq span:nth-child(9)  { animation-duration: 0.85s; animation-delay: 0.04s; }
.easter-egg.playing .easter-egg__eq span:nth-child(10) { animation-duration: 0.5s;  animation-delay: 0.22s; }
.easter-egg.playing .easter-egg__eq span:nth-child(11) { animation-duration: 0.7s;  animation-delay: 0.14s; }
.easter-egg.playing .easter-egg__eq span:nth-child(12) { animation-duration: 0.6s;  animation-delay: 0.06s; }
.easter-egg.playing .easter-egg__eq span:nth-child(13) { animation-duration: 0.8s;  animation-delay: 0.16s; }

@keyframes ee-eq {
    0%   { height: 4px; }
    100% { height: 28px; }
}

.easter-egg__found {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.easter-egg__logo {
    display: block;
    max-width: clamp(180px, 40vw, 320px);
    height: auto;
    margin: 0 auto 10px;
}

.easter-egg__claim {
    font-size: 0.9rem;
    color: var(--white-dim);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.easter-egg__text {
    font-size: 0.82rem;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.7;
}

.easter-egg__cta {
    display: inline-block;
    padding: 14px 32px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.35s var(--ease), color 0.35s var(--ease);
    cursor: pointer;
}

.easter-egg__cta:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.easter-egg__close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: var(--white-dim);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10002;
}

.easter-egg__close:hover {
    color: var(--white);
}

@media (max-width: 600px) {
    .easter-egg__vinyl-wrap { width: 140px; height: 140px; }
    .easter-egg__vinyl { width: 140px; height: 140px; }
    .easter-egg__play { width: 46px; height: 46px; }
    .easter-egg__play-icon { width: 16px; height: 16px; }
    .easter-egg__ring--1 { width: 160px; height: 160px; }
    .easter-egg__ring--2 { width: 190px; height: 190px; }
    .easter-egg__ring--3 { width: 220px; height: 220px; }
}

/* ============================================================
   INTRO PLAYER — Minimale Leiste
   ============================================================ */
.intro-player {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 52px;
    background: rgba(17, 17, 24, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(200, 169, 110, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    z-index: 8000;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}

.intro-player.visible {
    transform: translateY(0);
}

.intro-player.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.intro-player__btn {
    background: none;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    flex-shrink: 0;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.intro-player__btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.intro-player__icon {
    width: 14px;
    height: 14px;
}

.intro-player__icon--play  { display: block; }
.intro-player__icon--pause { display: none;  }

.intro-player.playing .intro-player__icon--play  { display: none;  }
.intro-player.playing .intro-player__icon--pause { display: block; }

.intro-player__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.intro-player__label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.intro-player__progress {
    width: 100%;
    height: 3px;
    background: var(--gray);
    border-radius: 2px;
    overflow: hidden;
}

.intro-player__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: width 0.3s linear;
}

.intro-player__volume {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.intro-player__vol-icon {
    width: 16px;
    height: 16px;
    color: var(--white-dim);
}

.intro-player__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 70px;
    height: 3px;
    background: var(--gray);
    border-radius: 2px;
    outline: none;
    cursor: none;
}

.intro-player__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    cursor: none;
}

.intro-player__slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: none;
}

.intro-player__close {
    background: none;
    border: none;
    color: var(--white-dim);
    font-size: 1.3rem;
    line-height: 1;
    cursor: none;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.intro-player__close:hover {
    color: var(--white);
}

@media (max-width: 600px) {
    .intro-player { padding: 0 14px; gap: 10px; }
    .intro-player__volume { display: none; }
    .intro-player__label { font-size: 0.65rem; }
}

/* --- Floating Reopen Button --- */
.intro-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: rgba(17, 17, 24, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 7999;
    cursor: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: opacity 0.4s var(--ease), visibility 0.4s,
                transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(200, 169, 110, 0);
}

.intro-fab.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.intro-fab:hover {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 169, 110, 0.3);
}

.intro-fab__icon {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

/* Pulsing ring */
.intro-fab__ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0;
    animation: fab-pulse 2.5s ease-out infinite;
}

@keyframes fab-pulse {
    0%   { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   COOKIE BANNER — DSGVO
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 2000;
    background: #0F0F18;
    border-top: 1px solid rgba(200, 169, 110, 0.25);
    padding: 20px 40px;
    transform: translateY(100%);
    transition: transform .5s var(--ease);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-banner__content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

/* Cookie Visual — Vinyl + Logo nebeneinander */
.cookie-visual {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.cookie-logo {
    height: 44px;
    width: auto;
    display: block;
    filter: brightness(1.05);
    opacity: 0.9;
}

/* Vinyl Record */
.cookie-vinyl {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    animation: vinyl-spin 5s linear infinite;
    will-change: transform;
}

.cookie-vinyl__disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 48% 42%,
        #2a2a2a 0%,
        #111114 40%,
        #0a0a0e 100%
    );
    position: relative;
    /* Sheen / reflection */
    box-shadow:
        inset 0 2px 6px rgba(255,255,255,0.06),
        0 0 0 1px rgba(255,255,255,0.04),
        0 4px 16px rgba(0,0,0,0.6);
}

/* Vinyl grooves (concentric rings) */
.cookie-vinyl__groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.cookie-vinyl__groove--1 { width: 78%; height: 78%; }
.cookie-vinyl__groove--2 { width: 58%; height: 58%; }
.cookie-vinyl__groove--3 { width: 38%; height: 38%; }

/* Center label — gold circle with cookie emoji */
.cookie-vinyl__label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 28%;
    height: 28%;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    line-height: 1;
    /* Counter-rotate so emoji stays readable while disc spins */
    animation: vinyl-counter 5s linear infinite;
}

@keyframes vinyl-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes vinyl-counter {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

.cookie-banner__text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.cookie-banner__text p {
    font-size: 0.8rem;
    color: var(--white-dim);
    line-height: 1.55;
    margin-bottom: 6px;
}

.cookie-banner__policy-link {
    font-size: 0.76rem;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: none;
    transition: color .3s;
}
.cookie-banner__policy-link:hover { color: var(--gold-light); }

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — 1200px (4-col footer → 2-col)
   ============================================================ */
@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    :root { --section-py: 88px; }

    /* Hero: portrait goes behind, text centered */
    .hero__visual { width: 60%; opacity: 0.5; }

    .hero__inner { padding-top: var(--nav-h); }
    .hero__text  { max-width: 620px; }

    .about__grid   { grid-template-columns: 1fr; gap: 56px; }
    .about__left   { position: static; flex-direction: row; gap: 32px; align-items: flex-start; }
    .about__quote  { flex: 1; }
    .about__banner { width: 200px; flex-shrink: 0; }

    .booking__grid { grid-template-columns: 1fr; gap: 56px; }
    .booking__intro { position: static; }

    .music__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    :root { --section-py: 72px; }

    .container { padding: 0 24px; }
    .nav        { padding: 0 24px; }
    .nav__menu  { display: none; }
    .nav__burger { display: flex; }

    /* Remove custom cursor on touch */
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }

    .btn, .nav__burger, .mobile-menu__close, .events__tab,
    .music__card-play, .footer__link, .footer__legal,
    .footer__cookie-settings, .nav__logo, .booking__email,
    .cookie-banner__policy-link, .hero__stream-link,
    .platform-badge { cursor: pointer; }

    /* Hero: portrait full opacity, more prominent */
    .hero__visual { width: 100%; opacity: 1; }
    .hero__visual-fade {
        background:
            linear-gradient(to right, var(--bg-primary) 0%, rgba(10,10,15,0.7) 35%, rgba(10,10,15,0.6) 100%),
            linear-gradient(to top,   var(--bg-primary) 0%, transparent 25%),
            linear-gradient(to bottom, var(--bg-primary) 0%, transparent 12%);
    }
    .hero__inner  { padding: 0 24px; }
    .hero__text   { max-width: 100%; padding-bottom: 80px; }

    /* About */
    .about__left   { flex-direction: column; }
    .about__banner { width: 100%; }

    /* Services */
    .services__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Music */
    .music__grid         { grid-template-columns: 1fr; }
    .music__featured-top { flex-direction: column; align-items: flex-start; }

    /* Events */
    .event-card {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    .event-card__status-wrap { grid-column: 2; }
    .events__nudge { flex-direction: column; align-items: flex-start; padding: 28px 24px; }

    /* Booking */
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer__top    { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }

    /* Cookie */
    .cookie-banner { padding: 20px 24px; }
    .cookie-banner__inner  { flex-direction: column; gap: 16px; }
    .cookie-banner__actions { width: 100%; }
    .cookie-banner__actions .btn { flex: 1; justify-content: center; }
    /* Logo im Cookie-Banner auf Mobile ausblenden — Vinyl allein reicht */
    .cookie-logo { display: none; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .hero__ctas  { flex-direction: column; }
    .hero__ctas .btn { width: 100%; justify-content: center; }

    .mobile-menu__link { font-size: 1.8rem; }
    .section-title     { font-size: 2rem; }

    .services__grid { grid-template-columns: 1fr; }
    .music__platforms-grid { gap: 10px; }
    .platform-badge { padding: 10px 16px; font-size: 0.76rem; }

    .footer__top { grid-template-columns: 1fr; }

    .cookie-banner__content { flex-direction: column; gap: 10px; }
}
