/* ===================================
   TUSI MUSIC — Main Stylesheet
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --pink: #FF69B4;
    --pink-dark: #E0559E;
    --pink-light: #FFB6D9;
    --magenta: #FF00FF;
    --magenta-dark: #CC00CC;
    --white: #FFFFFF;
    --off-white: #FFF5FA;
    --gray-light: #F8F0F4;
    --gray: #B0A0A8;
    --gray-dark: #4A3A42;
    --black: #1A1018;
    --font-primary: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 72px;
    --container-max: 1200px;
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(255, 105, 180, 0.1);
    --shadow-md: 0 8px 32px rgba(255, 105, 180, 0.15);
    --shadow-lg: 0 16px 64px rgba(255, 105, 180, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

/* --- Custom Cursor --- */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--pink);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease,
                box-shadow 0.3s ease;
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.4);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 105, 180, 0.35);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                opacity 0.3s ease,
                background 0.3s ease;
    opacity: 0.5;
    background: rgba(255, 105, 180, 0.03);
    backdrop-filter: blur(1px);
}

.cursor.hover {
    width: 14px;
    height: 14px;
    background: var(--magenta);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.cursor-follower.hover {
    width: 56px;
    height: 56px;
    border-color: rgba(255, 0, 255, 0.3);
    background: rgba(255, 0, 255, 0.05);
    opacity: 0.4;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
    * { cursor: auto !important; }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Page Transition Overlay --- */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink);
    z-index: 10000;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}

.page-transition.active {
    animation: pageSlideIn 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards,
               pageSlideOut 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0.5s forwards;
}

@keyframes pageSlideIn {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes pageSlideOut {
    from { transform: scaleY(1); transform-origin: top; }
    to { transform: scaleY(0); transform-origin: top; }
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background var(--transition-med), box-shadow var(--transition-med), backdrop-filter var(--transition-med);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 105, 180, 0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 12px rgba(255, 105, 180, 0.5)); }
}

.nav-logo-img {
    width: 44px;
    height: 44px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast), color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--pink);
    color: var(--white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: transform var(--transition-med);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.open .hamburger {
    background: transparent;
}

.nav-toggle.open .hamburger::before {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .hamburger::after {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--white) 0%, var(--off-white) 40%, var(--pink-light) 100%);
    padding: 0 24px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--magenta), transparent 70%);
    top: -200px;
    right: -200px;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--pink), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: floatShape 20s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pink-dark), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 12s ease-in-out infinite 3s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo-wrapper {
    margin-bottom: 32px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto;
    animation: heroLogoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 32px rgba(255, 105, 180, 0.3));
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 900;
    position: relative;
    display: block;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroTitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    text-align: center;
}

.hero-title-big {
    display: block;
    font-size: clamp(6rem, 22vw, 16rem);
    line-height: 0.85;
    letter-spacing: -4px;
    background: linear-gradient(135deg, var(--black) 0%, var(--pink-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--gray-dark);
    margin-bottom: 40px;
    opacity: 0;
    animation: heroTitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroTitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroTitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    border: 2px solid var(--pink);
    color: var(--pink);
    background: transparent;
}

.btn-outline:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.3);
}

.btn-small {
    font-size: 0.75rem;
    padding: 10px 22px;
}

.btn-full {
    width: 100%;
}

/* ===================================
   SECTION SHARED STYLES
   =================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(odd) {
    background: var(--white);
}

.section:nth-child(even) {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid var(--pink-light);
    border-radius: var(--radius-full);
    background: rgba(255, 105, 180, 0.05);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--black) 0%, var(--pink-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* --- Scroll Animation States --- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   MUSIC SECTION
   =================================== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.music-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.music-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.music-card-art {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.placeholder-art {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        hsl(var(--hue, 330), 80%, 65%) 0%,
        hsl(calc(var(--hue, 330) + 30), 90%, 55%) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: transform var(--transition-slow);
}

.placeholder-art svg {
    width: 48px;
    height: 48px;
}

.music-card:hover .placeholder-art {
    transform: scale(1.08);
}

.play-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 105, 180, 0.4);
    transform: translateY(8px);
    opacity: 0;
    transition: all var(--transition-med);
}

.play-btn svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.music-card:hover .play-btn {
    opacity: 1;
    transform: translateY(0);
}

.play-btn:hover {
    background: var(--magenta);
    transform: scale(1.1) !important;
}

.music-card-info {
    padding: 16px 20px 12px;
}

.music-card-info h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.embed-placeholder {
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    border: 2px dashed rgba(255, 105, 180, 0.2);
}

/* ===================================
   DEMOS SECTION
   =================================== */
