/* =====================================================================
   MesRowClb · Public Frontend Styles
   ===================================================================== */

/* =====================================================================
   Layout-Container
   ===================================================================== */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--s-5);
}
@media (min-width: 769px) {
    .container { padding: 0 var(--s-8); }
}

/* =====================================================================
   Sticky Header (öffentlich)
   ===================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(31, 30, 28, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: background var(--t);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: var(--s-3) 0;
}
.site-brand {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    color: var(--text);
    text-decoration: none;
}
.site-brand .mrc-logo {
    transition: transform var(--t);
}
.site-brand:hover .mrc-logo {
    transform: scale(1.04);
}
.site-brand-text {
    font-family: var(--font-display);
    font-size: var(--type-micro);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: none;
}
@media (min-width: 600px) {
    .site-brand-text { display: inline-block; }
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--s-1);
}
.site-nav a {
    padding: 8px 14px;
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: color var(--t), background var(--t);
}
.site-nav a:hover { color: var(--text); }
.site-nav a.active { color: var(--accent); }

.site-lang {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    margin-left: var(--s-2);
    padding-left: var(--s-3);
    border-left: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: var(--type-micro);
    letter-spacing: 0.15em;
}
.site-lang a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 4px;
    transition: color var(--t);
}
.site-lang a:hover { color: var(--text); }
.site-lang a.active { color: var(--accent); }

/* Mobile: Burger */
.site-burger {
    display: none;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
@media (max-width: 768px) {
    .site-nav-list { display: none; }
    .site-nav-list.open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg-elev-1);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: var(--s-2);
    }
    .site-nav-list.open a {
        padding: 14px;
        border-radius: var(--radius);
    }
    .site-burger { display: flex; }
}

/* =====================================================================
   Hero (Startseite)
   ===================================================================== */
.hero {
    position: relative;
    padding: var(--s-12) 0 var(--s-10);
    text-align: center;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

/* Hero-Logo: leicht transparent, sanftes Fade-In */
.hero .mrc-logo-hero {
    margin-bottom: var(--s-10);
    opacity: 0.85;
    animation: logo-reveal 800ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
@keyframes logo-reveal {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 0.85;
        transform: scale(1);
    }
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: var(--type-h1);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: var(--s-5);
    letter-spacing: -0.02em;
    animation: page-fade-in 480ms ease-out 0.3s backwards;
}
.hero-tagline-line2 {
    color: var(--accent);
}

.hero-intro {
    font-size: var(--type-body-lg);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto var(--s-6);
    max-width: 540px;
    animation: page-fade-in 480ms ease-out 0.45s backwards;
}

.hero-ctas {
    display: flex;
    gap: var(--s-3);
    justify-content: center;
    flex-wrap: wrap;
    animation: page-fade-in 480ms ease-out 0.6s backwards;
}
.btn-hero {
    padding: 14px 28px;
    font-size: var(--type-small);
}

/* =====================================================================
   Sections (allgemein)
   ===================================================================== */
.section {
    padding: var(--s-12) 0;
    position: relative;
}
.section-alt {
    background: var(--bg-elev-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-4);
    margin-bottom: var(--s-8);
}
.section-eyebrow {
    font-family: var(--font-display);
    font-size: var(--type-micro);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--s-3);
}
.section-title {
    font-family: var(--font-display);
    font-size: var(--type-h2);
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--s-2);
}
.section-sub {
    color: var(--text-muted);
    max-width: 500px;
    font-size: var(--type-body);
}
.section-link {
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: var(--type-caption);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    align-self: center;
    transition: color var(--t), transform var(--t);
}
.section-link:hover {
    color: var(--accent-hi);
    transform: translateX(4px);
}

/* =====================================================================
   Release-Grid (öffentlich)
   ===================================================================== */
.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--s-5);
}
@media (max-width: 480px) {
    .release-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s-3);
    }
}

.release-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--t), border-color var(--t);
    position: relative;
}
.release-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.release-card-cover {
    aspect-ratio: 1;
    background: var(--bg-elev-3);
    position: relative;
    overflow: hidden;
}
.release-card-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms ease;
}
.release-card:hover .release-card-cover img {
    transform: scale(1.04);
}
.release-card-cover .cover-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 48px;
}

.release-card-overlay {
    position: absolute;
    top: var(--s-3); right: var(--s-3);
    background: rgba(31, 30, 28, 0.7);
    backdrop-filter: blur(8px);
    color: var(--text);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.release-card-body {
    padding: var(--s-4);
}
.release-card-title {
    font-family: var(--font-display);
    font-size: var(--type-body-lg);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}
.release-card-artist {
    color: var(--text-muted);
    font-size: var(--type-small);
}
.release-card-meta {
    color: var(--text-faint);
    font-size: var(--type-caption);
    font-family: var(--font-display);
    margin-top: var(--s-2);
    letter-spacing: 0.05em;
}

/* =====================================================================
   About-Teaser
   ===================================================================== */
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-10);
    align-items: center;
}
@media (max-width: 768px) {
    .about-teaser { grid-template-columns: 1fr; gap: var(--s-6); }
}

.about-teaser-text p {
    font-size: var(--type-body-lg);
    line-height: 1.7;
    color: var(--text);
    margin-bottom: var(--s-4);
}
.about-teaser-text .muted {
    color: var(--text-muted);
}

.about-teaser-visual {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-teaser-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-teaser-visual .placeholder-mrc {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--accent);
    opacity: 0.15;
    letter-spacing: 0.05em;
}

/* =====================================================================
   Newsletter-Block
   ===================================================================== */
.newsletter-block {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}
.newsletter-form {
    display: flex;
    gap: var(--s-2);
    margin-top: var(--s-5);
    flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 14px 18px;
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-size: var(--type-body);
    transition: border-color var(--t);
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}
.newsletter-consent {
    text-align: left;
    margin-top: var(--s-3);
    font-size: var(--type-caption);
}
.newsletter-result {
    margin-top: var(--s-4);
}

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: var(--s-10) 0 var(--s-6);
    margin-top: var(--s-16);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s-8);
    margin-bottom: var(--s-8);
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-6);
    }
    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}
.footer-brand p {
    color: var(--text-muted);
    margin-top: var(--s-3);
    max-width: 320px;
    font-size: var(--type-h4);
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: var(--type-micro);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--s-4);
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li {
    margin-bottom: var(--s-2);
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--type-h4);
    transition: color var(--t);
}
.footer-col a:hover { color: var(--accent); }

.footer-socials {
    display: flex;
    gap: var(--s-3);
    flex-wrap: wrap;
}
.footer-social-icon {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--t);
}
.footer-social-icon:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: var(--s-5);
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-3);
    font-size: var(--type-caption);
    color: var(--text-muted);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

/* =====================================================================
   Release-Detailseite
   ===================================================================== */
.release-detail {
    padding: var(--s-8) 0 var(--s-10);
}
.release-detail-grid {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: var(--s-8);
    align-items: start;
}
@media (max-width: 768px) {
    .release-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--s-6);
    }
}

/* Cover + Icons Container (linke Spalte) */
.release-detail-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Runde Icons unter Cover */
.release-platform-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.platform-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.platform-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.platform-icon-circle svg {
    width: 22px;
    height: 22px;
}

.platform-icon-link:hover .platform-icon-circle {
    color: var(--brand-color, var(--accent));
    transform: scale(1.15);
}

/* Tooltip beim Hover */
.platform-icon-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-elev-2, #2a2926);
    color: var(--text);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: var(--type-caption);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    border: 1px solid var(--line);
}

.platform-icon-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--bg-elev-2, #2a2926);
}

