/* ==========================================================================
   NÓRDIKA OFFICIAL — Avant-Garde Memorial Redesign
   Synthpop • Darkwave • EBM • Futurepop
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
    /* Sober synthpop palette — monochrome + antique bronze */
    --bg-void: #08080a;
    --bg-deep: #0c0c0e;
    --bg-secondary: #121214;
    --bg-tertiary: #1a1a1d;
    --bg-card: rgba(22, 22, 26, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.025);
    --border-glass: rgba(255, 255, 255, 0.07);
    --text-primary: #ececed;
    --text-secondary: #9a9aa0;
    --text-muted: #56565c;

    --gold: #b8956a;        /* antique bronze — sober */
    --gold-bright: #d4b88a;
    --gold-deep: #8a6f4a;
    --cyan: #b8956a;         /* alias to bronze, no neon */
    --cyan-deep: #8a6f4a;
    --magenta: #b8956a;
    --violet: #b8956a;

    --bandcamp: #629aa9;
    --whatsapp: #25d366;

    --gradient-gold: linear-gradient(135deg, #8a6f4a 0%, #d4b88a 50%, #8a6f4a 100%);
    --gradient-neon: linear-gradient(135deg, #6a6a6a 0%, #b8956a 50%, #6a6a6a 100%);
    --gradient-dark: linear-gradient(180deg, rgba(8,8,10,0) 0%, rgba(8,8,10,0.85) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(8,8,10,0.4) 0%, rgba(8,8,10,0.65) 50%, rgba(8,8,10,0.98) 100%);
    --gradient-mesh: radial-gradient(at 20% 30%, rgba(184,149,106,0.06) 0px, transparent 50%),
                    radial-gradient(at 80% 20%, rgba(255,255,255,0.02) 0px, transparent 50%),
                    radial-gradient(at 50% 80%, rgba(184,149,106,0.05) 0px, transparent 50%);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    --container-max: 1280px;
    --header-height: 64px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    --shadow-sm: 0 2px 12px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.5);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
    --shadow-glow-gold: 0 0 40px rgba(184,149,106,0.15);
    --shadow-glow-cyan: 0 0 40px rgba(184,149,106,0.15);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.4s var(--ease);
    --transition-fast: 0.2s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
    font-family: var(--font-sans);
    background: var(--bg-void);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: #000; }

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ---------- Custom Cursor Glow ---------- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}
@media (max-width: 768px) { .cursor-glow { display: none; } }

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-neon);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0,229,255,0.6);
    transition: width 0.1s linear;
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    z-index: 10000;
    transition: top var(--transition-fast);
}
.skip-link:focus { top: 10px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s var(--ease);
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5), 0 0 40px rgba(212,175,55,0.3);
}
.btn-neon {
    background: transparent;
    color: var(--cyan);
    border-color: var(--cyan);
    box-shadow: inset 0 0 10px rgba(0,229,255,0.1), 0 0 10px rgba(0,229,255,0.2);
}
.btn-neon:hover {
    background: rgba(0,229,255,0.1);
    box-shadow: inset 0 0 20px rgba(0,229,255,0.2), 0 0 30px rgba(0,229,255,0.5);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}
.btn-ghost {
    background: var(--bg-glass);
    color: var(--text-primary);
    border-color: var(--border-glass);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 9px 18px; font-size: 0.7rem; }
.btn-lg { padding: 17px 40px; font-size: 0.9rem; }
.btn-shop {
    background: var(--gradient-gold);
    color: #000;
    border-color: var(--gold);
    font-size: 0.72rem;
    padding: 9px 20px;
}
.btn-shop:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-gold); }

/* ==========================================================================
   TOP BANNER — Marquee
   ========================================================================== */