.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.demo-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.demo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.demo-card-visual {
    padding: 24px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.demo-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
}

.demo-wave span {
    display: block;
    width: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.7);
    animation: waveBar 1.2s ease-in-out infinite;
}

.demo-wave span:nth-child(1) { height: 60%; animation-delay: 0s; }
.demo-wave span:nth-child(2) { height: 80%; animation-delay: 0.1s; }
.demo-wave span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.demo-wave span:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.demo-wave span:nth-child(5) { height: 90%; animation-delay: 0.4s; }
.demo-wave span:nth-child(6) { height: 50%; animation-delay: 0.5s; }
.demo-wave span:nth-child(7) { height: 85%; animation-delay: 0.6s; }
.demo-wave span:nth-child(8) { height: 65%; animation-delay: 0.7s; }
.demo-wave span:nth-child(9) { height: 95%; animation-delay: 0.8s; }
.demo-wave span:nth-child(10) { height: 55%; animation-delay: 0.9s; }

@keyframes waveBar {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

.demo-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.demo-card-content h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.demo-card-content p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

/* ===================================
   PROMOS SECTION
   =================================== */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.promo-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.promo-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.promo-card-image {
    position: relative;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, hsl(var(--hue, 330), 60%, 85%), hsl(calc(var(--hue, 330) + 20), 70%, 75%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: transform var(--transition-slow);
}

.placeholder-image svg {
    width: 40px;
    height: 40px;
}

.promo-card:hover .placeholder-image {
    transform: scale(1.05);
}

.placeholder-image-lg {
    min-height: 300px;
}

.promo-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}

.promo-card-content h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.promo-card-content p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-placeholder {
    min-height: 100%;
    background: linear-gradient(
        135deg,
        hsl(var(--hue, 330), 60%, 82%) 0%,
        hsl(calc(var(--hue, 330) + 30), 70%, 72%) 100%
    );
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 16, 24, 0.7), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-med);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: transform var(--transition-med);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med);
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--white);
    font-size: 2.5rem;
    z-index: 10;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--pink);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    padding: 16px;
    z-index: 10;
    transition: color var(--transition-fast);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--pink);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 16px;
    font-size: 0.9rem;
}

/* ===================================
   MERCH SECTION
   =================================== */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.merch-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.merch-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.merch-card-image {
    position: relative;
    overflow: hidden;
}

.merch-placeholder {
    min-height: 260px;
    background: linear-gradient(
        135deg,
        hsl(var(--hue, 330), 50%, 90%) 0%,
        hsl(calc(var(--hue, 330) + 20), 60%, 82%) 100%
    );
}

.merch-card:hover .merch-placeholder {
    transform: scale(1.05);
}

.merch-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pink);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.merch-card-info {
    padding: 20px;
    text-align: center;
}

.merch-card-info h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.merch-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 12px;
}

/* ===================================
   SHOWS SECTION
   =================================== */
.shows-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
}

.show-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.show-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding: 12px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    border-radius: var(--radius-sm);
    color: var(--white);
}

.show-month {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.show-day {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.show-info {
    flex: 1;
}

.show-info h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--black);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B0A0A8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-socials h3,
.contact-email h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    transition: all var(--transition-med);
}

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

.social-link:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.contact-email a {
    color: var(--pink);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-email a:hover {
    color: var(--magenta);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 48px 0;
    background: var(--black);
    color: var(--white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

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

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

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

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .promo-card-featured {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 24px;
        transform: translateX(100%);
        transition: transform var(--transition-slow);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 20px;
    }

    .section {
        padding: 80px 0;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .music-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .merch-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .show-card {
        flex-wrap: wrap;
        padding: 20px;
        gap: 16px;
    }

    .show-card .btn {
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .merch-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .merch-placeholder {
        min-height: 180px;
    }
}

/* ===================================
   SUBPAGE HEADER
   =================================== */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(160deg, var(--white) 0%, var(--off-white) 30%, var(--pink-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--magenta), transparent 70%);
    opacity: 0.1;
    top: -200px;
    right: -150px;
    animation: floatShape 15s ease-in-out infinite;
}

.page-header .section-label {
    margin-bottom: 12px;
}

.page-header .section-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 8px;
}

.page-header .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* Subpage content area */
.page-content {
    padding: 80px 0 120px;
}

/* ===================================
   PARALLAX HELPERS (GSAP)
   =================================== */
.parallax-section {
    will-change: transform;
}

/* --- Selection Color --- */
::selection {
    background: var(--pink);
    color: var(--white);
}

::-moz-selection {
    background: var(--pink);
    color: var(--white);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--pink-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink);
}

/* ===================================
   HERO STREAMS COUNTER
   =================================== */
.hero-streams {
    margin-top: 40px;
    opacity: 0;
    animation: heroTitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.streams-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.streams-number {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.streams-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

/* ===================================
   MUSIC PLATFORM TABS
   =================================== */
.music-platform-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.platform-tab {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-light);
    color: var(--gray);
    background: transparent;
    transition: all var(--transition-fast);
    cursor: none;
}

.platform-tab:hover {
    border-color: var(--pink-light);
    color: var(--pink);
}

.platform-tab.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

/* ===================================
   DEMO SUBMISSION SECTION
   =================================== */
.demo-submission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.demo-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-med);
}

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