.platform-icon-link:hover .platform-icon-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.release-detail-cover {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.release-detail-cover:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.4);
}
.release-detail-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.release-detail-info .label-uppercase {
    color: var(--accent);
    margin-bottom: var(--s-3);
    font-size: var(--type-micro);
    letter-spacing: 0.15em;
}
.release-detail-info h1 {
    font-size: var(--type-h1);
    line-height: 1.05;
    margin-bottom: var(--s-3);
    color: var(--text);
    letter-spacing: -0.01em;
}
.release-detail-artist {
    font-family: var(--font-display);
    font-size: var(--type-body-lg);
    color: var(--text-muted);
    margin-bottom: var(--s-5);
}
.release-detail-meta {
    display: flex;
    gap: var(--s-6);
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: var(--type-small);
    margin-bottom: var(--s-5);
    padding-bottom: var(--s-5);
    border-bottom: 1px solid var(--line);
}
.release-detail-meta-item {
    display: flex;
    flex-direction: column;
}
.release-detail-meta-item .label {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 4px;
}
.release-detail-meta-item .val {
    color: var(--text);
    font-family: var(--font-display);
    font-size: var(--type-h4);
}

.release-detail-description {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--s-6);
    font-size: var(--type-body-lg);
}

.release-detail-cta {
    display: flex;
    gap: var(--s-3);
    flex-wrap: wrap;
    margin-bottom: var(--s-5);
}
.btn-listen {
    padding: 14px 28px;
    font-size: var(--type-small);
}

.release-back-link {
    display: inline-block;
    margin-bottom: var(--s-5);
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: var(--type-caption);
    letter-spacing: 0.1em;
    transition: color var(--t);
}
.release-back-link:hover { color: var(--accent); }

/* ─── YouTube Click-to-Load (DSGVO-freundlich) ─── */
.youtube-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--bg-elev-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    cursor: pointer;
    margin-top: var(--s-6);
}
.youtube-embed img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity var(--t);
}
.youtube-embed:hover img { opacity: 0.85; }
.youtube-embed .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 30, 28, 0.3);
    transition: background var(--t);
}
.youtube-embed:hover .play-overlay {
    background: rgba(31, 30, 28, 0.5);
}
.youtube-embed .play-btn {
    width: 80px; height: 80px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--t);
}
.youtube-embed:hover .play-btn {
    transform: scale(1.08);
}
.youtube-embed iframe {
    width: 100%; height: 100%;
    border: 0;
}
.youtube-embed-hint {
    position: absolute;
    bottom: 12px; left: 12px; right: 12px;
    color: var(--text);
    font-size: var(--type-caption);
    text-align: center;
    background: rgba(31, 30, 28, 0.8);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
}

/* =====================================================================
   About-Seite
   ===================================================================== */
.about-page {
    padding-top: var(--s-10);
}
.about-page-intro {
    max-width: 720px;
    margin: 0 auto var(--s-12);
    text-align: center;
}
.about-page-intro h1 {
    font-size: var(--type-h1);
    margin-bottom: var(--s-4);
    color: var(--text);
}
.about-page-intro p {
    font-size: var(--type-body-lg);
    color: var(--text-muted);
    line-height: 1.7;
}

.artist-block {
    margin-bottom: var(--s-8);
}

/* Hero-Banner (großes atmosphärisches Foto über der Karte) */
.artist-hero {
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    background: var(--bg-elev-2);
    aspect-ratio: 16 / 9;
    border: 1px solid var(--line);
    border-bottom: 0;
}
.artist-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-card {
    background: var(--bg-elev-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--s-6);
    align-items: start;
    margin-bottom: var(--s-5);
}
/* Wenn ein Hero-Banner drüber ist: oben keine Rundung + Border-Top gluen */
.artist-block .artist-hero + .artist-card {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .artist-card {
        grid-template-columns: 1fr;
        gap: var(--s-4);
        padding: var(--s-5);
    }
    .artist-hero {
        aspect-ratio: 4 / 5;
    }
}
.artist-photo {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-elev-3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.artist-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.artist-photo-placeholder {
    font-size: 56px;
    color: var(--text-faint);
}
.artist-info h2 {
    font-size: 26px;
    margin-bottom: var(--s-2);
    color: var(--text);
}
.artist-role {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: var(--type-micro);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--s-4);
}
.artist-bio {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--s-4);
}
.artist-socials {
    display: flex;
    gap: var(--s-2);
    flex-wrap: wrap;
    align-items: center;
}
.artist-socials-via {
    font-family: var(--font-display);
    font-size: var(--type-micro);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-right: 4px;
    opacity: 0.7;
}
.artist-socials a {
    padding: 7px 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: var(--type-micro);
    letter-spacing: 0.08em;
    transition: all var(--t);
}
.artist-socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* =====================================================================
   Contact-Seite
   ===================================================================== */
.contact-page {
    padding: var(--s-10) 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--s-8);
    margin-top: var(--s-8);
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: var(--s-6); }
}
.contact-info h3 {
    font-size: var(--type-small);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--s-3);
}
.contact-info p {
    color: var(--text-muted);
    line-height: 1.6;
}
.contact-info a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    transition: color var(--t);
}
.contact-info a:hover { color: var(--accent); }
.contact-emails {
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
    margin: var(--s-5) 0;
}
.contact-email-item .label {
    color: var(--text-faint);
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* =====================================================================
   Legal-Seiten (Impressum, Datenschutz)
   ===================================================================== */
.legal-page {
    padding: var(--s-10) 0;
    max-width: 760px;
    margin: 0 auto;
}
.legal-page h1 {
    margin-bottom: var(--s-6);
    color: var(--text);
}
.legal-page h2 {
    margin-top: var(--s-8);
    margin-bottom: var(--s-3);
    font-size: var(--type-h3);
    color: var(--accent);
}
.legal-page p,
.legal-page li {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--s-3);
}
.legal-page ul {
    margin-bottom: var(--s-4);
}
.legal-page address {
    color: var(--text);
    font-style: normal;
    line-height: 1.7;
    padding: var(--s-4);
    background: var(--bg-elev-2);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin: var(--s-4) 0;
}
.legal-page address strong {
    color: var(--accent);
    display: block;
    margin-bottom: var(--s-2);
}

/* =====================================================================
   404
   ===================================================================== */
.error-page {
    padding: var(--s-16) 0;
    text-align: center;
}
.error-page-num {
    font-family: var(--font-display);
    font-size: clamp(80px, 20vw, 180px);
    color: var(--accent);
    line-height: 1;
    opacity: 0.5;
    letter-spacing: -0.05em;
}
.error-page h1 {
    margin: var(--s-4) 0;
}
.error-page p {
    color: var(--text-muted);
    margin-bottom: var(--s-6);
}

/* =====================================================================
   Release: Streaming-/Store-Plattform-Links
   ===================================================================== */

.release-platform-links {
    margin-top: 32px;
}

.release-platform-links-label {
    font-family: var(--font-display);
    font-size: var(--type-micro);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 12px;
}

/* Grid: 2 Spalten auf Desktop, 1 auf Mobile.
   Bei nur 1 Link: bleibt der Button bei normaler Breite (nicht voll-breit). */
.release-platform-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 480px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    transition: all var(--t);
    font-size: var(--type-h4);
    font-weight: 500;
}

.platform-link:hover {
    background: var(--bg-elev-2, rgba(255,255,255,0.04));
    border-color: var(--brand-color, var(--accent));
    color: var(--brand-color, var(--accent));
    transform: translateY(-1px);
}

.platform-link .platform-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--brand-color, currentColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.platform-link .platform-icon svg {
    width: 100%;
    height: 100%;
}