.top-banner {
    background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
    color: #000;
    overflow: hidden;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1002;
    padding: 9px 0;
    transition: transform 0.4s var(--ease);
}
/* Hide banner on scroll, slide up */
body.scrolled .top-banner { transform: translateY(-100%); }
.top-banner p {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
}
.top-banner strong { text-decoration: underline; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* ==========================================================================
   HEADER — Glassmorphism
   ========================================================================== */
.header {
    position: fixed;
    top: 33px; left: 0; right: 0;
    height: var(--header-height);
    background: rgba(5,5,7,0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: top 0.4s var(--ease), background var(--transition), box-shadow var(--transition);
}
/* When banner hidden on scroll, header moves to very top */
body.scrolled .header { top: 0; }
.header.scrolled {
    background: rgba(5,5,7,0.85);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom-color: rgba(184,149,106,0.15);
}
.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; transition: transform var(--transition); }
.logo:hover { transform: scale(1.05); }
.logo-img { height: 38px; width: auto; filter: drop-shadow(0 0 8px rgba(212,175,55,0.4)); }

.nav { display: none; }
.nav-list { display: flex; gap: 34px; }
.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    width: 0; height: 2px;
    background: var(--gradient-neon);
    transition: all var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Language Selector */
.lang-selector { position: relative; }
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-icon { width: 14px; height: 14px; }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px); right: 0;
    background: rgba(15,15,23,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 6px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}
.lang-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 9px 14px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}
.lang-option:hover { background: rgba(212,175,55,0.1); color: var(--gold); }

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}
.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition);
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--gold); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--gold); }

/* Mobile Nav */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 85vw); height: 100vh; height: 100dvh;
        background: rgba(10,10,15,0.98);
        backdrop-filter: blur(30px);
        padding: 100px 28px 32px;
        transition: right var(--transition);
        border-left: 1px solid var(--border-glass);
        z-index: 1001;
        overflow-y: auto;
    }
    .nav.active { right: 0; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-glass);
        font-size: 0.95rem;
    }
    .nav-link::after { display: none; }
}
@media (min-width: 1024px) {
    .nav { display: block; }
    .mobile-toggle { display: none; }
    .btn-shop { display: inline-flex; }
}

