:root {
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --bg: #ffffff;
    --bg-strong: #f8f9fa;
    --paper: rgba(255, 255, 255, 1);
    --paper-strong: rgba(255, 255, 255, 1);
    --ink: #1a1a1a;
    --muted: #6b7280;
    --line: rgba(0, 0, 0, 0.1);
    --accent: #6366f1;
    --accent-dark: #4f46e5;
    --accent-soft: rgba(99, 102, 241, 0.1);
    --gold: #f59e0b;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

.shell {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    background: var(--bg);
    overflow: visible;
}

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 40px 60px 40px 80px;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    backdrop-filter: blur(20px);
}

.topbar > .brand-lockup {
    flex: 1 1 auto;
    min-width: 0;
    flex-shrink: 0;
}

.topbar > .nav-links {
    margin-left: auto;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    display: none;
}

.brand-copy strong {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--ink);
    cursor: default;
}

.brand-copy strong:focus {
    outline: none;
}

.brand-copy span {
    display: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: flex-end;
}

.nav-link {
    padding: 8px 0;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    position: relative;
}

.nav-link:hover {
    color: var(--ink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 0 60px;
}

.hero-main,
.hero-side,
.catalog {
    background: transparent;
    border: none;
    padding: 0;
}

.hero-main {
    position: relative;
    overflow: visible;
}

.eyebrow {
    display: none;
}

h1 {
    margin: 0 0 16px 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1;
    text-transform: none;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: var(--ink);
}

.headline-sub {
    display: block;
    color: var(--ink);
}

.lede {
    max-width: 60ch;
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
}

.stat-card {
    display: none;
}

.hero-side {
    display: none;
}

.hero-side h2 {
    display: none;
}

.hero-collage,
.collage-badge,
.collage-grid,
.collage-card {
    display: none;
}

.meta-list {
    display: none;
}

.note-card {
    display: none;
}

.meta-pill {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.meta-pill {
    display: none;
}

.catalog {
    position: relative;
    padding: 120px 60px 0;
}

.discography-nav {
    display: none;
}

.discography-link {
    display: none;
}

.catalog-heading {
    position: absolute;
    top: -15px;
    left: 50%;
    z-index: 0;
    width: calc(100% - 120px);
    margin: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transform: translateX(-50%);
}

.catalog-heading h2 {
    margin: 0;
    font-size: clamp(72px, 14vw, 180px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgba(107, 114, 128, 0.78);
    text-transform: uppercase;
    line-height: 1;
}

.catalog-heading p {
    display: none;
}

.catalog-groups {
    display: grid;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.catalog-group {
    display: block;
}

.group-heading {
    display: none;
}

.group-kicker,
.group-heading h3,
.group-heading p {
    display: none;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.album-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: transparent;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-8px);
}

.album-card .album-toggle {
    display: none;
}

.album-toggle,
.album-content {
    display: none;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--bg-strong);
    transition: all 0.3s ease;
}

.album-card:hover .album-cover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.album-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.album-anchor {
    scroll-margin-top: 28px;
}

.album-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}

.album-tag {
    display: none;
}

.album-copy {
    display: none;
}

.album-content {
    display: none;
}

.track-list {
    display: none;
}

.track-list li,
.track-no,
.track-meta strong,
.track-meta span {
    display: none;
}

.artist-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 2px solid var(--line);
    padding-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.artist-tabs::-webkit-scrollbar {
    display: none;
}

.artist-tab {
    padding: 16px 32px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.artist-tab:hover {
    color: var(--ink);
}

.artist-tab.active {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    margin-top: 80px;
    background: #000;
    color: #fff;
    padding: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    cursor: default;
}

.footer-logo:focus {
    outline: none;
}

.footer-text {
    color: #999;
    line-height: 1.6;
    font-size: 15px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
}

.footer p {
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: white;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.modal-cover {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-info {
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.modal-description {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 15px;
}

.modal-tracklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-tracklist li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.modal-tracklist li:last-child {
    border-bottom: none;
}

.modal-track-number {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--accent);
    font-weight: 600;
}

.modal-track-info strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 4px;
}

.modal-track-info span {
    font-size: 13px;
    color: var(--muted);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1080px) {
    .album-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero {
        padding: 0 40px;
    }

    .catalog {
        padding: 0 40px;
    }
}

@media (max-width: 760px) {
    .topbar {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .nav-link {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hero {
        padding: 0 24px;
    }

    .catalog {
        padding: 0 24px;
    }

    .album-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .catalog-heading h2 {
        font-size: 32px;
    }

    .artist-tabs {
        margin-bottom: 40px;
    }

    .footer {
        padding: 40px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .artist-tabs {
        gap: 0;
        margin-bottom: 32px;
    }

    .artist-tab {
        padding: 12px 20px;
        font-size: 13px;
    }

    h1 {
        font-size: 36px;
    }

    .modal-content {
        grid-template-columns: 1fr;
        padding: 24px;
        max-width: 95%;
    }

    .modal-cover {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .modal-info {
        text-align: center;
    }
}

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

/* ========================================
   IMPRESSUM & DATENSCHUTZ PAGE STYLES
   ======================================== */

.back-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--ink);
}

.page-hero {
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-intro {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 16px;
}

.legal-grid {
    display: grid;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px 120px;
}

.card {
    background: var(--bg-strong);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--line);
}

.card h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: var(--ink);
}

.card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 8px 0;
    color: var(--ink);
}

.card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.card ul {
    margin: 0 0 16px 0;
    padding-left: 20px;
}

.card li {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.card a {
    color: var(--accent);
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

/* ========================================
   ARTISTS PAGE STYLES
   ======================================== */

.hero-copy {
    max-width: 60ch;
}

.eyebrow {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.hero-panel {
    background: var(--bg-strong);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--line);
    max-width: 40ch;
}

.hero-panel strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.hero-panel p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.artist-list {
    padding: 60px;
}

.artist-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.artist-visual img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.artist-copy h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.artist-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.artist-meta span {
    background: var(--bg-strong);
    color: var(--muted);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.release-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.release-tile {
    text-align: center;
}

.release-tile img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.release-tile span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 60px;
    background: var(--bg-strong);
    border-radius: 12px;
    border: 1px dashed var(--line);
}

.empty-state h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: var(--ink);
}

.footer-top {
    margin-bottom: 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    color: #666;
    font-size: 14px;
}

/* ========================================
   RESPONSIVE DESIGN FOR IMPRESSUM & ARTISTS
   ======================================== */

@media (max-width: 760px) {
    .page-hero {
        padding: 40px 24px;
    }

    .legal-grid {
        padding: 0 24px 80px;
    }

    .card {
        padding: 24px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-panel {
        display: none;
    }

    .artist-list {
        padding: 40px 24px;
    }

    .artist-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .release-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .empty-state {
        padding: 40px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .release-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}