.platform-link .platform-label {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 580px) {
    .release-platform-links-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* =====================================================================
   Release: Bandcamp-Embed (Click-to-Load)
   ===================================================================== */

.bandcamp-embed-wrap {
    margin: 24px 0;
    width: 100%;
    max-width: 100%;
}

.bandcamp-embed-label {
    font-family: var(--font-display);
    font-size: var(--type-micro);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

/* Placeholder-Box (vor Click-to-Load) */
.bandcamp-embed {
    position: relative;
    width: 100%;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

/* Wenn Player geladen */
.bandcamp-embed.bandcamp-loaded {
    aspect-ratio: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.bandcamp-embed.bandcamp-loaded iframe {
    display: block;
    width: 100% !important;
    height: 400px !important;
    border: 0;
    border-radius: 8px;
    scrollbar-color: var(--accent) var(--bg-elev);
    scrollbar-width: thin;
    max-height: 400px !important;
}

@media (max-width: 640px) {
    .bandcamp-embed.bandcamp-loaded iframe {
        height: 380px !important;
        max-height: 380px !important;
    }
}


/* =====================================================================
   Release: Pre-Save Box (Spotify Pre-Save / DistroKid HyperFollow)
   ===================================================================== */

.pre-save-box {
    background: linear-gradient(135deg, rgba(255, 200, 74, 0.08), rgba(255, 200, 74, 0.02));
    border: 1px solid rgba(255, 200, 74, 0.3);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin: 0 0 var(--s-5) 0;
    max-width: 480px;
}

.pre-save-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.pre-save-eyebrow {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 4px 10px;
    background: rgba(255, 200, 74, 0.15);
    border-radius: 999px;
}

.pre-save-date {
    font-family: var(--font-display);
    font-size: var(--type-small);
    color: var(--text);
}

.pre-save-countdown {
    color: var(--text-muted);
    font-size: var(--type-caption);
}

.pre-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1DB954; /* Spotify Green */
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: var(--type-h4);
    font-weight: 600;
    transition: transform var(--t), box-shadow var(--t), background var(--t);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.pre-save-btn:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.45);
    color: #fff;
}

.pre-save-btn svg {
    flex-shrink: 0;
}

.pre-save-hint {
    margin-top: 10px;
    font-size: var(--type-micro);
    color: var(--text-faint);
    line-height: 1.5;
}

@media (max-width: 580px) {
    .pre-save-box {
        max-width: 100%;
        padding: 16px 18px;
    }
    .pre-save-btn {
        width: 100%;
        justify-content: center;
    }
}



/* ============================================================
   Release-Detail · Drumcode-Style Layout v2 (1:1 nach User-Mockup)
   3-Spalten oben: Cover | Album-Info | Code/Year
   Streaming-Icons farbig unter Cover
   Tracklist scrollbar
   Press Release 1-spaltig unter Cover
   ============================================================ */

.release-dc {
    padding: var(--s-6) 0 var(--s-10);
}

/* ─── Breadcrumb ─── */
.release-dc-breadcrumb {
    font-family: var(--font-mono);
    font-size: var(--type-small);
    color: var(--text-faint);
    text-transform: lowercase;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}
.release-dc-breadcrumb a {
    color: var(--text-faint);
    border: 0;
}
.release-dc-breadcrumb a:hover {
    color: var(--accent);
}
.release-dc-current {
    font-family: var(--font-mono);
    font-size: var(--type-small);
    color: var(--text);
    margin-bottom: 32px;
}

/* ─── Code + Year oben über volle Breite ─── */
.release-dc-topmeta {
    display: flex;
    gap: 64px;
    margin-bottom: 32px;
    padding-left: 0;
}

.release-dc-topmeta .dc-meta {
    margin-bottom: 0;
}

/* ─── Grid: Cover | Album-Info+Buy+Player ─── */
.release-dc-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    grid-template-areas:
        "cover header"
        "cover tracks";
    gap: 16px 48px;
    align-items: start;
    margin-bottom: 60px;
}

.release-dc-side       { grid-area: cover; }
.release-dc-header     { grid-area: header; }
.release-dc-tracklist  { grid-area: tracks; margin-bottom: 0; }

/* Header-Row: Album-Info links, BUY-Button rechts */
.release-dc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.release-dc-header-info {
    flex: 1;
    min-width: 0;
}

.release-dc-header-cta {
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .release-dc-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "cover"
            "header"
            "tracks";
        gap: 24px;
    }
    .release-dc-header {
        flex-direction: column;
    }
    .release-dc-topmeta {
        gap: 48px;
    }
}

/* ─── LEFT: Cover + Streaming-Icons ─── */
.release-dc-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
}

.release-dc-cover {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-elev);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}
.release-dc-cover:hover {
    transform: translateY(-4px);
}
.release-dc-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Streaming-Icons farbig unter Cover */
.release-dc-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    max-width: 480px;
}

.release-dc-icon-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-bg, #333);
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.release-dc-icon-link:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.release-dc-icon-link svg {
    width: 20px;
    height: 20px;
}

/* Tooltip beim Hover */
.release-dc-icon-link .icon-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg);
    padding: 5px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: var(--type-micro);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 10;
}

.release-dc-icon-link .icon-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--accent);
}

.release-dc-icon-link:hover .icon-tooltip {
    opacity: 1;
}

/* ─── MIDDLE: Album-Info-Spalte ─── */
.release-dc-info {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
}

/* Meta-Block (Eyebrow + Wert) */
.dc-meta {
    margin-bottom: 24px;
}
.dc-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    color: var(--text-faint);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    display: block;
}
.dc-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

/* Album-Titel */
.release-dc-title {
    font-family: var(--font-mono);
    font-size: var(--type-h1);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 8px;
}

.release-dc-artist {
    font-family: var(--font-body);
    font-size: var(--type-body-lg);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 0;
}

.release-dc-year-inline {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

/* Divider gelb */
.dc-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 8px 0 24px;
    border: 0;
}

/* ─── Tracklist als scrollbarer Block ─── */
.release-dc-tracklist {
    margin-bottom: 28px;
}

.release-dc-tracklist-items {
    margin-top: 10px;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 8px;
    /* Scrollbar Custom */
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-elev);
}

/* Bandcamp-Player IM Tracklist-Bereich */
.release-dc-bcplayer {
    margin-top: 0;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.release-dc-bcplayer iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .release-dc-bcplayer iframe {
        height: 400px;
    }
}

.release-dc-tracklist-items::-webkit-scrollbar {
    width: 6px;
}
.release-dc-tracklist-items::-webkit-scrollbar-track {
    background: var(--bg-elev);
    border-radius: 3px;
}
.release-dc-tracklist-items::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.dc-track-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-mono);
}
.dc-track-num {
    font-size: var(--type-micro);
    color: var(--text-faint);
    width: 24px;
    flex-shrink: 0;
}
.dc-track-name {
    flex: 1;
    font-size: var(--type-body);
    color: var(--text);
}
.dc-track-duration {
    font-size: var(--type-caption);
    color: var(--text-faint);
}

/* ─── Purchase Buttons ─── */
.release-dc-purchase {
    margin-top: 8px;
}