/* ==========================================================================
   HERO — Slider + Particles
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 33px);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(0.45) contrast(1.1);
    transform: scale(1.1);
    animation: kenburns 12s ease-in-out infinite alternate;
}
.hero-slide.active img { animation-play-state: running; }
@keyframes kenburns {
    from { transform: scale(1.1) translate(0, 0); }
    to { transform: scale(1.25) translate(-2%, -2%); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

/* Particle canvas */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Scanline glitch overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(0, 229, 255, 0.015) 2px,
        rgba(0, 229, 255, 0.015) 4px
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 40px 24px;
    max-width: 760px;
}
.hero-subtitle {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeInUp 0.9s 0.1s ease forwards;
    text-shadow: 0 0 12px rgba(0,229,255,0.6);
}
.hero-subtitle::before, .hero-subtitle::after {
    content: '◆';
    margin: 0 12px;
    color: var(--gold);
    font-size: 0.6rem;
    vertical-align: middle;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 13vw, 7.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 0.95;
    margin-bottom: 16px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 0.9s 0.3s ease forwards;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(212,175,55,0.3));
}
.hero-name {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0;
    animation: fadeInUp 0.9s 0.5s ease forwards;
}
.hero-dates-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeInUp 0.9s 0.6s ease forwards;
}
.hero-tagline {
    font-size: 0.78rem;
    color: var(--text-secondary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeInUp 0.9s 0.7s ease forwards;
}
.hero-tagline span { color: var(--cyan); }
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.9s 0.9s ease forwards;
}
.hero-btn-main {
    font-size: 0.95rem;
    padding: 18px 50px;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

/* Hero slider dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}
.hero-dot {
    width: 30px; height: 3px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.6);
    width: 50px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 1s 1.4s ease forwards;
}
.hero-scroll::after {
    content: '';
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 25px rgba(212,175,55,0.4), 0 4px 20px rgba(212,175,55,0.3); }
    50% { box-shadow: 0 0 50px rgba(212,175,55,0.6), 0 4px 30px rgba(212,175,55,0.4); }
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip {
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.08), transparent),
                linear-gradient(180deg, var(--bg-deep), var(--bg-secondary));
    padding: 18px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
}
.cta-strip-alt { background: var(--bg-tertiary); }
.cta-strip-alt .cta-strip-text { color: var(--text-secondary); }
.cta-strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    text-align: center;
}
.cta-strip-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}
.cta-strip-alt .btn-primary {
    background: var(--text-primary);
    color: #000;
    border-color: var(--text-primary);
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
    line-height: 1.1;
}
.section-title .accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 620px;
    margin: 0 auto 60px;
    line-height: 1.7;
}
.subsection-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin: 60px 0 30px;
    color: var(--text-primary);
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.subsection-title::before, .subsection-title::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ==========================================================================
   BIOGRAPHY
   ========================================================================== */
.biography {
    padding: 110px 0 90px;
    background: var(--bg-deep);
    position: relative;
}
.biography::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold));
}
.bio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 768px) {
    .bio-grid { grid-template-columns: 1.5fr 1fr; gap: 60px; }
}
.bio-title {
    text-align: left;
    margin-bottom: 8px;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.bio-stage-name {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.bio-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 18px;
}
.bio-text strong { color: var(--text-primary); }
.bio-text em { color: var(--gold); font-style: italic; }
.bio-quote {
    border-left: 2px solid var(--gold);
    padding: 18px 26px;
    margin: 28px 0;
    background: linear-gradient(90deg, rgba(212,175,55,0.06), transparent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-muted);
    position: relative;
}
.bio-quote::before {
    content: '"';
    position: absolute;
    top: -10px; left: 16px;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: var(--font-display);
}

/* Bio Sidebar */
.bio-fact-card, .bio-collab-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 26px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.bio-fact-card::before, .bio-collab-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity var(--transition);
}
.bio-fact-card:hover, .bio-collab-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-3px);
}
.bio-fact-card:hover::before, .bio-collab-card:hover::before { opacity: 1; }
.bio-fact-card h4, .bio-collab-card h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-glass);
}
.bio-facts li {
    display: flex;
    flex-direction: column;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bio-facts li:last-child { border-bottom: none; }
.bio-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.bio-value { font-size: 0.88rem; color: var(--text-primary); }
.bio-collab-list li {
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color var(--transition-fast);
}
.bio-collab-list li:hover { color: var(--gold); }
.bio-collab-list li:last-child { border-bottom: none; }
.bio-collab-list li span { color: var(--text-muted); font-size: 0.76rem; }

/* ==========================================================================
   DISCOGRAPHY — Timeline + 3D cards
   ========================================================================== */
.discography { padding: 110px 0 90px; position: relative; }

.albums-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (min-width: 640px) { .albums-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .albums-grid { grid-template-columns: repeat(4, 1fr); } }

.album-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    border: 1px solid var(--border-glass);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.album-card:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.4);
}
.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
}
.album-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.album-card:hover .album-cover img { transform: scale(1.12); }
.album-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity var(--transition);
}
.album-card:hover .album-cover::after { opacity: 1; }
.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,5,7,0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition);
    padding: 16px;
}
.album-card:hover .album-overlay { opacity: 1; }
.album-title {
    font-size: 0.92rem;
    font-weight: 700;
    padding: 14px 14px 4px;
    letter-spacing: 0.02em;
}
.album-year {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 0 14px 14px;
}