.demo-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pink), var(--magenta));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 16px;
}

.demo-info-icon svg {
    width: 24px;
    height: 24px;
}

.demo-info-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.demo-info-card ul,
.demo-info-card ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-info-card li {
    font-size: 0.9rem;
    color: var(--gray-dark);
    padding-left: 20px;
    position: relative;
}

.demo-info-card ul li::before {
    content: '\\2713';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 700;
}

.demo-info-card ol {
    counter-reset: step;
}

.demo-info-card ol li {
    counter-increment: step;
}

.demo-info-card ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 700;
    font-size: 0.85rem;
}

.demo-form-panel {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --- TrackStack Embed --- */
.trackstack-embed {
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.trackstack-iframe {
    width: 100%;
    min-height: 700px;
    border: none;
    display: block;
}

/* ===================================
   SOCIAL SECTION
   =================================== */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-med);
    border-left: 4px solid transparent;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.social-card-instagram:hover { border-left-color: #E1306C; }
.social-card-tiktok:hover { border-left-color: #000000; }
.social-card-youtube:hover { border-left-color: #FF0000; }
.social-card-spotify:hover { border-left-color: #1DB954; }
.social-card-soundcloud:hover { border-left-color: #FF5500; }
.social-card-applemusic:hover { border-left-color: #FA243C; }
.social-card-twitter:hover { border-left-color: #000000; }

.social-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    flex-shrink: 0;
    transition: all var(--transition-med);
}

.social-card-icon svg {
    width: 22px;
    height: 22px;
}

.social-card-instagram:hover .social-card-icon { background: #E1306C; color: white; }
.social-card-tiktok:hover .social-card-icon { background: #000000; color: white; }
.social-card-youtube:hover .social-card-icon { background: #FF0000; color: white; }
.social-card-spotify:hover .social-card-icon { background: #1DB954; color: white; }
.social-card-soundcloud:hover .social-card-icon { background: #FF5500; color: white; }
.social-card-applemusic:hover .social-card-icon { background: #FA243C; color: white; }
.social-card-twitter:hover .social-card-icon { background: #000000; color: white; }

.social-card-info {
    flex: 1;
}

.social-card-info h3 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.social-card-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

.social-card-arrow {
    font-size: 1.2rem;
    color: var(--gray-light);
    transition: all var(--transition-med);
}

.social-card:hover .social-card-arrow {
    color: var(--pink);
    transform: translateX(4px);
}

/* ===================================
   EMPTY STATE
   =================================== */
.empty-state {
    text-align: center;
    padding: 60px 24px;
    color: var(--gray);
    grid-column: 1 / -1;
    width: 100%;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    opacity: 0.3;
    color: var(--pink);
}

.empty-state h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.empty-state p {
    font-size: 0.9rem;
}

/* ===================================
   MUSIC EMBED CARDS (Spotify/SC/AM)
   =================================== */
.music-card-embed {
    padding: 0 16px 16px;
    overflow: hidden;
}

.music-card-embed iframe {
    width: 100%;
    border-radius: 12px;
    border: none;
    display: block;
    overflow: hidden;
}

.music-card-platforms {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.platform-link-spotify {
    background: #1DB954;
}

.platform-link-spotify:hover {
    background: #1AA34A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.platform-link-sc {
    background: #FF5500;
}

.platform-link-sc:hover {
    background: #E64D00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
}

.platform-link-apple {
    background: #FA243C;
}

.platform-link-apple:hover {
    background: #E01F35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 36, 60, 0.3);
}

/* Force dynamically populated grids visible */
#socialsGrid:not(:empty),
#socialsGrid:not(:empty) .social-card,
#socialsGrid .social-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.platform-link svg {
    width: 14px;
    height: 14px;
}