.dc-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    margin-top: 10px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.dc-btn-primary:hover {
    background: var(--accent-2, #ffd166);
    border-color: var(--accent-2, #ffd166);
    color: var(--text-muted);
    transform: translateY(-2px);
}

/* ─── RIGHT: Code/Year Meta-Spalte ─── */
.release-dc-meta-col {
    display: flex;
    flex-direction: column;
    padding-top: 4px;
}

/* ─── Section-Headlines (gelb, ohne Hash-Präfix) ─── */
.dc-section-heading {
    font-family: var(--font-mono);
    font-size: var(--type-h2);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.0;
    margin: 48px 0 24px;
}
.dc-section-heading::before {
    content: none;
}

/* ─── Press Release (volle Breite) ─── */
.release-dc-press {
    max-width: 100%;
    margin-bottom: 60px;
}
.release-dc-press p {
    font-size: var(--type-body-lg);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ─── Player + YouTube (unten optional) ─── */
.release-dc-player {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    margin-bottom: 48px;
}
.release-dc-player-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    color: var(--text-faint);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.release-dc-player-eyebrow::before {
    content: "+ ";
    color: var(--accent);
}
.release-dc-player iframe {
    width: 100%;
    max-width: 720px;
    height: 280px;
    border: 0;
    border-radius: 4px;
    display: block;
}

/* ─── Platform Brand-Colors (für die farbigen Icons) ─── */
.brand-spotify       { background: #1DB954; }
.brand-apple_music   { background: linear-gradient(135deg, #FA233B, #FB5C74); }
.brand-bandcamp      { background: #1da0c3; }
.brand-soundcloud    { background: linear-gradient(135deg, #FF7700, #FF3300); }
.brand-youtube       { background: #FF0000; }
.brand-youtube_music { background: #FF0000; }
.brand-beatport      { background: #01FF95; color: #000; }
.brand-traxsource    { background: #FF6500; }
.brand-deezer        { background: linear-gradient(135deg, #ef5466, #00c7f2, #a238ff, #ffb834); }
.brand-tidal         { background: #000; border: 1px solid #fff; }
.brand-amazon_music  { background: #25D1DA; }
.brand-qobuz         { background: #0070BB; }
.brand-juno          { background: #FF6F00; }
.brand-shazam        { background: linear-gradient(135deg, #0066FF, #0033FF); }
.brand-linkfire      { background: #5B5BD6; }



/* ============================================================
   Releases-Übersicht · Drumcode-Style
   3-Spalten-Grid, Catalog-Overlay, # Filter-Pills
   ============================================================ */

.releases-dc {
    padding: var(--s-8) 0 var(--s-12);
}

.releases-dc .dc-section-heading {
    margin-top: 0;
    margin-bottom: 32px;
}

/* ─── Filter-Pills (lowercase # style) ─── */
.releases-dc-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.releases-dc-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: var(--type-small);
    color: var(--text-muted);
    text-transform: lowercase;
    text-decoration: none;
    transition: all 0.2s;
}

.releases-dc-pill:hover {
    border-color: var(--accent);
    color: var(--text);
}

.releases-dc-pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.releases-dc-pill.active:hover {
    background: var(--accent-2, #ffd166);
    border-color: var(--accent-2, #ffd166);
    color: var(--text-muted);
}

.releases-dc-pill.active .releases-dc-pill-hash {
    color: var(--bg);
    opacity: 0.6;
}

.releases-dc-pill-hash {
    color: var(--accent);
    font-weight: 700;
}

.releases-dc-pill-count {
    font-size: var(--type-micro);
    opacity: 0.6;
    margin-left: 4px;
}

/* ─── Grid 3-spaltig ─── */
.releases-dc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}

@media (max-width: 900px) {
    .releases-dc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }
}

@media (max-width: 580px) {
    .releases-dc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ─── Karte ─── */
.releases-dc-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.releases-dc-card:hover {
    transform: translateY(-4px);
}

/* Cover-Container */
.releases-dc-card-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-elev);
    margin-bottom: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: box-shadow 0.3s;
}

.releases-dc-card:hover .releases-dc-card-cover {
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.releases-dc-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.releases-dc-card:hover .releases-dc-card-cover img {
    transform: scale(1.06);
}

.releases-dc-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 80px;
}

/* Catalog-Number Overlay (unten links auf Cover) */
.releases-dc-card-catalog {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(31, 30, 28, 0.85);
    backdrop-filter: blur(8px);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 3px;
    z-index: 2;
}

/* Type-Badge oben rechts */
.releases-dc-card-type {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: rgba(31, 30, 28, 0.85);
    backdrop-filter: blur(8px);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: var(--type-micro);
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    z-index: 2;
}

/* Hover-Overlay */
.releases-dc-card-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(31, 30, 28, 0.85), rgba(31, 30, 28, 0.3));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
}

.releases-dc-card:hover .releases-dc-card-hover {
    opacity: 1;
}

.releases-dc-card-hover-text {
    font-family: var(--font-mono);
    font-size: var(--type-h4);
    font-weight: 700;
    color: var(--accent);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    border: 2px solid var(--accent);
    border-radius: 4px;
    background: rgba(31, 30, 28, 0.6);
    transform: translateY(8px);
    transition: transform 0.3s;
}

.releases-dc-card:hover .releases-dc-card-hover-text {
    transform: translateY(0);
}

/* Karten-Body unter Cover (2-Spalten: Title links, Type+Sub rechts) */
.releases-dc-card-body {
    padding: 12px 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.releases-dc-card-body-left {
    flex: 1;
    min-width: 0;
}

.releases-dc-card-body-right {
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    padding-top: 2px;
}

.releases-dc-card-typelabel {
    font-family: var(--font-mono);
    font-size: var(--type-body);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
    line-height: 1;
}

.releases-dc-card-sub {
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    color: var(--text-faint);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.releases-dc-card-title {
    font-family: var(--font-mono);
    font-size: var(--type-h3);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    line-height: 1.2;
}

.releases-dc-card-artist {
    font-family: var(--font-body);
    font-size: var(--type-body);
    color: var(--text-muted);
    margin-bottom: 8px;
}

.releases-dc-card-year {
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    color: var(--text-faint);
    letter-spacing: 0.05em;
}

/* Empty State */
.releases-dc-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--text-muted);
}

.releases-dc-empty-icon {
    font-size: 64px;
    opacity: 0.3;
    margin-bottom: 16px;
}



/* ============================================================
   Hauptseite (index.php) · Drumcode-Style
   Featured-Release Hero, # Sections, etc.
   ============================================================ */

/* ─── HERO mit Featured Release ─── */
.home-dc-hero {
    padding: var(--s-8) 0 var(--s-10);
}

/* Meta-Block rechts oben über dem Titel (out now MRC002 / year 2026) */
.home-dc-hero-topmeta {
    display: flex;
    gap: 48px;
    margin-bottom: 24px;
}

.home-dc-hero-topmeta .dc-meta {
    margin-bottom: 0;
}

/* Kleinerer Wert als auf der Detail-Seite */
.home-dc-hero-meta-value {
    font-family: var(--font-mono);
    font-size: var(--type-body-lg);
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.home-dc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .home-dc-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .home-dc-hero-topmeta {
        gap: 32px;
    }
}

/* Hero-Cover */
.home-dc-hero-cover {
    display: block;
    aspect-ratio: 1 / 1;
    max-width: 600px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-elev);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-dc-hero-cover:hover {
    transform: translateY(-4px);
    box-shadow: 0 50px 120px rgba(0,0,0,0.7);
}

.home-dc-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.home-dc-hero-cover:hover img {
    transform: scale(1.04);
}

/* Hero-Info */
.home-dc-hero-info {
    display: flex;
    flex-direction: column;
}

.home-dc-hero-title {
    font-family: var(--font-mono);
    font-size: var(--type-h1);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 12px;
}

.home-dc-hero-artist {
    font-family: var(--font-body);
    font-size: var(--type-h3);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.home-dc-hero-desc {
    font-size: var(--type-body-lg);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.home-dc-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Ghost-Button für sekundäre Aktion */
.dc-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--line);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.dc-btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}


/* ─── Sections (# headlines) ─── */
.home-dc-section {
    padding: 60px 0;
}

.home-dc-section-alt {
    background: var(--bg-elev);
}

.home-dc-section .dc-section-heading {
    margin-top: 0;
    margin-bottom: 48px;
}

/* Section-CTA unten ("all releases →") */
.home-dc-section-cta {
    margin-top: 48px;
    text-align: right;
}

.dc-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: var(--type-h4);
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    padding: 4px 0;
}

.dc-link-arrow:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}


/* ─── About-Section ─── */
.home-dc-about-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .home-dc-about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.home-dc-about-visual {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg);
    max-width: 360px;
}

.home-dc-about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-dc-about-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 64px;
    font-weight: 700;
    color: var(--accent);
    background: var(--bg);
}

.home-dc-about-name {
    font-family: var(--font-mono);
    font-size: var(--type-h2);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 24px;
}

.home-dc-about-text p {
    font-size: var(--type-body-lg);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}


/* ─── Newsletter ─── */
.home-dc-newsletter {
    max-width: 720px;
}

.home-dc-newsletter-sub {
    font-size: var(--type-body-lg);
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.home-dc-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-dc-newsletter-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.home-dc-newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: var(--type-body);
    color: var(--text);
    transition: border-color 0.2s;
}

.home-dc-newsletter-input:focus {
    outline: 0;
    border-color: var(--accent);
}

.home-dc-newsletter-input::placeholder {
    color: var(--text-faint);
}

.home-dc-newsletter-form .dc-btn-primary {
    margin-top: 0;
}

@media (max-width: 580px) {
    .home-dc-newsletter-row {
        flex-direction: column;
    }
}


/* ─── Contact-Section ─── */
.home-dc-contact {
    max-width: 720px;
}

.home-dc-contact-sub {
    font-size: var(--type-body-lg);
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.home-dc-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
}

.home-dc-contact-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: padding-left 0.3s;
}

.home-dc-contact-link:hover {
    padding-left: 12px;
}

.home-dc-contact-link-label {
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    color: var(--text-faint);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.home-dc-contact-link-value {
    font-family: var(--font-mono);
    font-size: var(--type-body-lg);
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.home-dc-contact-link:hover .home-dc-contact-link-value {
    color: var(--accent);
}



/* ============================================================
   About-Seite · Drumcode-Style
   Foto links + RIESIGER Name rechts + Track-Wall
   ============================================================ */

.about-dc {
    padding: var(--s-8) 0 var(--s-12);
}

.about-dc .dc-section-heading {
    margin-top: 0;
    margin-bottom: 40px;
}

/* Label-Intro */
.about-dc-intro {
    max-width: 100%;
    margin-bottom: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line);
}

.about-dc-intro p {
    font-size: var(--type-body-lg);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ─── Artist-Block ─── */
.about-dc-artist {
    margin-bottom: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--line);
}

.about-dc-artist:last-child {
    border-bottom: 0;
}

.about-dc-artist-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .about-dc-artist-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Foto links */
.about-dc-artist-photo {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-elev);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    max-width: 400px;
}

.about-dc-artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.about-dc-artist-photo:hover img {
    transform: scale(1.04);
}

.about-dc-artist-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 72px;
    font-weight: 700;
    color: var(--accent);
    background: var(--bg-elev);
    text-transform: uppercase;
}

/* Info rechts */
.about-dc-artist-info {
    padding-top: 8px;
}

.about-dc-artist-name {
    font-family: var(--font-mono);
    font-size: var(--type-h1);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 12px;
}

.about-dc-artist-role {
    font-family: var(--font-mono);
    font-size: var(--type-h4);
    color: var(--accent);
    text-transform: lowercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.about-dc-artist-bio {
    font-size: var(--type-body-lg);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 640px;
}

.about-dc-artist-bio p {
    margin-bottom: 16px;
}

/* Socials */
.about-dc-artist-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
}

.about-dc-social-link {
    font-family: var(--font-mono);
    font-size: var(--type-small);
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding: 2px 0;
    transition: color 0.2s, border-color 0.2s;
}

.about-dc-social-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.about-dc-socials-via {
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    color: var(--text-faint);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin-right: 8px;
}

/* ─── Track-Wall ─── */
.about-dc-tracks {
    margin-top: 48px;
}

.about-dc-tracks-heading {
    font-family: var(--font-mono);
    font-size: var(--type-h2);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.0;
    margin: 0 0 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.about-dc-tracks-hash {
    display: none;
}

.about-dc-tracks-count {
    font-size: var(--type-h4);
    color: var(--text-faint);
    font-weight: 400;
}

/* ─── Release-Grid (Cover nebeneinander mit Verlinkung) ─── */
.about-dc-release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.about-dc-release-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.about-dc-release-card:hover {
    transform: translateY(-4px);
}

.about-dc-release-card-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-elev);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    margin-bottom: 12px;
    transition: box-shadow 0.3s;
}

.about-dc-release-card:hover .about-dc-release-card-cover {
    box-shadow: 0 20px 48px rgba(0,0,0,0.6);
}

.about-dc-release-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.about-dc-release-card:hover .about-dc-release-card-cover img {
    transform: scale(1.06);
}

.about-dc-release-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: 60px;
}

/* Catalog unten links auf Cover */
.about-dc-release-card-catalog {
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 3px 8px;
    background: rgba(31, 30, 28, 0.85);
    backdrop-filter: blur(8px);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 3px;
}

.about-dc-release-card-title {
    font-family: var(--font-mono);
    font-size: var(--type-body);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 2px;
    transition: color 0.2s;
}

.about-dc-release-card:hover .about-dc-release-card-title {
    color: var(--accent);
}

.about-dc-release-card-year {
    font-family: var(--font-mono);
    font-size: var(--type-micro);
    color: var(--text-faint);
    letter-spacing: 0.05em;
}



/* ============================================================
   Contact-Seite · Drumcode-Style
   Links: Email + Socials · Rechts: Form
   ============================================================ */

.contact-dc {
    padding: var(--s-8) 0 var(--s-12);
}

.contact-dc .dc-section-heading {
    margin-top: 0;
    margin-bottom: 24px;
}

.contact-dc-intro {
    font-size: var(--type-body-lg);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 64px;
    max-width: 640px;
}

/* ─── Grid: Side + Form ─── */
.contact-dc-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-dc-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ─── LINKS: Side ─── */
.contact-dc-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-dc-block .dc-eyebrow {
    display: block;
    margin-bottom: 16px;
}

/* Email-Links als hover-stretch (wie auf der Hauptseite) */
.contact-dc-emails {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}

.contact-dc-email-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: padding-left 0.3s;
}

.contact-dc-email-link:hover {
    padding-left: 12px;
}

.contact-dc-email-label {
    font-family: var(--font-mono);
    font-size: var(--type-micro);
    color: var(--text-faint);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.contact-dc-email-value {
    font-family: var(--font-mono);
    font-size: var(--type-body);
    color: var(--text);
    transition: color 0.2s;
    word-break: break-all;
}

.contact-dc-email-link:hover .contact-dc-email-value {
    color: var(--accent);
}

/* Socials */
.contact-dc-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-dc-social-link {
    font-family: var(--font-mono);
    font-size: var(--type-small);
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding: 4px 0;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s;
}

.contact-dc-social-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ─── RECHTS: Form ─── */
.contact-dc-form-wrap {
    min-width: 0;
}

.contact-dc-form-wrap > .dc-eyebrow {
    display: block;
    margin-bottom: 24px;
}

.contact-dc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Type-Pills (Radio-Group als Pills) */
.contact-dc-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-dc-type-pill {
    cursor: pointer;
    position: relative;
}

.contact-dc-type-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-dc-type-pill span {
    display: inline-block;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.contact-dc-type-pill:hover span {
    border-color: var(--accent);
    color: var(--text);
}

.contact-dc-type-pill input:checked + span {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.contact-dc-type-pill input:checked + span:hover,
.contact-dc-type-pill:hover input:checked + span {
    background: var(--accent-2, #ffd166);
    border-color: var(--accent-2, #ffd166);
    color: var(--text-muted);
}

/* Form-Row 2-spaltig */
.contact-dc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 580px) {
    .contact-dc-row {
        grid-template-columns: 1fr;
    }
}

/* Field */
.contact-dc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-dc-label {
    font-family: var(--font-mono);
    font-size: var(--type-caption);
    color: var(--text-faint);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.contact-dc-label .req {
    color: var(--accent);
    margin-left: 2px;
}

.contact-dc-input,
.contact-dc-textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: var(--type-body);
    color: var(--text);
    transition: border-color 0.2s;
}

.contact-dc-input:focus,
.contact-dc-textarea:focus {
    outline: 0;
    border-color: var(--accent);
}

.contact-dc-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-body);
}

.contact-dc-error {
    font-family: var(--font-mono);
    font-size: var(--type-micro);
    color: #ff6b6b;
    margin-top: 4px;
}

/* Checkbox */
.contact-dc-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: var(--type-small);
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-dc-checkbox input {
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-dc-checkbox a {
    color: var(--accent);
}

.contact-dc-submit {
    align-self: flex-start;
    margin-top: 8px;
}



/* ============================================================
   Pre-Save Banner · kompakt, ganz oben über Code/Year
   ============================================================ */

.release-dc-presave-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    margin-bottom: 32px;
    background: rgba(255, 200, 74, 0.08);
    border: 1px solid rgba(255, 200, 74, 0.3);
    border-radius: 4px;
    transition: background 0.2s, border-color 0.2s;
}

.release-dc-presave-banner:hover {
    background: rgba(255, 200, 74, 0.12);
    border-color: rgba(255, 200, 74, 0.5);
}

.release-dc-presave-banner-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
    min-width: 0;
    flex-wrap: wrap;
}

.release-dc-presave-banner-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--type-micro);
    color: var(--accent);
    text-transform: lowercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.release-dc-presave-banner-days {
    font-family: var(--font-mono);
    font-size: var(--type-small);
    color: var(--text);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.release-dc-presave-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #1DB954;
    color: #fff;
    font-family: var(--font-mono);
    font-size: var(--type-micro);
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.release-dc-presave-banner-btn:hover {
    background: #1ED760;
    transform: translateY(-1px);
}

.release-dc-presave-banner-btn svg {
    flex-shrink: 0;
}

.release-dc-presave-banner-arrow {
    font-size: var(--type-small);
    margin-left: 2px;
}

@media (max-width: 580px) {
    .release-dc-presave-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .release-dc-presave-banner-btn {
        justify-content: center;
    }
}



/* ============================================================
   Bandcamp Single-Player · kompakt
   Sitzt im Header-Info direkt unter dem Artist-Namen
   Höhe 120px = Bandcamp-Standard für Track-Embed mit Mini-Cover
   ============================================================ */

.release-dc-bcplayer-single {
    margin-top: 16px;
    max-width: 600px;
}

.release-dc-bcplayer-single iframe {
    height: 120px !important;
    border-radius: 4px;
    width: 100%;
}



/* ============================================================
   404 + Legal Pages · Drumcode-Style
   ============================================================ */

/* ─── 404 ─── */
.error-dc {
    padding: 80px 0 120px;
    text-align: left;
}

.error-dc-num {
    font-family: var(--font-mono);
    font-size: clamp(120px, 22vw, 240px);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin-bottom: 32px;
}

.error-dc-title {
    font-family: var(--font-mono);
    font-size: var(--type-h1);
    font-weight: 700;
    color: var(--text);
    text-transform: lowercase;
    letter-spacing: -0.02em;
    line-height: 1.0;
    margin: 0 0 16px;
}

.error-dc-message {
    font-size: var(--type-body-lg);
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 640px;
}

.error-dc-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}


/* ─── Legal Pages (Impressum / Datenschutz) ─── */
.legal-dc {
    padding: 40px 0 120px;
    max-width: 800px;
}

.legal-dc .dc-section-heading {
    margin-top: 0;
    margin-bottom: 40px;
}

.legal-dc h2 {
    font-family: var(--font-mono);
    font-size: var(--type-h3);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 48px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.legal-dc h2:first-of-type {
    margin-top: 0;
}

.legal-dc h3 {
    font-family: var(--font-mono);
    font-size: var(--type-body-lg);
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 12px;
}

.legal-dc p,
.legal-dc address,
.legal-dc ul,
.legal-dc ol {
    font-size: var(--type-body);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-dc address {
    font-style: normal;
}

.legal-dc strong {
    color: var(--text);
}

.legal-dc a {
    color: var(--accent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.legal-dc a:hover {
    border-bottom-color: var(--accent);
}

.legal-dc ul,
.legal-dc ol {
    padding-left: 24px;
}

.legal-dc li {
    margin-bottom: 8px;
}

.legal-dc .divider {
    margin: 48px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.legal-dc .muted {
    color: var(--text-faint);
}



/* ============================================================
   About-Seite · Team-Hero-Foto (MaHartmann + R. Rotter)
   ============================================================ */

.about-dc-hero {
    margin: 0 0 64px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: var(--bg-card);
}

.about-dc-hero-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2688 / 1216;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-dc-hero:hover .about-dc-hero-img {
    transform: scale(1.02);
}

.about-dc-hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-dc-hero-eyebrow {
    font-family: var(--font-mono);
    font-size: var(--type-micro);
    color: var(--accent);
    text-transform: lowercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.about-dc-hero-names {
    font-family: var(--font-mono);
    font-size: var(--type-h3);
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.01em;
}

@media (max-width: 720px) {
    .about-dc-hero {
        margin-bottom: 40px;
        border-radius: 4px;
    }
    .about-dc-hero-caption {
        padding: 16px 18px;
    }
    .about-dc-hero-eyebrow {
        font-size: 10px;
    }
    .about-dc-hero-names {
        font-size: var(--type-body-lg);
    }
}



/* ============================================================
   About-Seite · "# about" Headline kleiner
   Soll proportional zu "# releases" passen
   ============================================================ */

.about-dc > .container > .dc-section-heading {
    margin-top: 0;
    margin-bottom: 24px;
}



/* ============================================================
   Brand-Hero · Video-Loop Header auf der Hauptseite
   ============================================================ */

.home-dc-brandhero {
    position: relative;
    width: 100%;
    aspect-ratio: 2206 / 946;  /* echtes Verhältnis des Videos */
    max-height: 560px;
    overflow: hidden;
    background: #000;
    margin-bottom: 64px;
    border-bottom: 0.5px solid var(--accent);
}

.home-dc-brandhero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Overlay direkt auf dem Video — Video schimmert sichtbar durch */
.home-dc-brandhero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(31, 30, 28, 0.65);
    z-index: 1;
    pointer-events: none;
}

.home-dc-brandhero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    /* Subtiler Vignette-Gradient links für bessere Text-Lesbarkeit */
    background: linear-gradient(to right,
        rgba(31, 30, 28, 0.55) 0%,
        rgba(31, 30, 28, 0.15) 35%,
        transparent 60%);
    z-index: 2;
}

.home-dc-brandhero-content {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Tagline: eine elegante Zeile in Gold */
.home-dc-brandhero-tagline {
    margin: 0;
    font-family: var(--font-mono);
    font-size: var(--type-h2);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

/* Pitch: Genre-Reihe drunter, etwas kleiner in transparentem Weiß */
.home-dc-brandhero-pitch {
    font-family: var(--font-mono);
    font-size: clamp(12px, 1.3vw, 15px);
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1.4;
    font-weight: 700;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.home-dc-brandhero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--accent);
    color: #1f1e1c;
    font-family: var(--font-mono);
    font-size: var(--type-small);
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 3px;
    width: max-content;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
}

.home-dc-brandhero-cta:hover {
    background: #ffd66e;
    color: var(--text-muted);
    transform: translateY(-1px);
}

.home-dc-brandhero-cta-arrow {
    font-size: var(--type-body);
    transition: transform 0.2s;
}

.home-dc-brandhero-cta:hover .home-dc-brandhero-cta-arrow {
    transform: translateX(4px);
}

/* Tablet: Hero etwas kompakter */
@media (max-width: 960px) {
    .home-dc-brandhero {
        max-height: 420px;
        margin-bottom: 48px;
    }
}

/* Mobile: deutlich kompakter */
@media (max-width: 720px) {
    .home-dc-brandhero {
        aspect-ratio: 16 / 11;
        max-height: 320px;
        margin-bottom: 32px;
    }
    .home-dc-brandhero-overlay {
        background: linear-gradient(to bottom,
            rgba(31, 30, 28, 0.2) 0%,
            rgba(31, 30, 28, 0.65) 65%,
            rgba(31, 30, 28, 0.92) 100%);
        align-items: flex-end;
        padding-bottom: 20px;
    }
    .home-dc-brandhero-content {
        max-width: 100%;
        gap: 10px;
    }
    .home-dc-brandhero-pitch {
        font-size: 10px;
        letter-spacing: 0.15em;
        line-height: 1.4;
    }
    .home-dc-brandhero-cta {
        padding: 10px 16px;
        font-size: var(--type-caption);
        margin-top: 4px;
    }
}

/* Sehr kleine Phones (<400px): noch etwas kleiner */
@media (max-width: 400px) {
    .home-dc-brandhero {
        max-height: 280px;
        aspect-ratio: 4 / 3;
    }
    .home-dc-brandhero-pitch {
        font-size: 9px;
    }
}

/* Wenn User reduzierte Animation bevorzugt: Video pausieren */
@media (prefers-reduced-motion: reduce) {
    .home-dc-brandhero-video {
        animation: none;
    }
}



/* ============================================================
   Subtiles Digital-Grid-Pattern als Hintergrund-Textur
   Wirkt wie technische Blueprint-Linien, hauchdünn
   ============================================================ */

body {
    background-color: var(--bg);
    /* SVG-Pattern: 80×80 Grid mit hauchfeinen weißen Linien */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: 0 0, 0 0;
    background-attachment: fixed;
}



/* ============================================================
   Newsletter-Modal (Popup)
   ============================================================ */

.newsletter-modal[hidden] {
    display: none;
}

.newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: newsletter-modal-fade 220ms ease-out;
}

.newsletter-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.newsletter-modal-box {
    position: relative;
    background: var(--bg-elev-1);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 40px 36px 32px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    animation: newsletter-modal-pop 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.newsletter-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    line-height: 1;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 0;
    transition: color var(--t), transform var(--t);
}
.newsletter-modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* Sprachschalter im Modal — oben rechts, neben dem X */
.newsletter-modal-lang {
    position: absolute;
    top: 20px;
    right: 64px;
    display: flex;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: var(--type-micro);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
}
.newsletter-modal-lang a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 4px;
    transition: color var(--t);
}
.newsletter-modal-lang a:hover {
    color: var(--text);
}
.newsletter-modal-lang a.active {
    color: var(--accent);
}

.newsletter-modal-title {
    margin: 0 0 12px;
    font-size: var(--type-h2);
}

.newsletter-modal-sub {
    color: var(--text-muted);
    margin: 0 0 24px;
    font-size: var(--type-h4);
    line-height: 1.6;
}

@keyframes newsletter-modal-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes newsletter-modal-pop {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Footer Newsletter Trigger Link */
.footer-newsletter-trigger {
    cursor: pointer;
}

/* Body-Scroll-Lock wenn Modal offen */
body.newsletter-modal-open {
    overflow: hidden;
}

@media (max-width: 580px) {
    .newsletter-modal-box {
        padding: 36px 24px 24px;
    }
}


/* ═════════════════════════════════════════════════════════════
   ABOUT · RELEASES-TIMELINE (Drumcode-Style, horizontal)
   Neu → alt, Karten nebeneinander, mit Gold-Linie unten
   ═════════════════════════════════════════════════════════════ */

.about-dc-timeline {
    position: relative;
    margin: 8px 0 56px;
    padding-bottom: 28px;
}

/* Durchgehender Gold-Strich unten */
.about-dc-timeline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 1px;
    background: rgba(255, 200, 74, 0.18);
}

.about-dc-timeline-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 220px);
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 24px;
    /* nettere Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}
.about-dc-timeline-grid::-webkit-scrollbar { height: 6px; }
.about-dc-timeline-grid::-webkit-scrollbar-track { background: transparent; }
.about-dc-timeline-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 200, 74, 0.35);
    border-radius: 3px;
}

.about-dc-timeline-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 12px 26px;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 200, 74, 0.08);
    border-radius: 8px;
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.about-dc-timeline-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 200, 74, 0.35);
    background: rgba(255, 200, 74, 0.04);
}

/* Cover oben in der Karte */
.about-dc-timeline-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #000;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.about-dc-timeline-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.3s;
}

.about-dc-timeline-item:hover .about-dc-timeline-cover img {
    transform: scale(1.06);
}

.about-dc-timeline-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 56px;
    color: var(--text-faint);
    background: #2a2926;
}

.about-dc-timeline-cover-cat {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 3px;
    letter-spacing: 0.12em;
}

/* Gold-Dot sitzt UNTEN auf dem Strich */
.about-dc-timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--bg, #1f1e1c), 0 0 0 5px rgba(255, 200, 74, 0.18);
    transition: transform 0.2s;
}
.about-dc-timeline-item:hover::after {
    transform: translateX(-50%) scale(1.25);
}

/* Header: Year + optionaler Tag */
.about-dc-timeline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.about-dc-timeline-year {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.about-dc-timeline-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: lowercase;
    letter-spacing: 0.15em;
    color: var(--text-faint);
    padding: 3px 8px;
    border: 1px solid rgba(138, 136, 132, 0.3);
    border-radius: 99px;
    white-space: nowrap;
}

.about-dc-timeline-item.is-future .about-dc-timeline-tag {
    color: var(--accent);
    border-color: rgba(255, 200, 74, 0.4);
    background: rgba(255, 200, 74, 0.05);
}

.about-dc-timeline-cat {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-faint);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-dc-timeline-titlerow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.about-dc-timeline-title {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.01em;
    transition: color 0.2s;
    word-wrap: break-word;
    min-width: 0;
    flex: 1;
}

.about-dc-timeline-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
    text-align: right;
}

.about-dc-timeline-meta-top {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-faint);
    letter-spacing: 0.1em;
    text-transform: lowercase;
    line-height: 1.15;
    /* Auf Title-Baseline ausgerichtet */
    padding-top: 4px;
    white-space: nowrap;
}

.about-dc-timeline-meta-bot {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.08em;
    text-transform: lowercase;
    white-space: nowrap;
}

/* Legacy-Klasse für Fallback */
.about-dc-timeline-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

.about-dc-timeline-item:hover .about-dc-timeline-title {
    color: var(--accent);
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .about-dc-timeline-grid {
        grid-auto-columns: minmax(160px, 75%);
        gap: 14px;
    }
    .about-dc-timeline-title {
        font-size: 16px;
    }
    .about-dc-timeline-item {
        padding: 12px 12px 24px;
    }
}

/* =====================================================================
   Testhörer / Listening-Club Landing-Page
   ===================================================================== */
.testhoerer-dc {
    padding: 60px 0 80px;
}

/* ── Hero ── */
.testhoerer-dc-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}
.testhoerer-dc-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: lowercase;
    margin-bottom: 20px;
}
.testhoerer-dc-title {
    font-family: var(--font-mono);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0 0 24px;
    text-transform: lowercase;
}
.testhoerer-dc-subtitle {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ── Perks ── */
.testhoerer-dc-perks {
    margin-bottom: 60px;
}
.testhoerer-dc-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 32px;
}
.testhoerer-dc-perk {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 200, 74, 0.1);
    border-radius: 8px;
    position: relative;
}
.testhoerer-dc-perk-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 14px;
}
.testhoerer-dc-perk-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 0 0 10px;
    line-height: 1.2;
}
.testhoerer-dc-perk-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ── Counter (Social Proof) ── */
.testhoerer-dc-counter {
    text-align: center;
    margin: 60px 0;
    padding: 24px;
    background: rgba(255, 200, 74, 0.04);
    border: 1px solid rgba(255, 200, 74, 0.15);
    border-radius: 8px;
}
.testhoerer-dc-counter-prefix,
.testhoerer-dc-counter-suffix {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}
.testhoerer-dc-counter-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 8px;
}