/* Full Catalog CTA */
.full-catalog-cta {
    margin-top: 70px;
    background: var(--gradient-neon);
    border-radius: var(--radius-lg);
    padding: 3px;
    position: relative;
    overflow: hidden;
}
.full-catalog-cta::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, var(--cyan), var(--violet), var(--magenta), var(--gold), var(--cyan));
    animation: rotate-bg 8s linear infinite;
    opacity: 0.3;
}
@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.full-catalog-content {
    background: var(--bg-void);
    border-radius: calc(var(--radius-lg) - 3px);
    padding: 52px 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.full-catalog-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 14px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.full-catalog-content p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 0.95rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Singles Grid */
.singles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
@media (min-width: 640px) { .singles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .singles-grid { grid-template-columns: repeat(5, 1fr); } }
.single-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    transition: all var(--transition);
    gap: 8px;
}
.single-item:hover {
    border-color: var(--gold);
    background: rgba(212,175,55,0.06);
    transform: translateX(4px);
}
.single-title {
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.single-price {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

/* ==========================================================================
   VIDEOS
   ========================================================================== */
.videos {
    padding: 110px 0 90px;
    background: var(--bg-secondary);
    position: relative;
}
.featured-video { margin-bottom: 48px; }
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-glass);
}
.video-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-neon);
    border-radius: var(--radius-lg);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition);
}
.video-wrapper:hover::before { opacity: 0.5; }
.video-wrapper iframe { width: 100%; height: 100%; border: none; }
.video-info { text-align: center; padding: 20px 0; }
.video-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.video-info p { color: var(--text-muted); font-size: 0.85rem; }

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
@media (min-width: 640px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .videos-grid { grid-template-columns: repeat(4, 1fr); } }

.video-card { cursor: pointer; transition: transform var(--transition); }
.video-card:hover { transform: translateY(-5px); }
.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-tertiary);
    margin-bottom: 10px;
    border: 1px solid var(--border-glass);
}
.video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.video-card:hover .video-thumb img { transform: scale(1.08); }
.play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,229,255,0.1), rgba(123,45,255,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.play-overlay svg {
    width: 52px; height: 52px;
    color: white;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
    transition: transform var(--transition);
}
.video-card:hover .play-overlay { opacity: 1; }
.video-card:hover .play-overlay svg { transform: scale(1.2); }
.video-card h4 { font-size: 0.85rem; font-weight: 500; padding: 0 4px; }
.video-views {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 0 4px;
    display: block;
    margin-top: 2px;
}

/* ==========================================================================
   PHOTO GALLERY
   ========================================================================== */
.photos {
    padding: 110px 0 90px;
    background: var(--bg-deep);
}
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (min-width: 640px) { .photos-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .photos-grid { grid-template-columns: repeat(3, 1fr); } }
.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-glass);
}
.photo-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease), filter var(--transition);
    filter: grayscale(30%);
}
.photo-item:hover img { transform: scale(1.1); filter: grayscale(0%); }
.photo-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity var(--transition);
}
.photo-item:hover::after { opacity: 1; }

/* ==========================================================================
   LEGACY SECTION
   ========================================================================== */
.legacy-section {
    padding: 110px 0 90px;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
}
.legacy-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
@media (min-width: 640px) { .legacy-cards { grid-template-columns: repeat(3, 1fr); } }
.legacy-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 38px 26px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.legacy-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(212,175,55,0.1), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}
.legacy-card:hover::before { opacity: 1; }
.legacy-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md), 0 0 30px rgba(212,175,55,0.1);
}
.legacy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(0,229,255,0.1));
    color: var(--gold);
    margin-bottom: 22px;
    border: 1px solid rgba(212,175,55,0.2);
    position: relative;
    z-index: 1;
}
.legacy-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
.legacy-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}
.legacy-cta { padding-top: 20px; }
.legacy-cta p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

/* ==========================================================================
   MEMORIES
   ========================================================================== */
.memories { padding: 110px 0 90px; }
.memories-form {
    max-width: 620px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}
.memories-form::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 2px;
    background: var(--gradient-neon);
    border-radius: 2px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-glass);
    padding: 70px 0 30px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.footer-section h4 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--gold);
}
.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-cta { margin-top: 8px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: inline-block;
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    transition: all var(--transition);
}
.social-link-footer:hover {
    background: var(--gradient-gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-3px) rotate(-5deg);
}
.social-link-footer svg { width: 18px; height: 18px; }
.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5,5,7,0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute;
    top: 24px; right: 28px;
    background: none;
    border: 1px solid var(--border-glass);
    color: white;
    font-size: 2rem;
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: all var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    color: white;
    font-size: 2rem;
    padding: 16px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition);
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   POPUP MODAL — Sales Funnel
   ========================================================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,5,7,0.85);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-deep));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    max-width: 460px;
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
    transform: scale(0.85) translateY(20px);
    transition: transform 0.5s var(--ease-bounce);
    box-shadow: var(--shadow-lg);
}
.popup-overlay.active .popup { transform: scale(1) translateY(0); }
.popup::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-neon);
}
.popup::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
    pointer-events: none;
}
.popup-close {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 1.4rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all var(--transition);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-close:hover { background: var(--magenta); color: white; border-color: var(--magenta); transform: rotate(90deg); }
.popup-body { padding: 44px 36px 36px; position: relative; z-index: 1; text-align: center; }
.popup-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--magenta);
    background: rgba(255,45,146,0.1);
    border: 1px solid rgba(255,45,146,0.3);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}
