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

:root {
    --gold: #d4af37;
    --gold-light: #e8d48b;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --gray: #888888;
    --light: #f0f0f0;
    --white: #ffffff;
    --red: #c0392b;
    --green: #27ae60;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

a, button, input, .tilt-card {
    cursor: none;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Custom Cursor ===== */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s var(--ease), opacity 0.15s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.3s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    opacity: 1;
    border-color: var(--gold-light);
}

.cursor-dot.click {
    transform: translate(-50%, -50%) scale(0.5);
}

/* ===== Noise Overlay ===== */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== Section Labels ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--gold);
}

section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* ===== Navbar ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    transition: all 0.4s var(--ease);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--light);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--gold);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    transition: color 0.3s, transform 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 1) 100%),
        url('images/bambaata-marley-9.JPG') center 30% / cover no-repeat;
    will-change: transform;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(2) { animation-delay: 0.7s; }

.title-line.accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.15em;
}

/* Shimmer animation on title */
.shimmer {
    background-size: 200% 100%;
    animation: fadeUp 1s var(--ease-out) 0.7s forwards, shimmer 3s ease-in-out 2s infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== About ===== */
.about {
    padding: 3.5rem 0;
    background: var(--dark-2);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.image-frame {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--dark-3);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-frame-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.image-frame:hover .image-frame-glow {
    opacity: 1;
}

.image-frame::after {
    display: none;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.3rem;
    letter-spacing: 0.03em;
}

/* ===== Music ===== */
.music {
    padding: 3.5rem 0;
    background: var(--dark);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.album-card {
    cursor: pointer;
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--dark-3);
    border-radius: 4px;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.album-cover:hover img {
    transform: scale(1.08);
}

.album-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.album-cover:hover .album-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
}

.play-btn svg {
    width: 20px;
    margin-left: 3px;
}

.play-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.album-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.album-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Disco Category Headers */
.disco-category {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Singles Grid */
.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.single-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

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

.single-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0.5rem;
}

.single-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.single-card:hover .single-cover img {
    transform: scale(1.05);
}

.single-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    line-height: 1.3;
}

.single-year {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Spotify Embed */
.spotify-embed {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== Glassmorphism Cards ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(212, 175, 55, 0.05);
}

/* ===== 3D Tilt Effect ===== */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease-out);
}

/* ===== Video Section ===== */
.video-section {
    padding: 3.5rem 0;
    background: var(--dark-2);
}

.featured-video {
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-video-info {
    margin-top: 1.2rem;
}

.featured-video-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.featured-video-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Video Thumbnail Gallery */
.video-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.video-thumb {
    background: none;
    border: 2px solid transparent;
    padding: 0;
    text-align: left;
    color: var(--light);
    transition: all 0.3s var(--ease);
    border-radius: 4px;
    overflow: hidden;
}

.video-thumb.active {
    border-color: var(--gold);
}

.thumb-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark-3);
}

.thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out), filter 0.3s;
}

.video-thumb:hover .thumb-img img {
    transform: scale(1.08);
}

.video-thumb:not(.active) .thumb-img img {
    filter: brightness(0.6);
}

.video-thumb:hover .thumb-img img {
    filter: brightness(0.85);
}

.video-thumb.active .thumb-img img {
    filter: brightness(1);
}

.thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-thumb:hover .thumb-play {
    opacity: 1;
}

.video-thumb.active .thumb-play {
    opacity: 0;
}

.thumb-play svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.thumb-title {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.5rem 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumb-year {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    padding: 0.15rem 0.5rem 0.5rem;
}

.video-thumb.active .thumb-title {
    color: var(--gold);
}

/* ===== Press Section ===== */
.press-section {
    padding: 3.5rem 0;
    background: var(--dark);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.press-card {
    padding: 2.5rem;
    border-radius: 4px;
    position: relative;
    transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.press-card:hover {
    transform: translateY(-6px);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.press-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.press-source {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.source-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.03em;
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 3.5rem 0 2rem;
    background: var(--dark-2);
}

.masonry-grid {
    columns: 3;
    column-gap: 1rem;
    margin-top: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s var(--ease), border-color 0.3s;
}

.masonry-item:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.25);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s var(--ease-out);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Caption overlay on hover */
.masonry-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 0.75rem 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    z-index: 2;
    pointer-events: none;
}

.masonry-item:hover .masonry-caption {
    opacity: 1;
}

.masonry-caption span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.masonry-caption svg {
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.8;
}

a.masonry-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Instagram Feed Grid */
.ig-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.ig-feed-grid:empty {
    display: none;
}

.ig-feed-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--dark-3);
    cursor: pointer;
}