/* ── Form-Section ── */
.testhoerer-dc-form-section {
    max-width: 640px;
    margin: 0 auto;
}
.testhoerer-dc-form-intro {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    margin: 8px 0 32px;
    line-height: 1.5;
}

/* Honeypot - vor Menschen versteckt */
.testhoerer-dc-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Form-Fields */
.testhoerer-dc-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.testhoerer-dc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.testhoerer-dc-field label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-faint);
    letter-spacing: 0.12em;
    text-transform: lowercase;
}
.testhoerer-dc-req {
    color: var(--accent);
}

.testhoerer-dc-field input[type="text"],
.testhoerer-dc-field input[type="email"],
.testhoerer-dc-field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
}
.testhoerer-dc-field input:focus,
.testhoerer-dc-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 200, 74, 0.04);
}
.testhoerer-dc-field textarea {
    resize: vertical;
    font-family: var(--font-body);
    line-height: 1.5;
}

/* Genre-Pills */
.testhoerer-dc-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.testhoerer-dc-genre {
    cursor: pointer;
    user-select: none;
}
.testhoerer-dc-genre input[type="checkbox"] {
    display: none;
}
.testhoerer-dc-genre span {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    text-transform: lowercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    color: var(--text-muted);
    transition: all 0.15s;
}
.testhoerer-dc-genre:hover span {
    border-color: rgba(255, 200, 74, 0.4);
    color: var(--text);
}
.testhoerer-dc-genre.is-checked span,
.testhoerer-dc-genre input:checked + span {
    background: rgba(255, 200, 74, 0.12);
    border-color: var(--accent);
    color: var(--accent);
}