.popup-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.popup-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 24px;
}
.popup-text strong { color: var(--text-primary); }
.popup-cta {
    display: block;
    width: 100%;
    margin-bottom: 12px;
}
.popup-dismiss {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    text-decoration: underline;
}
.popup-dismiss:hover { color: var(--text-secondary); }

/* ==========================================================================
   STICKY CTA BAR (mobile)
   ========================================================================== */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(5,5,7,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 12px 20px;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
    font-size: 0.78rem;
    color: var(--text-secondary);
    flex: 1;
}
.sticky-cta-text strong { color: var(--gold); }
.sticky-cta .btn { padding: 11px 22px; font-size: 0.72rem; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* Reveal from left/right */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale reveal */
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.8s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.65s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.75s; }

/* ==========================================================================
   RESPONSIVE — Mobile First Fixes
   ========================================================================== */

/* Small mobile — <= 480px */
@media (max-width: 480px) {
    .hero-content { padding: 30px 18px; }
    .hero-title { font-size: clamp(2.8rem, 14vw, 4rem); letter-spacing: 0.03em; }
    .hero-name { font-size: 0.95rem; }
    .hero-subtitle { font-size: 0.62rem; letter-spacing: 0.3em; }
    .hero-subtitle::before, .hero-subtitle::after { margin: 0 8px; }
    .hero-tagline { font-size: 0.68rem; letter-spacing: 0.18em; }
    .hero-btn-main { padding: 16px 32px; font-size: 0.82rem; }
    .hero-ctas { flex-direction: column; width: 100%; gap: 12px; }
    .hero-ctas .btn { width: 100%; }
    .hero-dots { bottom: 18px; }
    .hero-scroll { display: none; }

    .top-banner p { font-size: 0.62rem; letter-spacing: 0.12em; }

    .header-container { padding: 0 16px; }
    .logo-img { height: 32px; }
    .header-actions { gap: 8px; }
    .lang-btn { padding: 6px 10px; font-size: 0.68rem; }

    .container { padding: 0 16px; }

    .section-title { font-size: clamp(1.6rem, 7vw, 2rem); }
    .section-subtitle { font-size: 0.85rem; margin-bottom: 36px; }
    .subsection-title { font-size: 1.15rem; margin: 40px 0 22px; }
    .subsection-title::before, .subsection-title::after { max-width: 30px; }

    .cta-strip-content { flex-direction: column; gap: 12px; text-align: center; }
    .cta-strip-text { font-size: 0.76rem; }

    /* Biography */
    .biography { padding: 70px 0 60px; }
    .bio-grid { gap: 36px; }
    .bio-text p { font-size: 0.88rem; line-height: 1.7; }
    .bio-fact-card, .bio-collab-card { padding: 20px; }
    .bio-quote { padding: 14px 18px; margin: 20px 0; }

    /* Discography */
    .discography { padding: 70px 0 60px; }
    .albums-grid { grid-template-columns: 1fr; gap: 16px; }
    .album-title { font-size: 0.82rem; padding: 10px 10px 2px; }
    .album-year { font-size: 0.7rem; padding: 0 10px 10px; }
    .full-catalog-content { padding: 32px 20px; }
    .full-catalog-content h3 { font-size: 1.3rem; }
    .singles-grid { grid-template-columns: 1fr; }

    /* Videos */
    .videos { padding: 70px 0 60px; }
    .videos-grid { grid-template-columns: 1fr; gap: 16px; }
    .video-card h4 { font-size: 0.82rem; }

    /* Photos */
    .photos { padding: 70px 0 60px; }
    .photos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* Legacy */
    .legacy-section { padding: 70px 0 60px; }
    .legacy-card { padding: 28px 20px; }

    /* Memories form */
    .memories { padding: 70px 0 60px; }
    .memories-form { padding: 28px 20px; }

    /* Footer */
    .footer { padding: 50px 0 24px; }
    .footer-section p { font-size: 0.85rem; }
    .social-link-footer { width: 38px; height: 38px; }

    /* Popup */
    .popup { max-width: 100%; }
    .popup-body { padding: 36px 22px 28px; }
    .popup-title { font-size: 1.4rem; }
    .popup-text { font-size: 0.85rem; }

    /* Sticky CTA */
    .sticky-cta { padding: 10px 16px; }
    .sticky-cta-text { font-size: 0.7rem; }
    .sticky-cta .btn { padding: 9px 16px; font-size: 0.66rem; }

    /* Lightbox controls */
    .lightbox-prev, .lightbox-next { width: 44px; height: 44px; padding: 0; }
    .lightbox-close { width: 42px; height: 42px; top: 16px; right: 16px; }
}