.ig-feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.ig-feed-item:hover img {
    transform: scale(1.08);
}

.ig-feed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.ig-feed-item:hover .ig-feed-overlay {
    opacity: 1;
}

.ig-feed-overlay svg {
    width: 28px;
    height: 28px;
    color: white;
}

.ig-feed-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 0.75rem 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ig-feed-item:hover .ig-feed-caption {
    opacity: 1;
}

@media (max-width: 768px) {
    .ig-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

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

/* Instagram CTA */
.instagram-cta {
    margin-top: 3rem;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.ig-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.ig-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    opacity: 0.8;
}

.ig-cta-text {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 400px;
}

.ig-btn {
    margin-top: 0.5rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    cursor: default;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 1rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.6;
    transition: opacity 0.3s, background 0.3s;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ===== Shows ===== */
.shows {
    padding: 3.5rem 0;
    background: var(--dark);
}

.shows-list {
    display: flex;
    flex-direction: column;
}

.show-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease);
}

.show-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.show-item:hover {
    padding-left: 1rem;
    background: rgba(212, 175, 55, 0.03);
}

.show-date {
    text-align: center;
    min-width: 70px;
}

.show-date .day {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.show-date .month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gray);
}

.show-details h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.show-details p {
    font-size: 0.9rem;
    color: var(--gray);
}

.ticket-btn {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    border-radius: 2px;
}

.ticket-btn.past {
    border-color: var(--gray);
    color: var(--gray);
}

.show-item:hover .ticket-btn:not(.past) {
    background: var(--gold);
    color: var(--dark);
}

/* ===== Contact ===== */
.contact {
    padding: 3.5rem 0;
    background: var(--dark-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.newsletter {
    padding: 3rem;
    border-radius: 4px;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    border-radius: 2px;
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter .btn {
    margin-top: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* ===== Footer ===== */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

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

/* Staggered delays for grid children */
.album-grid .reveal:nth-child(1) { transition-delay: 0s; }
.album-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.album-grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.press-grid .reveal:nth-child(1) { transition-delay: 0s; }
.press-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.press-grid .reveal:nth-child(3) { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 400px;
        margin-right: auto;
    }

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

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

    .video-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 25px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .masonry-grid {
        columns: 2;
    }

    /* Hide custom cursor on touch devices */
    .cursor-dot, .cursor-ring {
        display: none;
    }

    body, a, button, input, .tilt-card {
        cursor: auto;
    }

    #navbar {
        padding: 1rem 1.25rem;
    }

    #navbar.scrolled {
        padding: 0.75rem 1.25rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-bg {
        background-position: center center;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .about, .music, .shows, .contact, .video-section, .press-section, .gallery-section {
        padding: 3rem 0;
    }

    .about-stats {
        gap: 2rem;
    }

    .stat-number, .stat-suffix {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.92rem;
    }

    section h2 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .album-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 3rem;
    }

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

    .video-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .thumb-title {
        font-size: 0.7rem;
        padding: 0.4rem 0.3rem 0;
    }

    .thumb-year {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem 0.4rem;
    }

    .press-card {
        padding: 1.5rem;
    }

    .press-card p {
        font-size: 0.88rem;
    }

    .show-item {
        grid-template-columns: auto 1fr;
        gap: 1.25rem;
        padding: 1.2rem 0;
    }

    .show-action {
        grid-column: 1 / -1;
    }

    .show-details h3 {
        font-size: 1rem;
    }

    .show-details p {
        font-size: 0.82rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .newsletter {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        gap: 1.5rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .about, .music, .shows, .contact, .video-section, .press-section, .gallery-section {
        padding: 2.5rem 0;
    }

    .masonry-grid {
        columns: 1;
    }

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

    .singles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-number, .stat-suffix {
        font-size: 1.75rem;
    }

    .show-date .day {
        font-size: 1.5rem;
    }

    .show-date .month {
        font-size: 0.7rem;
    }

    .newsletter {
        padding: 1.5rem 1rem;
    }

    .newsletter-title {
        font-size: 1.25rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .lightbox-prev, .lightbox-next {
        padding: 0.6rem 0.5rem;
        font-size: 1.4rem;
    }

    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }

    .scroll-indicator {
        bottom: 1rem;
    }
}