/* DSGVO-Checkbox */
.testhoerer-dc-field-dsgvo {
    margin-top: 8px;
}
.testhoerer-dc-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.5;
}
.testhoerer-dc-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--accent);
}
.testhoerer-dc-checkbox a {
    color: var(--accent);
    text-decoration: underline;
}

/* Submit */
.testhoerer-dc-submit {
    margin-top: 16px;
}
.testhoerer-dc-submit .dc-btn-primary {
    width: 100%;
    justify-content: center;
}

/* Error-Messages */
.testhoerer-dc-error {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 4px;
    letter-spacing: 0.02em;
}
.testhoerer-dc-error-global {
    padding: 12px 16px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 4px;
    color: #ff6b6b;
    margin: 0 0 16px;
}

/* Flash / Success */
.testhoerer-dc-flash {
    padding: 32px 28px;
    border-radius: 8px;
    text-align: center;
}
.testhoerer-dc-flash-success {
    background: rgba(255, 200, 74, 0.06);
    border: 1px solid rgba(255, 200, 74, 0.3);
}
.testhoerer-dc-flash-title {
    font-family: var(--font-mono);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.01em;
    text-transform: lowercase;
    margin: 0 0 12px;
}
.testhoerer-dc-flash p {
    font-family: var(--font-body);
    color: var(--text);
    margin: 8px 0;
    line-height: 1.5;
}
.testhoerer-dc-flash-hint {
    color: var(--text-faint) !important;
    font-size: 13px;
}