/* Larger mobile — 481-768px */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-content { padding: 32px 20px; }
    .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
    .hero-ctas { flex-direction: column; width: 100%; gap: 14px; }
    .hero-ctas .btn { width: 100%; }
    .hero-scroll { display: none; }

    .albums-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .photos-grid { grid-template-columns: repeat(2, 1fr); }
    .singles-grid { grid-template-columns: repeat(2, 1fr); }

    .biography, .discography, .videos, .photos, .legacy-section, .memories { padding: 80px 0 70px; }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

    .popup { max-width: 420px; }
}

/* Tablet — 769-1023px */
@media (max-width: 1023px) and (min-width: 769px) {
    .albums-grid { grid-template-columns: repeat(3, 1fr); }
    .videos-grid { grid-template-columns: repeat(3, 1fr); }
    .photos-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Landscape mobile fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 90px 0 60px; }
    .hero-content { padding: 20px 18px; }
    .hero-title { font-size: clamp(2.5rem, 9vw, 4rem); }
    .hero-scroll { display: none; }
}

/* Very small screens <= 360px */
@media (max-width: 360px) {
    .hero-title { font-size: 2.4rem; }
    .hero-btn-main { padding: 14px 24px; font-size: 0.75rem; }
    .btn { padding: 11px 22px; font-size: 0.72rem; }
    .section-title { font-size: 1.5rem; }
    .album-overlay { padding: 10px; }
    .album-overlay .btn { padding: 7px 12px; font-size: 0.65rem; }
    .sticky-cta { flex-wrap: wrap; }
}

/* Prevent horizontal overflow globally on mobile */
@media (max-width: 768px) {
    body, html { overflow-x: hidden; max-width: 100vw; }
    .container, .header-container { max-width: 100%; }
    .hero, .cta-strip, .biography, .discography, .videos, .photos, .legacy-section, .memories, .footer { max-width: 100vw; }
    img, video, iframe { max-width: 100%; }
    .full-catalog-cta { max-width: 100%; }
    .full-catalog-content h3 { word-wrap: break-word; }
    .hero-bg, .hero-slide { max-width: 100%; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Print */
@media print {
    .header, .lightbox, .top-banner, .cta-strip, .popup-overlay, .sticky-cta, .cursor-glow, .scroll-progress { display: none !important; }
    body { background: white; color: black; }
    body::before { display: none; }
}

/* Accessibility Focus */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Touch Targets */
@media (pointer: coarse) {
    .btn, .nav-link, .lang-btn, .mobile-toggle { min-height: 44px; min-width: 44px; }
}

/* High Contrast */
@media (prefers-contrast: high) {
    :root { --text-secondary: #cccccc; --text-muted: #999999; }
    .album-card, .single-item, .legacy-card { border-width: 2px; }
}