/* Mobile */
@media (max-width: 640px) {
    .testhoerer-dc {
        padding: 40px 0 60px;
    }
    .testhoerer-dc-hero {
        margin-bottom: 48px;
    }
    .testhoerer-dc-perks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .testhoerer-dc-perk {
        padding: 22px 18px;
    }
    .testhoerer-dc-counter-num {
        font-size: 24px;
    }
}

/* Testhörer-Confirm Page */
.testhoerer-dc-flash-error {
    background: rgba(255, 107, 107, 0.06);
    border: 1px solid rgba(255, 107, 107, 0.3);
}
.testhoerer-dc-flash-error .testhoerer-dc-flash-title {
    color: #ff6b6b;
}
.testhoerer-dc-confirm-icon {
    font-size: 64px;
    margin-bottom: 12px;
    line-height: 1;
}
.testhoerer-dc-flash-success .testhoerer-dc-confirm-icon {
    color: var(--accent);
}
.testhoerer-dc-flash-error .testhoerer-dc-confirm-icon {
    color: #ff6b6b;
}

/* =====================================================================
   Navi: Testhörer / Listening-Club Link Highlight (dezent)
   ===================================================================== */
.site-nav-list .nav-testhoerer {
    position: relative;
}
.site-nav-list .nav-testhoerer::before {
    content: '✦ ';
    font-size: 10px;
    margin-right: 3px;
    color: var(--accent);
    opacity: 0.7;
    vertical-align: 1px;
}
.site-nav-list .nav-testhoerer:hover {
    color: var(--accent);
}
.site-nav-list .nav-testhoerer:hover::before {
    opacity: 1;
}
.site-nav-list .nav-testhoerer.active {
    color: var(--accent);
}
.site-nav-list .nav-testhoerer.active::after {
    background-color: var(--accent);
}

/* =====================================================================
   Hauptseite: Inner Circle Promo-Banner
   ===================================================================== */
.home-dc-innercircle {
    padding: 60px 0 80px;
}

.home-dc-innercircle-card {
    position: relative;
    padding: 60px 48px;
    background: linear-gradient(
        135deg,
        rgba(255, 200, 74, 0.04) 0%,
        rgba(255, 200, 74, 0.01) 50%,
        rgba(255, 200, 74, 0.04) 100%
    );
    border: 1px solid rgba(255, 200, 74, 0.2);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
}

/* Subtiler Glow im Hintergrund */
.home-dc-innercircle-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle at center,
        rgba(255, 200, 74, 0.08) 0%,
        rgba(255, 200, 74, 0.02) 30%,
        transparent 65%
    );
    z-index: -1;
    pointer-events: none;
    animation: dc-innercircle-pulse 6s ease-in-out infinite;
}
@keyframes dc-innercircle-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

.home-dc-innercircle-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: lowercase;
    margin-bottom: 24px;
}

.home-dc-innercircle-title {
    font-family: var(--font-mono);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 20px;
    text-transform: lowercase;
}

.home-dc-innercircle-sub {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 17px);
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 auto 40px;
    max-width: 580px;
}

/* Perks-Inline */
.home-dc-innercircle-perks {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.home-dc-innercircle-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 0.06em;
}
.home-dc-innercircle-perk-num {
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
}

/* CTA */
.home-dc-innercircle-cta {
    margin-top: 8px;
}
.home-dc-innercircle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    transition: gap 0.2s, transform 0.2s;
}
.home-dc-innercircle-btn-arrow {
    transition: transform 0.2s;
}
.home-dc-innercircle-btn:hover .home-dc-innercircle-btn-arrow {
    transform: translateX(4px);
}

/* Mobile */
@media (max-width: 720px) {
    .home-dc-innercircle {
        padding: 40px 0 60px;
    }
    .home-dc-innercircle-card {
        padding: 40px 24px;
    }
    .home-dc-innercircle-perks {
        gap: 12px 24px;
    }
    .home-dc-innercircle-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================================
   Pre-Footer Inner Circle CTA (auf jeder Seite)
   ===================================================================== */
.prefooter-innercircle {
    padding: 40px 0;
    background: rgba(255, 200, 74, 0.025);
    border-top: 1px solid rgba(255, 200, 74, 0.12);
    border-bottom: 1px solid rgba(255, 200, 74, 0.12);
}
.prefooter-innercircle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.prefooter-innercircle-text {
    flex: 1;
    min-width: 240px;
}
.prefooter-innercircle-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: lowercase;
    margin-bottom: 8px;
}
.prefooter-innercircle-headline {
    font-family: var(--font-mono);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-transform: lowercase;
    margin: 0;
}
.prefooter-innercircle-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .prefooter-innercircle {
        padding: 28px 0;
    }
    .prefooter-innercircle-inner {
        gap: 16px;
    }
    .prefooter-innercircle-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================================================
   Bandcamp Two-Click (DSGVO-konform, lädt erst nach Klick)
   ============================================================================ */
.bc-twoclick {
    width: 100%;
    min-height: 120px;
    background: linear-gradient(135deg, #1e1d1c 0%, #2a2826 100%);
    border: 1px solid #3a3835;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bc-twoclick iframe {
    width: 100%;
    border: 0;
    display: block;
}
.bc-twoclick-loaded {
    min-height: 0;
    background: transparent;
    border: 0;
    padding: 0;
}
.bc-twoclick-btn {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--accent, #ffc84a);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    width: 100%;
    text-align: left;
    transition: background-color .15s ease, color .15s ease;
    font-family: inherit;
}
.bc-twoclick-btn:hover {
    background: rgba(255, 200, 74, 0.06);
}
.bc-twoclick-btn:focus-visible {
    outline: 2px solid var(--accent, #ffc84a);
    outline-offset: -2px;
}
.bc-twoclick-logo {
    flex: 0 0 32px;
    color: var(--accent, #ffc84a);
}
.bc-twoclick-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}
.bc-twoclick-label strong {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.2px;
}
.bc-twoclick-label small {
    font-size: 11px;
    color: #8a8884;
    font-weight: 400;
}
