/* ============================================
   CONRAD KIRA - Official Website Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Based on Conrad's visual identity */
    --primary: #98E4C9;
    --primary-dark: #6BC4A6;
    --primary-rgb: 152, 228, 201;

    --secondary: #1A1A2E;
    --background: #0A0A0F;
    --background-alt: #12121A;
    --surface: #1a1a24;

    --text: #FFFFFF;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;

    --accent-gold: #D4A853;
    --accent-amber: #F59E0B;
    --accent-purple: #8B5CF6;
    --accent-blue: #3B82F6;

    /* Gradients */
    --gradient-stage: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --gradient-gold: linear-gradient(135deg, #D4A853 0%, #F59E0B 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #1A1A2E 100%);

    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeLegibility;
}

/* Cross-browser form input baseline (prevents iOS Safari zoom-on-focus) */
input, select, textarea, button {
    font-family: inherit;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

/* Cross-browser backdrop-filter fallback */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .navbar.scrolled,
    .nav-menu.active,
    .latest-release-luxury .featured-release-card {
        background: rgba(10, 10, 15, 0.96);
    }
}

/* Firefox-specific scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 168, 83, 0.4) rgba(255, 255, 255, 0.05);
}

/* WebKit scrollbar (Chrome / Safari / Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 83, 0.4);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 168, 83, 0.6);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

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

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--background);
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 8px 0;
}

.btn-text:hover {
    color: var(--primary-dark);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 0.1em;
    color: var(--text);
}

.logo-japanese {
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 0.2em;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

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

.nav-socials {
    display: flex;
    gap: 16px;
}

.nav-socials a {
    color: var(--text-muted);
}

.nav-socials a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.7) 50%,
        rgba(10, 10, 15, 0.4) 100%
    );
}

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

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero-title {
    margin-bottom: 16px;
}

.title-main {
    display: block;
    font-size: clamp(48px, 10vw, 100px);
    letter-spacing: 0.05em;
    line-height: 0.9;
}

.title-japanese {
    display: block;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-top: 8px;
}

.hero-tagline {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    width: 400px;
    flex-shrink: 0;
}

.hero-portrait {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: rotate(3deg);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

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

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-header-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--text);
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 16px auto 0;
}

/* ============================================
   LATEST RELEASE
   ============================================ */
.latest-release {
    background: var(--background-alt);
}

.release-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.release-artwork iframe {
    border-radius: 12px;
}

.release-info {
    padding: 20px 0;
}

.release-type {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    background: rgba(212, 168, 83, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.release-title {
    font-size: 42px;
    margin-bottom: 8px;
}

.release-year {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.release-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.release-platforms {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 16px;
    background: var(--surface);
    border-radius: 8px;
}

.platform-link:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

/* More Releases Grid */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.release-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.release-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.release-card-player {
    padding: 16px 16px 0;
}

.release-card-player iframe {
    border-radius: 8px;
}

.release-card-info {
    padding: 16px;
}

.release-card-info .release-type {
    margin-bottom: 8px;
}

.release-card-info h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.release-card-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.releases-cta {
    text-align: center;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .releases-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 15, 1) 0%,
        rgba(10, 10, 15, 0.6) 50%,
        rgba(10, 10, 15, 0.3) 100%
    );
}

.page-hero-content {
    padding-bottom: 60px;
}

.page-hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 12px;
}

.page-hero-title {
    font-size: clamp(48px, 8vw, 80px);
    margin-bottom: 8px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* ============================================
   ABOUT BIO SECTION
   ============================================ */
.about-bio {
    background: var(--background);
}

.bio-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.bio-image {
    position: sticky;
    top: 120px;
}

.bio-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bio-image-caption {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.bio-content h2 {
    font-size: 48px;
    margin-bottom: 8px;
}

.bio-subtitle {
    font-size: 16px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.bio-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.bio-text blockquote {
    position: relative;
    padding: 24px 32px;
    margin: 32px 0;
    background: var(--surface);
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
}

.bio-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    background: var(--background-alt);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent-purple));
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 74px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--background-alt);
}

.timeline-date {
    flex-shrink: 0;
    width: 60px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

.timeline-content {
    flex: 1;
    padding-left: 40px;
}

.timeline-content h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery-section {
    background: var(--background);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    font-size: 14px;
    color: var(--text);
}

/* ============================================
   PRESS QUOTES
   ============================================ */
.press-section {
    background: var(--background-alt);
}

.press-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quote-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.quote-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.quote-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
}

.quote-card cite {
    font-size: 14px;
    color: var(--primary);
    font-style: normal;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-stage);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-section .btn-primary {
    background: var(--text);
    color: var(--background);
}

.cta-section .btn-primary:hover {
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-outline {
    border-color: var(--text);
    color: var(--text);
}

.cta-section .btn-outline:hover {
    background: var(--text);
    color: var(--background);
}

/* ============================================
   ABOUT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bio-image {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero-content {
        padding-bottom: 40px;
    }

    .bio-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat {
        flex: 1;
        min-width: 100px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item::before {
        left: 14px;
    }

    .timeline-date {
        display: none;
    }

    .timeline-content {
        padding-left: 50px;
    }

    .timeline-content::before {
        content: attr(data-date);
        display: block;
        font-family: var(--font-mono);
        font-size: 12px;
        color: var(--primary);
        margin-bottom: 8px;
    }

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

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-photo {
    width: 100%;
    border-radius: 12px;
    transform: rotate(-2deg);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--accent-gold);
}

/* ============================================
   DJ SETS SECTION
   ============================================ */
.dj-sets {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.dj-sets-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.85);
}

.dj-sets .container {
    position: relative;
    z-index: 1;
}

.sets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.set-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-base);
}

.set-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.set-date {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.set-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0;
}

.set-duration {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
}

.sets-cta {
    text-align: center;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-list {
    margin-bottom: 32px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px;
    background: var(--surface);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.event-item:hover {
    border-color: var(--primary);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 16px;
    background: var(--background);
    border-radius: 8px;
}

.event-day {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1;
}

.event-month {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.event-details {
    flex: 1;
}

.event-name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.event-venue {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.9);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 42px;
    margin-bottom: 16px;
}

.newsletter-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    outline: none;
    transition: var(--transition-base);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-input:focus {
    border-color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

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

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
}

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

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--background);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-credit a {
    color: var(--primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        width: 300px;
    }

    .release-featured,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* ============================================================
       Mobile Menu — musician artist-site style (2026)
       Featured release tile + numbered nav list + streaming footer + CTA pill
       ============================================================ */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background:
            radial-gradient(circle at 90% 0%, rgba(212, 168, 83, 0.1) 0%, transparent 45%),
            radial-gradient(circle at 10% 95%, rgba(212, 168, 83, 0.05) 0%, transparent 40%),
            rgba(8, 8, 12, 0.99);
        -webkit-backdrop-filter: blur(24px);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 96px 28px 32px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        z-index: 999;
        overflow-y: auto;
        list-style: none;
        margin: 0;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    /* Generic list item animation */
    .nav-menu > li {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        list-style: none;
    }

    .nav-menu.active > li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active > li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active > li:nth-child(2) { transition-delay: 0.10s; }
    .nav-menu.active > li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active > li:nth-child(4) { transition-delay: 0.20s; }
    .nav-menu.active > li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active > li:nth-child(6) { transition-delay: 0.30s; }
    .nav-menu.active > li:nth-child(7) { transition-delay: 0.35s; }

    /* ---- Nav list rows (Home / About / Music / Events / Contact) ---- */
    .nav-menu > li:not(.nav-menu-socials-li) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        font-family: var(--font-heading);
        font-size: clamp(30px, 8vw, 44px);
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        padding: 18px 4px;
        color: rgba(255, 255, 255, 0.96);
        line-height: 1;
        position: relative;
        text-decoration: none;
        transition: color 0.25s ease, padding 0.25s ease;
    }

    .nav-menu .nav-link::after {
        content: "→";
        font-family: var(--font-body);
        font-size: 18px;
        font-weight: 400;
        color: rgba(212, 168, 83, 0.6);
        transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
        opacity: 0;
        transform: translateX(-8px);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--accent-gold, #D4A853);
        padding-left: 12px;
    }

    .nav-menu .nav-link:hover::after,
    .nav-menu .nav-link.active::after {
        opacity: 1;
        transform: translateX(0);
        color: var(--accent-gold, #D4A853);
    }

    /* ---- Streaming / social row ---- */
    .nav-menu-socials {
        display: flex !important;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        margin-top: 28px;
        padding: 0;
    }

    .nav-menu-socials::before {
        content: "Stream · Follow";
        display: block;
        width: 100%;
        font-family: var(--font-body);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        color: rgba(212, 168, 83, 0.85);
        margin-bottom: 12px;
    }

    .nav-menu-socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(212, 168, 83, 0.28);
        border-radius: 50%;
        color: rgba(255, 255, 255, 0.88);
        background: rgba(255, 255, 255, 0.02);
        transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .nav-menu-socials a:hover {
        background: var(--accent-gold, #D4A853);
        color: #0a0a0f;
        border-color: var(--accent-gold, #D4A853);
        transform: translateY(-2px);
    }


    .nav-toggle {
        display: block;
    }

    .nav-socials {
        display: none;
    }

    .hero-image {
        width: 250px;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* Compact footer for mobile */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 8px;
    }

    .footer-logo .logo-text {
        font-size: 20px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-links h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-social {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-social h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .social-icons {
        justify-content: center;
        gap: 12px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding-top: 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    .release-platforms {
        flex-direction: column;
    }

    .platform-link {
        justify-content: center;
    }

    /* Even more compact footer on small phones */
    .footer {
        padding: 32px 0 20px;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer-links h4 {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
    }

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

    .footer-bottom {
        font-size: 11px;
    }
}

/* Mobile menu social icons */
.nav-menu-socials {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu-socials {
        display: flex;
        gap: 20px;
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        color: var(--text-muted);
        transition: var(--transition-base);
    }

    .nav-menu-socials a:hover {
        background: var(--primary);
        color: var(--background);
    }

    /* Stagger animation for socials */
    .nav-menu.active .nav-menu-socials {
        opacity: 1;
    }

    .nav-menu .nav-menu-socials {
        opacity: 0;
        transition: opacity 0.3s ease 0.4s;
    }
}

/* ============================================
   LUXURY MUSIC PAGE STYLES
   ============================================ */

/* Music Hero - Luxury */
.music-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.music-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.music-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.1);
}

.music-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.8) 40%,
        rgba(10, 10, 15, 0.6) 100%
    );
}

/* Decorative Elements */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.decor-line {
    position: absolute;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    width: 1px;
    opacity: 0.3;
}

.decor-line-1 {
    left: 10%;
    top: 0;
    height: 40%;
}

.decor-line-2 {
    right: 15%;
    bottom: 0;
    height: 30%;
    background: linear-gradient(to top, var(--primary), transparent);
}

.decor-circle {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 50%;
}

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

.music-hero-text {
    flex: 1;
}

.hero-label-luxury {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.music-hero-title {
    margin-bottom: 24px;
}

.music-hero-title .title-line {
    display: block;
    font-size: clamp(48px, 12vw, 120px);
    line-height: 0.9;
    letter-spacing: 0.05em;
}

.music-hero-title .title-accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.music-hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.hero-japanese {
    font-size: 48px;
    color: rgba(212, 168, 83, 0.15);
    font-weight: 300;
    letter-spacing: 0.2em;
}

/* Artist Frame */
.music-hero-artist {
    position: relative;
    flex-shrink: 0;
}

.artist-frame {
    position: relative;
    width: 350px;
    height: 450px;
}

.about-hero .artist-frame {
    width: 290px;
    height: 370px;
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-gold);
}

.frame-corner-tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.frame-corner-tr {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.frame-corner-bl {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.frame-corner-br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.artist-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    border-radius: 4px;
}

.artist-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.artist-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(10, 10, 15, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gold);
    border-radius: 30px;
    white-space: nowrap;
}

.badge-icon {
    color: #1ED760;
}

.artist-badge span:last-child {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
}

/* Scroll Indicator Luxury */
.hero-scroll-luxury {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll-luxury span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
}

.scroll-icon {
    color: var(--accent-gold);
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Platforms Luxury */
.platforms-luxury {
    padding: 80px 0;
    background: var(--background);
}

.platforms-header {
    text-align: center;
    margin-bottom: 48px;
}

.platforms-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.platforms-header p {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.platforms-grid-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.platform-card-luxury {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-card-luxury.spotify .platform-glow { background: #1ED760; }
.platform-card-luxury.apple .platform-glow { background: #FC3C44; }
.platform-card-luxury.soundcloud .platform-glow { background: #FF5500; }
.platform-card-luxury.bandcamp .platform-glow { background: #639AA9; }

.platform-card-luxury:hover .platform-glow {
    opacity: 0.3;
}

.platform-card-luxury:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.platform-card-luxury.spotify:hover { border-color: rgba(30, 215, 96, 0.5); }
.platform-card-luxury.apple:hover { border-color: rgba(252, 60, 68, 0.5); }
.platform-card-luxury.soundcloud:hover { border-color: rgba(255, 85, 0, 0.5); }
.platform-card-luxury.bandcamp:hover { border-color: rgba(99, 154, 169, 0.5); }

.platform-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

.platform-card-luxury.spotify svg { color: #1ED760; }
.platform-card-luxury.apple svg { color: #FC3C44; }
.platform-card-luxury.soundcloud svg { color: #FF5500; }
.platform-card-luxury.bandcamp svg { color: #639AA9; }

.platform-content .platform-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.platform-action {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.platform-card-luxury:hover .platform-action {
    opacity: 1;
    transform: translateY(0);
}

/* Featured Release Luxury */
.featured-luxury {
    position: relative;
    background: var(--background-alt);
    overflow: hidden;
}

.featured-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 168, 83, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(152, 228, 201, 0.03) 0%, transparent 50%);
}

.featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.featured-visual {
    position: relative;
}

.vinyl-container {
    position: relative;
}

.vinyl-disc {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 50%;
    z-index: 0;
    animation: spinVinyl 8s linear infinite;
    animation-play-state: paused;
}

.vinyl-container:hover .vinyl-disc {
    animation-play-state: running;
}

@keyframes spinVinyl {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.vinyl-grooves {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at center,
        transparent 0px,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label span {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--background);
}

.album-cover {
    position: relative;
    z-index: 1;
    margin-left: 60px;
}

.album-cover iframe {
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.featured-content {
    padding: 20px 0;
}

.release-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.label-year {
    padding: 4px 10px;
    background: rgba(212, 168, 83, 0.15);
    border-radius: 4px;
}

.featured-title {
    font-size: 56px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}

.featured-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.release-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text);
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.featured-actions {
    display: flex;
    gap: 16px;
}

/* Luxury Buttons */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: var(--background);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.3);
}

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

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--background);
}

.btn-white {
    background: var(--text);
    color: var(--background);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: var(--text);
    color: var(--background);
}

/* Discography Luxury */
.discography-luxury {
    background: var(--background);
    padding-top: 120px;
}

.section-header-luxury {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 60px;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 72px;
    font-weight: 700;
    color: rgba(212, 168, 83, 0.15);
    line-height: 1;
}

.section-number.light {
    color: rgba(255, 255, 255, 0.1);
}

.section-titles {
    padding-top: 16px;
}

.section-label-lux {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.section-title-lux {
    font-size: 48px;
    color: var(--text);
}

.section-intro {
    flex: 1;
    padding-top: 20px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 400px;
    margin-left: auto;
}

/* Premium Release Card */
.release-premium {
    position: relative;
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
}

.release-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.release-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.release-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    opacity: 0.95;
}

.release-premium-content {
    position: relative;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    padding: 48px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.release-premium-content.reverse {
    grid-template-columns: 1fr 400px;
}

.release-player-wrap iframe {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.release-info-premium {
    padding: 16px 0;
}

.release-badge-lux {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 6px;
}

.badge-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

.badge-separator {
    color: rgba(212, 168, 83, 0.3);
}

.badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.release-info-premium h3 {
    font-size: 42px;
    margin-bottom: 8px;
}

.release-subtitle {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.release-meta-lux {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.release-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Luxury Tracklist */
.tracklist-luxury {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.track-lux {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
}

.track-lux:hover {
    padding-left: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.track-num-lux {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-gold);
    width: 24px;
}

.track-title {
    flex: 1;
    font-size: 14px;
    color: var(--text);
}

.track-time {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
}

/* Press Quote Luxury */
.press-quote-luxury {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(152, 228, 201, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
}

.press-quote-luxury p {
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 12px;
}

.press-quote-luxury cite {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-style: normal;
    color: var(--primary);
}

.cite-dash {
    width: 16px;
    height: 1px;
    background: var(--primary);
}

/* Popular Tracks Grid */
.popular-tracks-section {
    margin-top: 60px;
    padding: 56px 48px;
    background:
        radial-gradient(circle at 0% 0%, rgba(212, 168, 83, 0.08), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(152, 228, 201, 0.06), transparent 55%),
        linear-gradient(135deg, rgba(20, 20, 25, 0.92), rgba(12, 12, 16, 0.96));
    border: 1px solid rgba(212, 168, 83, 0.18);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.popular-tracks-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 48px;
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, var(--accent-gold), transparent);
    border-radius: 0 0 3px 3px;
}

.popular-tracks-header {
    margin-bottom: 40px;
    max-width: 720px;
}

.popular-tracks-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin: 16px 0 12px;
    letter-spacing: -0.02em;
}

.popular-tracks-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.popular-tracks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.popular-track-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-track-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.popular-track-item iframe {
    display: block;
}

@media (max-width: 768px) {
    .popular-tracks-section {
        padding: 40px 24px;
    }
    .popular-tracks-section::before {
        left: 24px;
    }
    .popular-tracks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Singles Showcase */
.singles-showcase {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
}

.title-line-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.singles-grid-luxury {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.single-card-luxury {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.single-card-luxury:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.single-visual {
    padding: 20px 20px 0;
}

.single-player-lux iframe {
    border-radius: 12px;
}

.single-details {
    padding: 20px;
}

.single-genre {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(152, 228, 201, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.single-details h4 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.single-details p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.single-year {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-gold);
}

/* DJ Sets Luxury */
.dj-sets-luxury {
    position: relative;
    padding: 120px 0;
}

.dj-sets-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.dj-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.85) 100%
    );
}

.dj-sets-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.dj-header-content h2 {
    font-size: 56px;
    margin: 16px 0 8px;
}

.dj-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

.dj-header-image {
    position: relative;
    width: 200px;
    height: 200px;
}

.dj-artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.dj-img-frame {
    position: absolute;
    inset: -8px;
    border: 1px solid var(--accent-gold);
    border-radius: 16px;
    z-index: -1;
}

.dj-sets-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.dj-player-main.full-width {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.player-frame {
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary));
    border-radius: 20px;
}

.player-frame iframe {
    border-radius: 16px;
}

.sets-list-luxury {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.set-item-lux {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.set-item-lux:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateX(8px);
}

.set-number {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    width: 32px;
}

.set-content {
    flex: 1;
}

.set-content h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.set-meta-lux {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.meta-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--primary);
    background: rgba(152, 228, 201, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.set-genres {
    font-size: 12px;
    color: var(--text-muted);
}

.set-play {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.set-item-lux:hover .set-play {
    background: var(--primary);
    color: var(--background);
}

.dj-cta {
    text-align: center;
}

/* Soundtracks Luxury */
.soundtracks-luxury {
    background: var(--background-alt);
}

.soundtracks-header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
}

.soundtracks-intro {
    flex: 1;
    max-width: 600px;
}

.soundtracks-intro h2 {
    font-size: 48px;
    margin: 8px 0 16px;
}

.soundtracks-intro p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.soundtracks-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.soundtrack-player-lux.full-width-player {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.soundtrack-player-frame {
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-gold), #b8893f 50%, var(--primary));
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    position: relative;
}

.soundtrack-player-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 50%);
    pointer-events: none;
    border-radius: 18px;
}

.soundtrack-player-frame iframe {
    border-radius: 14px;
    display: block;
}

.soundtrack-player-lux {
    position: relative;
}

.soundtrack-player-lux iframe {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.player-label {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.credits-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.credit-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

.credit-year-lux {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    width: 48px;
}

.credit-content {
    flex: 1;
}

.credit-content h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.credit-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.credit-icon {
    color: var(--text-dim);
}

.imdb-link {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 24px;
}

/* Premium CTA */
.cta-premium {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(212, 168, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.cta-premium-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.cta-artist-image {
    position: relative;
    flex-shrink: 0;
}

.cta-portrait {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.cta-image-frame {
    position: absolute;
    inset: -12px;
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    z-index: -1;
}

.cta-text {
    flex: 1;
}

.cta-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 16px;
}

.cta-text h2 {
    font-size: 56px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 400px;
}

.cta-buttons-lux {
    display: flex;
    gap: 16px;
}

/* Luxury Music Page Responsive */
@media (max-width: 1024px) {
    .music-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 48px;
    }

    .hero-label-luxury {
        justify-content: center;
    }

    .artist-frame {
        width: 280px;
        height: 360px;
    }

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

    .featured-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vinyl-disc {
        display: none;
    }

    .album-cover {
        margin-left: 0;
    }

    .section-header-luxury {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        margin-bottom: 32px;
    }

    .section-header-luxury .section-number {
        font-size: 44px;
        line-height: 0.9;
        margin-bottom: 4px;
    }

    .section-titles {
        padding-top: 0;
        text-align: center;
    }

    .section-title-lux {
        font-size: 36px;
        line-height: 1.05;
    }

    .section-intro {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding-top: 4px;
        font-size: 15px;
        text-align: center;
    }

    .gallery-grid-luxury {
        gap: 14px;
    }

    .gallery-item-lux.gallery-large,
    .gallery-item-lux.gallery-wide,
    .gallery-item-lux {
        height: 220px;
    }

    .release-premium-content,
    .release-premium-content.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dj-sets-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .dj-header-image {
        width: 150px;
        height: 150px;
    }

    .dj-sets-content {
        grid-template-columns: 1fr;
    }

    .soundtracks-header {
        flex-direction: column;
    }

    .soundtracks-content {
        grid-template-columns: 1fr;
    }

    .cta-premium-content {
        flex-direction: column;
        text-align: center;
        gap: 48px;
    }

    .cta-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons-lux {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .music-hero {
        min-height: auto;
        padding: 96px 0 56px;
        align-items: flex-start;
    }

    .music-hero-content {
        padding-top: 16px;
        gap: 28px;
    }

    .hero-decor {
        display: none;
    }

    .artist-frame {
        width: 220px;
        height: 280px;
    }

    .frame-corner {
        width: 40px;
        height: 40px;
    }

    .music-hero-title .title-line {
        font-size: 48px;
    }

    .hero-japanese {
        font-size: 32px;
    }

    .hero-scroll-luxury {
        display: none;
    }

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

    .platform-card-luxury {
        padding: 24px 16px;
    }

    .platform-content svg {
        width: 36px;
        height: 36px;
    }

    .featured-title {
        font-size: 36px;
    }

    .release-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: 80px;
    }

    .section-number {
        font-size: 48px;
    }

    .section-title-lux {
        font-size: 36px;
    }

    .release-premium-content {
        padding: 24px;
    }

    .release-info-premium h3 {
        font-size: 28px;
    }

    .singles-grid-luxury {
        grid-template-columns: 1fr;
    }

    .dj-header-content h2 {
        font-size: 36px;
    }

    .soundtracks-intro h2 {
        font-size: 36px;
    }

    .cta-portrait {
        width: 250px;
        height: 320px;
    }

    .cta-text h2 {
        font-size: 36px;
    }

    .cta-buttons-lux {
        flex-direction: column;
    }

    .cta-buttons-lux .btn-luxury {
        width: 100%;
        justify-content: center;
    }
}

/* Streaming Platforms Section - Original (keeping for compatibility) */
.platforms-section {
    padding: 60px 0;
    background: var(--background);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-base);
}

.platform-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    background: rgba(var(--primary-rgb), 0.05);
}

.platform-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
}

.platform-icon.spotify {
    background: rgba(30, 215, 96, 0.1);
    color: #1ED760;
}

.platform-card:hover .platform-icon.spotify {
    background: rgba(30, 215, 96, 0.2);
}

.platform-icon.apple {
    background: rgba(252, 60, 68, 0.1);
    color: #FC3C44;
}

.platform-card:hover .platform-icon.apple {
    background: rgba(252, 60, 68, 0.2);
}

.platform-icon.soundcloud {
    background: rgba(255, 85, 0, 0.1);
    color: #FF5500;
}

.platform-card:hover .platform-icon.soundcloud {
    background: rgba(255, 85, 0, 0.2);
}

.platform-icon.bandcamp {
    background: rgba(99, 154, 169, 0.1);
    color: #639AA9;
}

.platform-card:hover .platform-icon.bandcamp {
    background: rgba(99, 154, 169, 0.2);
}

.platform-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* Featured Release Section */
.featured-release-section {
    background: var(--background-alt);
}

.featured-release-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-player iframe {
    border-radius: 12px;
}

.featured-info {
    padding: 20px 0;
}

.release-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    background: rgba(212, 168, 83, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.featured-info h3 {
    font-size: 42px;
    margin-bottom: 16px;
}

.release-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.release-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.meta-value {
    font-size: 14px;
    color: var(--text);
}

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

/* Discography Section */
.discography-section {
    background: var(--background);
}

.discography-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.release-card-large {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    padding: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-base);
}

.release-card-large:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
}

.release-player iframe {
    border-radius: 12px;
}

.release-details {
    padding: 12px 0;
}

.release-details h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.release-year {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.release-details .release-description {
    margin-bottom: 20px;
}

/* Track List */
.track-list {
    margin: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.track {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.track:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 8px;
    padding-right: 8px;
    margin: 0 -8px;
}

.track-num {
    width: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
}

.track-name {
    flex: 1;
    font-size: 14px;
    color: var(--text);
}

.track-duration {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.release-quote {
    position: relative;
    padding: 16px 20px;
    margin-top: 20px;
    background: rgba(var(--primary-rgb), 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.release-quote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 12px;
    color: var(--primary);
}

/* Subsection Title */
.subsection-title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Singles Grid */
.singles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.single-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
}

.single-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.single-player {
    padding: 16px 16px 0;
}

.single-info {
    padding: 16px;
}

.single-info h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.single-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* DJ Sets Section */
.dj-sets-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.dj-sets-section .dj-sets-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.92);
}

.dj-sets-section .container {
    position: relative;
    z-index: 1;
}

.dj-sets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.dj-set-featured iframe {
    border-radius: 12px;
}

.dj-sets-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dj-set-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition-base);
    cursor: pointer;
}

.dj-set-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateX(4px);
}

.set-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--primary);
    flex-shrink: 0;
}

.set-details {
    flex: 1;
}

.set-details h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.set-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--primary);
}

.set-genre {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Soundtracks Section */
.soundtracks-section {
    background: var(--background-alt);
}

.soundtracks-intro {
    max-width: 700px;
    margin-bottom: 32px;
}

.soundtracks-intro p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.soundtracks-player {
    margin-bottom: 40px;
}

.soundtracks-player iframe {
    border-radius: 12px;
}

.soundtrack-credits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.credit-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
}

.credit-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.credit-year {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.credit-card h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.credit-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.soundtracks-cta {
    text-align: center;
}

/* Music Page Responsive */
@media (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-release-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .dj-sets-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .platforms-section {
        padding: 40px 0;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .platform-card {
        padding: 16px;
    }

    .platform-icon {
        width: 48px;
        height: 48px;
    }

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

    .platform-name {
        font-size: 12px;
    }

    .featured-info h3 {
        font-size: 32px;
    }

    .release-meta {
        flex-direction: column;
        gap: 16px;
    }

    .release-links {
        flex-direction: column;
    }

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

    .release-card-large {
        padding: 20px;
    }

    .release-details h3 {
        font-size: 24px;
    }

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

    .dj-set-card {
        padding: 12px 16px;
    }

    .set-icon {
        width: 40px;
        height: 40px;
    }

    .set-details h4 {
        font-size: 14px;
    }

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

    .credit-card {
        padding: 16px;
    }

    .credit-card h4 {
        font-size: 15px;
    }
}

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

    .soundtrack-credits {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LUXURY EVENTS PAGE STYLES
   ============================================ */

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

.events-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.events-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(0.9);
}

.events-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.85) 50%,
        rgba(10, 10, 15, 0.95) 100%
    );
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

.particle-2 {
    top: 40%;
    right: 20%;
    animation: float 8s ease-in-out infinite 1s;
}

.particle-3 {
    bottom: 30%;
    left: 25%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }
}

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

.events-hero-text {
    flex: 1;
}

.events-hero-title {
    margin-bottom: 24px;
}

.events-hero-title .title-line {
    display: block;
    font-size: clamp(48px, 10vw, 100px);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.events-hero-title .title-accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Artist Circle Frame */
.events-hero-artist {
    position: relative;
    flex-shrink: 0;
}

.artist-frame-circle {
    position: relative;
    width: 300px;
    height: 300px;
}

.artist-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
}

.circle-ring {
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.circle-ring-2 {
    inset: -30px;
    border-color: rgba(212, 168, 83, 0.15);
    animation-delay: 1s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

/* Live Indicator */
.live-indicator {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(10, 10, 15, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    border-radius: 30px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(152, 228, 201, 0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(152, 228, 201, 0);
    }
}

/* Hero Stats Bar */
.hero-stats-bar {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 48px;
    background: rgba(10, 10, 15, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 16px;
}

.stat-block {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider-v {
    width: 1px;
    height: 40px;
    background: rgba(212, 168, 83, 0.3);
}

/* Upcoming Events Section */
.upcoming-events {
    background: var(--background);
}

/* Event Category Navigation Pills */
.event-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 56px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    width: fit-content;
}

.event-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.event-category-pill:hover {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(212, 168, 83, 0.08);
}

.event-category-pill.active {
    color: var(--background);
    background: var(--accent-gold);
    box-shadow: 0 6px 18px rgba(212, 168, 83, 0.35);
}

.event-category-pill .cat-pill-icon {
    display: inline-flex;
}

/* Event Category Blocks */
.event-category-block {
    margin-bottom: 72px;
    padding-top: 8px;
    scroll-margin-top: 100px;
}

.event-category-block:last-of-type {
    margin-bottom: 40px;
}

.event-category-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.event-category-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.18), rgba(212, 168, 83, 0.05));
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 14px;
    color: var(--accent-gold);
}

.event-category-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.event-category-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1;
}

.event-category-count {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.event-empty-state {
    background:
        radial-gradient(circle at 0% 0%, rgba(212, 168, 83, 0.06), transparent 55%),
        linear-gradient(135deg, rgba(20, 20, 25, 0.6), rgba(12, 12, 16, 0.85));
    border: 1px dashed rgba(212, 168, 83, 0.25);
    border-radius: 20px;
    padding: 56px 40px;
    text-align: center;
}

.empty-state-inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.empty-state-inner svg {
    color: var(--accent-gold);
    opacity: 0.7;
}

.empty-state-inner h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.empty-state-inner p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.empty-state-inner .btn-luxury {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .event-category-nav {
        width: 100%;
        border-radius: 16px;
        padding: 8px;
        gap: 6px;
        justify-content: center;
        margin: 24px 0 40px;
    }
    .event-category-pill {
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: 0.05em;
        gap: 6px;
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }
    .event-category-pill .cat-pill-icon svg {
        width: 14px;
        height: 14px;
    }
    .event-category-header {
        grid-template-columns: auto 1fr;
        gap: 14px;
        padding-bottom: 16px;
        margin-bottom: 20px;
    }
    .event-category-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }
    .event-category-icon svg {
        width: 20px;
        height: 20px;
    }
    .event-category-title {
        font-size: 22px;
    }
    .event-category-label {
        font-size: 10px;
    }
    .event-category-count {
        grid-column: 1 / -1;
        justify-self: start;
        font-size: 11px;
        padding: 6px 12px;
    }
    .event-category-block {
        margin-bottom: 48px;
    }
    .event-empty-state {
        padding: 32px 20px;
    }
    .empty-state-inner h4 {
        font-size: 18px;
    }
    .empty-state-inner p {
        font-size: 14px;
    }
}

.events-list-luxury {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

/* Event Card Luxury */
.event-card-luxury {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card-luxury:hover {
    border-color: var(--accent-gold);
    transform: translateX(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.event-card-luxury.event-featured {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.05) 0%, var(--surface) 100%);
    border-color: rgba(212, 168, 83, 0.2);
}

.event-card-luxury.event-past {
    opacity: 0.7;
}

.event-card-luxury.event-past:hover {
    opacity: 1;
}

.event-date-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.event-month {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--background);
}

.event-day {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--background);
    line-height: 1;
}

.event-info {
    flex: 1;
}

.event-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    background: rgba(212, 168, 83, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.event-badge.past {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.1);
}

.event-info h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-venue {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.event-venue svg {
    opacity: 0.7;
}

.event-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.event-action {
    flex-shrink: 0;
}

/* Notify Signup */
.notify-signup {
    margin-top: 40px;
}

.notify-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(152, 228, 201, 0.05) 0%, var(--surface) 100%);
    border: 1px solid rgba(152, 228, 201, 0.2);
    border-radius: 16px;
}

.notify-content svg {
    color: var(--primary);
    flex-shrink: 0;
}

.notify-text {
    flex: 1;
}

.notify-text h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.notify-text p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Festivals Section */
.festivals-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.festivals-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.festivals-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.festivals-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.9) 100%);
}

.festivals-header {
    margin-bottom: 60px;
}

.festivals-header h2 {
    font-size: 56px;
    margin: 16px 0 8px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.festivals-intro {
    font-size: 18px;
    color: var(--text-muted);
}

/* Festival Cards */
.festivals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.festival-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.festival-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.festival-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.festival-logo span {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--background);
}

.festival-info {
    flex: 1;
}

.festival-info h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.festival-location {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.festival-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.festival-year {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: rgba(212, 168, 83, 0.2);
    margin-top: 16px;
    text-align: right;
}

/* Performance Gallery */
.performance-gallery {
    background: var(--background);
}

.gallery-grid-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
}

.gallery-item-lux {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item-lux img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item-lux.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item-lux:hover .gallery-caption {
    transform: translateY(0);
}

.caption-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.caption-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Venue Types */
.venue-types {
    background: var(--background-alt);
}

.venues-header {
    text-align: center;
    margin-bottom: 60px;
}

.venues-header h2 {
    font-size: 42px;
    margin-bottom: 8px;
}

.venues-header p {
    font-size: 16px;
    color: var(--text-muted);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.venue-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.venue-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.venue-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(152, 228, 201, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.venue-card:hover .venue-icon {
    background: var(--primary);
    color: var(--background);
}

.venue-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.venue-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Booking Section */
.booking-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.booking-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.2;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.9) 100%);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.booking-info {
    padding: 20px 0;
}

.booking-info h2 {
    font-size: 56px;
    margin: 16px 0;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-intro {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text);
}

.highlight-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Management Info */
.management-info {
    padding: 24px;
    background: rgba(212, 168, 83, 0.05);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 12px;
}

.mgmt-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.mgmt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.mgmt-link:hover {
    color: var(--primary);
}

.mgmt-link svg {
    opacity: 0.7;
}

/* Booking Form */
.booking-form-wrap {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(212, 168, 83, 0.05);
}

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

.form-group select option {
    background: var(--background);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

/* Tech Rider Section */
.tech-rider-section {
    background: var(--background);
    padding: 60px 0;
}

.tech-rider-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.tech-info h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tech-info p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 500px;
}

/* Events Page Responsive */
@media (max-width: 1024px) {
    .events-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 48px;
    }

    .hero-label-luxury {
        justify-content: center;
    }

    .artist-frame-circle {
        width: 250px;
        height: 250px;
    }

    .hero-stats-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 60px;
        width: 100%;
        max-width: 500px;
        justify-content: center;
    }

    .festivals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .gallery-item-lux.gallery-large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .gallery-item-lux.gallery-wide {
        grid-column: span 2;
        height: 200px;
    }

    .gallery-item-lux {
        height: 200px;
    }

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

    .booking-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .booking-info h2 {
        font-size: 42px;
    }

    .tech-rider-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .events-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .events-hero-title .title-line {
        font-size: 48px;
    }

    .events-hero-subtitle {
        font-size: 14px;
    }

    .artist-frame-circle {
        width: 200px;
        height: 200px;
    }

    .circle-ring {
        inset: -10px;
    }

    .circle-ring-2 {
        inset: -20px;
    }

    .live-indicator {
        font-size: 10px;
        padding: 10px 16px;
    }

    .hero-stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .stat-divider-v {
        display: none;
    }

    .event-card-luxury {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
        align-items: stretch;
    }

    .event-date-block {
        width: auto;
        min-width: 120px;
        height: auto;
        padding: 12px 20px;
        align-self: center;
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .event-month {
        font-size: 14px;
        letter-spacing: 0.08em;
    }

    .event-day {
        font-size: 18px;
        line-height: 1.1;
    }

    .event-venue {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .event-info {
        width: 100%;
    }

    .event-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .event-action .btn-luxury {
        width: 100%;
        max-width: 280px;
    }

    .notify-content {
        flex-direction: column;
        text-align: center;
    }

    .festivals-header h2 {
        font-size: 36px;
    }

    .festival-card {
        padding: 24px;
    }

    .gallery-grid-luxury {
        grid-template-columns: 1fr;
    }

    .gallery-item-lux.gallery-large,
    .gallery-item-lux.gallery-wide,
    .gallery-item-lux {
        grid-column: span 1;
        height: 250px;
    }

    .venues-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .venue-card {
        padding: 24px 16px;
    }

    .venue-icon {
        width: 60px;
        height: 60px;
    }

    .booking-info h2 {
        font-size: 32px;
    }

    .booking-form-wrap {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .events-hero-title .title-line {
        font-size: 36px;
    }

    .stat-num {
        font-size: 28px;
    }

    .event-info h3 {
        font-size: 20px;
    }

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

    .venue-card h3 {
        font-size: 18px;
    }
}

/* ============================================
   LUXURY MEDIA PAGE STYLES
   ============================================ */

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

.media-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.media-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(30%) contrast(1.1);
}

.media-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.6) 0%,
        rgba(10, 10, 15, 0.85) 60%,
        rgba(10, 10, 15, 1) 100%
    );
}

/* Hero Decorative Elements */
.hero-decor-media {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.decor-frame {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    transform: rotate(45deg);
}

.decor-text {
    position: absolute;
    bottom: 20%;
    left: 5%;
    font-size: 120px;
    font-weight: 300;
    color: rgba(212, 168, 83, 0.05);
    writing-mode: vertical-rl;
    letter-spacing: 0.3em;
}

.media-hero-content {
    text-align: center;
    padding: 0 24px;
    padding-top: 80px;
}

.media-hero-title {
    margin-bottom: 16px;
}

.media-hero-title .title-line {
    display: block;
    font-size: clamp(56px, 12vw, 120px);
    line-height: 0.95;
    letter-spacing: 0.05em;
}

.media-hero-title .title-outline {
    -webkit-text-stroke: 2px var(--accent-gold);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.media-hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Media Nav Pills */
.media-nav-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pill-link {
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.pill-link:hover {
    color: var(--accent-gold);
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--accent-gold);
}

/* Press Section */
.press-section {
    background: var(--background);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Press Card */
.press-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.press-card.press-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.05) 0%, var(--surface) 100%);
    border-color: rgba(212, 168, 83, 0.2);
}

.press-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    background: rgba(212, 168, 83, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
}

.press-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.press-logo span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--background);
}

.press-logo.voice {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
}

.press-logo.imdb {
    background: linear-gradient(135deg, #F5C518 0%, #DBA506 100%);
}

.press-logo.imdb span {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 700;
}

.press-logo.midi {
    background: linear-gradient(135deg, var(--primary) 0%, #5BB899 100%);
}

.press-content {
    flex: 1;
}

.press-publication {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.press-content h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.press-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.press-date {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
}

.press-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.press-card:hover .press-arrow {
    background: var(--accent-gold);
    color: var(--background);
}

/* Press Quote Block */
.press-quote-block {
    position: relative;
    padding: 48px;
    background: linear-gradient(135deg, rgba(152, 228, 201, 0.05) 0%, var(--surface) 100%);
    border: 1px solid rgba(152, 228, 201, 0.2);
    border-radius: 20px;
    text-align: center;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 120px;
    color: rgba(152, 228, 201, 0.1);
    line-height: 0.5;
    margin-bottom: 16px;
}

.press-quote-block blockquote {
    font-size: 24px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 24px;
}

.press-quote-block cite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-style: normal;
    color: var(--primary);
}

/* Videos Section */
.videos-section {
    position: relative;
    background: var(--background-alt);
    overflow: hidden;
}

.videos-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.videos-gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(152, 228, 201, 0.05) 0%, transparent 50%);
}

.videos-section .container {
    position: relative;
    z-index: 1;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

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

@media (max-width: 600px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Card - Premium Design */
.video-card {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 168, 83, 0.1);
}

.video-card:hover::before {
    opacity: 1;
}

.video-card.video-featured {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(212, 168, 83, 0.05) 100%);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.video-info {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.video-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    flex: 1;
}

.video-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.videos-cta {
    text-align: center;
}

/* NEW Video Thumbnail Grid */
.videos-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.video-thumb-card {
    position: relative;
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-thumb-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-thumb-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.video-thumb-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.video-thumb-info {
    padding: 20px;
}

.video-thumb-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: var(--text);
}

.video-thumb-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* NEW Shorts Thumbnail Grid */
.shorts-grid-new {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.short-thumb-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.short-thumb-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.1);
}

.short-thumbnail {
    position: relative;
    padding-bottom: 177.78%;
    background: #000;
}

.short-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.short-thumb-card:hover .short-thumbnail img {
    transform: scale(1.1);
}

.short-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.short-thumb-card:hover .short-play-btn {
    opacity: 1;
    background: rgba(255, 0, 0, 0.9);
}

.shorts-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-player {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* Video/Shorts Grid Responsive */
@media (max-width: 1200px) {
    .shorts-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .videos-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .shorts-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .shorts-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .video-modal-content {
        width: 95vw;
    }
    .video-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .shorts-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .short-thumb-card {
        border-radius: 12px;
    }
}

/* Subscribe CTA Box */
.subscribe-cta-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    margin-top: 48px;
}

.subscribe-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
}

.subscribe-text {
    flex: 1;
}

.subscribe-text h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text);
    margin-bottom: 8px;
}

.subscribe-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.btn-youtube {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
    flex-shrink: 0;
}

.btn-youtube:hover {
    background: #cc0000;
    border-color: #cc0000;
}

/* YouTube Shorts Section */
.shorts-section {
    position: relative;
    background: var(--background);
    padding: 100px 0;
    overflow: hidden;
}

.shorts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.short-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30, 30, 40, 1) 0%, rgba(20, 20, 25, 1) 100%);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.short-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(212, 168, 83, 0.3), transparent, rgba(255, 0, 0, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.short-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 168, 83, 0.15);
}

.short-card:hover::before {
    opacity: 1;
}

.short-embed {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    background: #000;
}

.short-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.short-card-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 10;
}

.short-card-label svg {
    color: #FF0000;
}

.shorts-cta {
    text-align: center;
    margin-top: 32px;
}

/* Shorts Section Header */
.shorts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.shorts-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #FF0000;
}

/* Shorts Responsive */
@media (max-width: 1400px) {
    .shorts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .shorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .short-card {
        border-radius: 16px;
    }

    .subscribe-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }

    .subscribe-text h3 {
        font-size: 20px;
    }

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

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

/* Photo Gallery */
.gallery-section {
    background: var(--background);
}

.photo-gallery-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
    margin-bottom: 32px;
}

.gallery-photo {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-photo:hover img {
    transform: scale(1.1);
}

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

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

.photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.photo-credit {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.photo-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
}

.gallery-credit {
    text-align: center;
}

.gallery-credit p {
    font-size: 14px;
    color: var(--text-dim);
}

/* Press Kit Section */
.press-kit-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.press-kit-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.press-kit-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.15;
    filter: grayscale(50%);
}

.press-kit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.9) 100%);
}

.press-kit-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.press-kit-info h2 {
    font-size: 56px;
    margin: 16px 0;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.press-kit-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.press-kit-includes h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 16px;
}

.press-kit-includes ul {
    list-style: none;
    padding: 0;
}

.press-kit-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.press-kit-includes li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Download Card */
.press-kit-download {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.download-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.download-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 50%;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.download-card h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.download-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-press {
    padding: 32px;
    background: rgba(152, 228, 201, 0.05);
    border: 1px solid rgba(152, 228, 201, 0.2);
    border-radius: 16px;
}

.contact-press h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-press p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-link:hover {
    gap: 12px;
    color: var(--accent-gold);
}

/* Social CTA Section */
.social-cta-section {
    background: var(--background-alt);
    padding: 80px 0;
}

.social-cta-content {
    text-align: center;
}

.social-cta-content h2 {
    font-size: 42px;
    margin-bottom: 8px;
}

.social-cta-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.social-links-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.social-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.social-link-card.instagram:hover {
    border-color: #E4405F;
    background: rgba(228, 64, 95, 0.05);
}

.social-link-card.instagram svg { color: #E4405F; }

.social-link-card.tiktok:hover {
    border-color: #00F2EA;
    background: rgba(0, 242, 234, 0.05);
}

.social-link-card.tiktok svg { color: #00F2EA; }

.social-link-card.youtube:hover {
    border-color: #FF0000;
    background: rgba(255, 0, 0, 0.05);
}

.social-link-card.youtube svg { color: #FF0000; }

.social-link-card.twitter:hover {
    border-color: #1DA1F2;
    background: rgba(29, 161, 242, 0.05);
}

.social-link-card.twitter svg { color: var(--text); }

.social-link-card span:first-of-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.social-link-card .handle {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

/* Media Page Responsive */
@media (max-width: 1024px) {
    .press-grid {
        grid-template-columns: 1fr;
    }

    .press-card.press-featured {
        grid-column: span 1;
    }

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

    .video-card.video-featured {
        grid-row: span 1;
    }

    .video-featured .video-embed {
        padding-bottom: 56.25%;
    }

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

    .press-kit-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .press-kit-info h2 {
        font-size: 42px;
    }

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

@media (max-width: 768px) {
    .media-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .media-hero-title .title-line {
        font-size: 48px;
    }

    .media-hero-title .title-outline {
        -webkit-text-stroke: 1px var(--accent-gold);
    }

    .hero-decor-media {
        display: none;
    }

    .media-nav-pills {
        gap: 8px;
    }

    .pill-link {
        padding: 10px 16px;
        font-size: 11px;
    }

    .press-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .press-arrow {
        display: none;
    }

    .press-quote-block {
        padding: 32px 24px;
    }

    .press-quote-block blockquote {
        font-size: 18px;
    }

    .quote-mark {
        font-size: 80px;
    }

    .photo-gallery-luxury {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-photo.gallery-photo-tall,
    .gallery-photo.gallery-photo-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .press-kit-info h2 {
        font-size: 32px;
    }

    .download-card {
        padding: 32px 24px;
    }

    .social-cta-content h2 {
        font-size: 32px;
    }

    .social-links-luxury {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .social-link-card {
        padding: 24px 16px;
    }
}

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

    .press-content h3 {
        font-size: 18px;
    }

    .video-info h3 {
        font-size: 16px;
    }
}

/* ============================================
   LUXURY CONTACT PAGE STYLES
   ============================================ */

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

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(1.25) contrast(1.05) saturate(1.05);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.18) 0%,
        rgba(10, 10, 15, 0.42) 60%,
        rgba(10, 10, 15, 0.95) 100%
    );
}

/* Collapsible "View More" pattern */
.collapsible {
    position: relative;
}

.js-enabled .collapsible[data-collapsed="true"] {
    max-height: var(--collapsed-h, 380px);
    overflow: hidden;
}

/* Without JS, hide the toggle button so users see full content unobstructed */
html:not(.js-enabled) .view-more-toggle { display: none; }

.collapsible[data-collapsed="false"] {
    max-height: none;
}

.view-more-toggle {
    position: relative;
    z-index: 2;
    display: block;
    margin: 24px auto 0;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(212, 168, 83, 0.5);
    border-radius: 999px;
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.view-more-toggle:hover {
    background: var(--accent-gold);
    color: var(--background);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(212, 168, 83, 0.3);
}

.view-more-toggle-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.92);
}

.view-more-toggle-light:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--background);
    border-color: rgba(255, 255, 255, 0.95);
}

/* Visible focus outlines for keyboard users (:focus-visible only) */
*:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Visinova credit in footer */
.footer-credit-visinova {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.35);
}

.footer-credit-visinova a {
    color: rgba(212, 168, 83, 0.75);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-credit-visinova a:hover {
    color: var(--accent-gold);
}

/* Honeypot field — hidden from real users */
.form-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(152, 228, 201, 0.08), rgba(212, 168, 83, 0.06));
    border: 1px solid rgba(152, 228, 201, 0.25);
    border-radius: 16px;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--accent-mint, #98e4c9);
    margin: 0 0 12px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin: 0;
}

/* Contact Decorative Elements */
.contact-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.decor-line-h {
    position: absolute;
    top: 30%;
    left: 0;
    width: 20%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
}

.decor-circle-outline {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 50%;
}

.contact-hero-content {
    text-align: center;
    padding: 0 24px;
    padding-top: 80px;
}

.contact-hero-title {
    margin-bottom: 16px;
}

.contact-hero-title .title-line {
    display: block;
    font-size: clamp(48px, 10vw, 100px);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.contact-hero-title .title-accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Contact Main Section */
.contact-main {
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-side {
    padding-right: 40px;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.contact-card.contact-card-featured {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, var(--surface) 100%);
    border-color: rgba(212, 168, 83, 0.2);
}

.contact-card.contact-card-featured:hover {
    border-color: var(--accent-gold);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 12px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-card-icon.booking {
    background: rgba(152, 228, 201, 0.1);
    color: var(--primary);
}

.contact-card-icon.press {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.contact-card-icon.collab {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.contact-card-content {
    flex: 1;
}

.contact-card-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.contact-card-content h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-card-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    gap: 10px;
}

/* Location Block */
.location-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(152, 228, 201, 0.05);
    border: 1px solid rgba(152, 228, 201, 0.2);
    border-radius: 12px;
}

.location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(152, 228, 201, 0.15);
    border-radius: 50%;
    color: var(--primary);
}

.location-text {
    display: flex;
    flex-direction: column;
}

.location-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.location-city {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.location-note {
    font-size: 12px;
    color: var(--primary);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.form-card-header {
    margin-bottom: 32px;
}

.form-card-header h3 {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-card-header p {
    font-size: 14px;
    color: var(--text-muted);
}

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

/* Form Checkbox */
.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.form-note svg {
    color: var(--text-dim);
    flex-shrink: 0;
}

.form-note span {
    font-size: 12px;
    color: var(--text-dim);
}

/* Social Connect Section */
.social-connect-section {
    position: relative;
    background: var(--background-alt);
    overflow: hidden;
}

.social-connect-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.social-gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(152, 228, 201, 0.05) 0%, transparent 50%);
}

.social-connect-content {
    position: relative;
    z-index: 1;
}

.social-connect-header {
    text-align: center;
    margin-bottom: 48px;
}

.social-connect-header h2 {
    font-size: 42px;
    margin: 16px 0 8px;
}

.social-connect-header p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Social Grid Luxury */
.social-grid-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.social-card-lux {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card-lux:hover .social-card-bg {
    opacity: 1;
}

.social-card-lux.instagram .social-card-bg {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1) 0%, rgba(131, 58, 180, 0.1) 100%);
}

.social-card-lux.tiktok .social-card-bg {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.1) 0%, rgba(255, 0, 80, 0.1) 100%);
}

.social-card-lux.youtube .social-card-bg {
    background: rgba(255, 0, 0, 0.08);
}

.social-card-lux.twitter .social-card-bg {
    background: rgba(29, 161, 242, 0.08);
}

.social-card-lux.spotify .social-card-bg {
    background: rgba(30, 215, 96, 0.08);
}

.social-card-lux.soundcloud .social-card-bg {
    background: rgba(255, 85, 0, 0.08);
}

.social-card-lux:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.social-card-lux.instagram:hover { border-color: #E4405F; }
.social-card-lux.tiktok:hover { border-color: #00F2EA; }
.social-card-lux.youtube:hover { border-color: #FF0000; }
.social-card-lux.twitter:hover { border-color: #1DA1F2; }
.social-card-lux.spotify:hover { border-color: #1ED760; }
.social-card-lux.soundcloud:hover { border-color: #FF5500; }

.social-card-lux.instagram svg { color: #E4405F; }
.social-card-lux.tiktok svg { color: #00F2EA; }
.social-card-lux.youtube svg { color: #FF0000; }
.social-card-lux.twitter svg { color: var(--text); }
.social-card-lux.spotify svg { color: #1ED760; }
.social-card-lux.soundcloud svg { color: #FF5500; }

.social-card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.social-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.social-handle {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

/* Quick Links Section */
.quick-links-section {
    background: var(--background);
    padding: 60px 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.quick-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(152, 228, 201, 0.1);
    border-radius: 12px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    background: var(--primary);
    color: var(--background);
}

.quick-link-text {
    flex: 1;
}

.quick-link-text h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.quick-link-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.quick-link-arrow {
    color: var(--text-dim);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-side {
        padding-right: 0;
    }

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

    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .contact-hero-title .title-line {
        font-size: 48px;
    }

    .contact-decor {
        display: none;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .contact-card-icon {
        margin: 0 auto;
    }

    .contact-card-link {
        justify-content: center;
    }

    .location-block {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-card {
        padding: 24px;
    }

    .form-card-header h3 {
        font-size: 24px;
    }

    .social-connect-header h2 {
        font-size: 32px;
    }

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

    .social-card-lux {
        padding: 28px 16px;
    }

    .social-card-lux svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title .title-line {
        font-size: 36px;
    }

    .contact-card-content h3 {
        font-size: 16px;
    }

    .social-grid-luxury {
        grid-template-columns: 1fr 1fr;
    }

    .social-name {
        font-size: 14px;
    }

    .quick-link-card {
        padding: 20px;
    }

    .quick-link-text h3 {
        font-size: 14px;
    }
}

/* ===== HOME PAGE LUXURY STYLES ===== */

/* Home Hero Section */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--background);
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

/* Hero Decorative Elements */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.decor-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.decor-line-1 {
    top: 30%;
    left: 0;
    width: 200px;
    height: 1px;
    animation: lineSlide 8s ease-in-out infinite;
}

.decor-line-2 {
    bottom: 25%;
    right: 0;
    width: 150px;
    height: 1px;
    animation: lineSlide 8s ease-in-out infinite reverse;
}

.decor-circle {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 50%;
    animation: circleRotate 20s linear infinite;
}

@keyframes lineSlide {
    0%, 100% { transform: translateX(0); opacity: 0.3; }
    50% { transform: translateX(50px); opacity: 0.6; }
}

@keyframes circleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Home Hero Content */
.home-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
}

.home-hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-label-luxury {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.home-hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.home-hero-title .title-line {
    font-family: var(--font-display);
    font-size: 100px;
    letter-spacing: 8px;
    color: var(--text);
    text-transform: uppercase;
}

.home-hero-title .title-accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-tagline {
    font-size: 20px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.hero-japanese-text {
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 4px;
    opacity: 0.7;
}

.home-hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

/* Home Hero Artist Section */
.home-hero-artist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.artist-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(30, 215, 96, 0.1);
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 30px;
    font-size: 13px;
    color: #1ED760;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.artist-badge:hover {
    background: rgba(30, 215, 96, 0.2);
    border-color: #1ED760;
    transform: translateY(-2px);
}

.artist-badge.spotify-badge {
    padding: 12px 24px;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.artist-badge.spotify-badge svg {
    flex-shrink: 0;
}

.badge-icon {
    display: flex;
    align-items: center;
}

/* Hero Scroll Indicator */
.hero-scroll-luxury {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Latest Release Section - Luxury */
.latest-release-luxury {
    background: var(--background);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.latest-release-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.latest-release-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.55;
    filter: grayscale(20%) contrast(1.08) saturate(0.95) brightness(0.9);
    transform: scale(1.04);
}

.latest-release-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        var(--background) 0%,
        rgba(10, 10, 10, 0.35) 25%,
        rgba(10, 10, 10, 0.25) 50%,
        rgba(10, 10, 10, 0.35) 75%,
        var(--background) 100%
    );
}

.latest-release-bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 45%,
        rgba(10, 10, 10, 0.55) 100%
    );
}

.latest-release-luxury .container {
    position: relative;
    z-index: 1;
}

.latest-release-luxury .featured-release-card {
    background: rgba(20, 20, 20, 0.72);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Featured Release Card */
.featured-release-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.featured-release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
}

.featured-release-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-release-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.release-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.label-year {
    padding: 4px 10px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 4px;
    color: var(--gold);
    font-size: 11px;
}

.featured-title {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 2px;
    color: var(--text);
}

.featured-quote {
    font-style: italic;
    font-size: 18px;
    color: var(--gold);
    padding-left: 20px;
    border-left: 2px solid var(--gold);
}

.featured-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.featured-actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

/* Releases Grid - Luxury */
.releases-grid-luxury {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.release-card-lux {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.release-card-lux:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.release-card-player {
    padding: 20px 20px 0;
}

.release-card-details {
    padding: 20px;
}

.release-type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(152, 228, 201, 0.1);
    border: 1px solid rgba(152, 228, 201, 0.3);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.release-card-details h4 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.release-card-details p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Full Soundtracks Collection */
.full-collection-card {
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(
        140deg,
        rgba(28, 28, 32, 0.85) 0%,
        rgba(18, 18, 22, 0.78) 100%
    );
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
}

.full-collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--gold));
}

.full-collection-card::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
    pointer-events: none;
}

.full-collection-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.full-collection-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.full-collection-info .release-type-badge {
    margin-bottom: 16px;
}

.full-collection-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    letter-spacing: 1.5px;
    margin: 0 0 16px;
    line-height: 1.05;
    text-transform: uppercase;
}

.full-collection-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 440px;
}

.full-collection-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 440px;
}

.fc-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.fc-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.full-collection-link {
    align-self: flex-start;
}

.full-collection-player {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    line-height: 0;
}

.full-collection-player iframe {
    display: block;
    width: 100%;
}

@media (max-width: 960px) {
    .full-collection-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .full-collection-info {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .full-collection-card {
        padding: 28px;
        border-radius: 18px;
    }
    .full-collection-stats {
        gap: 20px;
    }
    .fc-stat-num {
        font-size: 22px;
    }
    .full-collection-link {
        width: 100%;
        text-align: center;
    }
}

/* About Teaser Section - Luxury */
.about-teaser-luxury {
    position: relative;
    padding: 120px 0;
    background: var(--surface);
    overflow: hidden;
}

.about-teaser-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-teaser-image {
    display: flex;
    justify-content: center;
}

.about-image-frame {
    position: relative;
    display: inline-block;
}

.about-photo-lux {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.image-frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
}

.about-teaser-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text-lux {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
}

.about-text-lux strong {
    color: var(--gold);
}

/* About Stats */
.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 16px 0;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
    letter-spacing: 1px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* DJ Sets Home Section */
.dj-sets-home {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.dj-sets-home-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dj-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.dj-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        var(--background) 0%,
        rgba(10, 10, 10, 0.8) 50%,
        var(--background) 100%
    );
}

.dj-sets-home .container {
    position: relative;
    z-index: 1;
}

.section-intro {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin-top: 20px;
}

/* DJ Sets Grid */
.sets-grid-home {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

.set-card-lux {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 28px;
    background: rgba(26, 26, 26, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.set-card-lux:hover {
    border-color: var(--gold);
    background: rgba(26, 26, 26, 0.95);
}

.set-card-header {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 24px;
    align-items: center;
}

.set-card-external {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.set-card-external:hover {
    background: var(--gold);
    color: var(--background);
    transform: scale(1.08);
}

.set-card-lux .set-card-player {
    padding: 0;
    line-height: 0;
}

.set-card-lux .set-card-player iframe {
    display: block;
    width: 100%;
}

.set-card-number {
    font-family: var(--font-display);
    font-size: 36px;
    color: rgba(212, 168, 83, 0.3);
    letter-spacing: 2px;
}

.set-card-lux:hover .set-card-number {
    color: var(--gold);
}

.set-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.set-date-lux {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.set-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text);
    letter-spacing: 1px;
}

.set-meta-tags {
    display: flex;
    gap: 8px;
}

.meta-tag {
    padding: 4px 10px;
    background: rgba(152, 228, 201, 0.08);
    border: 1px solid rgba(152, 228, 201, 0.2);
    border-radius: 4px;
    font-size: 11px;
    color: var(--text-muted);
}

.set-card-play {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
}

.set-card-lux:hover .set-card-play {
    background: var(--gold);
    color: var(--background);
    transform: scale(1.1);
}

.sets-cta-home {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* Events Home Section */
.events-home {
    background: var(--background);
    padding: 120px 0;
}

.events-list-home {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
}

.event-card-home {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card-home:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.event-date-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px;
    background: rgba(152, 228, 201, 0.08);
    border: 1px solid rgba(152, 228, 201, 0.2);
    border-radius: 12px;
}

.event-month {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary);
    letter-spacing: 2px;
}

.event-year {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.event-info-home {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-info-home h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
}

.event-venue-home {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.event-venue-home svg {
    color: var(--primary);
}

.event-desc {
    font-size: 13px;
    color: var(--text-dim);
}

/* Newsletter Luxury Section */
.newsletter-luxury {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.newsletter-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.newsletter-luxury .container {
    position: relative;
    z-index: 1;
}

.newsletter-content-lux {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.newsletter-title-lux {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 3px;
    color: var(--text);
}

.newsletter-text-lux {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 400px;
}

.newsletter-form-lux {
    width: 100%;
    max-width: 500px;
    margin-top: 16px;
}

.newsletter-input-wrap {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
}

.newsletter-input-lux {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 15px;
    outline: none;
}

.newsletter-input-lux::placeholder {
    color: var(--text-dim);
}

.newsletter-form-lux .btn-luxury {
    border-radius: 50px;
    padding: 14px 28px;
}

/* Home Page Responsive Styles */
@media (max-width: 1200px) {
    .home-hero-content {
        gap: 60px;
        padding: 0 24px;
    }

    .home-hero-title .title-line {
        font-size: 80px;
    }

    .featured-release-card {
        gap: 60px;
        padding: 40px;
    }
}

@media (max-width: 1024px) {
    .home-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .home-hero-text {
        align-items: center;
    }

    .home-hero-cta {
        justify-content: center;
    }

    .home-hero-artist {
        order: -1;
    }

    .featured-release-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-release-info {
        align-items: center;
    }

    .release-label {
        justify-content: center;
    }

    .featured-quote {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--gold);
        padding-top: 16px;
    }

    .featured-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-teaser-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-teaser-content {
        align-items: center;
    }

    .about-teaser-content .section-header-luxury {
        justify-content: center;
    }

    .about-stats {
        justify-content: center;
    }

    .releases-grid-luxury {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .home-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .home-hero-content {
        gap: 32px;
        padding: 0 16px;
    }

    .home-hero-title .title-line {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .home-hero-tagline {
        font-size: 14px;
    }

    .hero-japanese-text {
        font-size: 14px;
        margin-top: 8px;
    }

    .hero-decor {
        display: none;
    }

    .hero-scroll-luxury {
        display: none;
    }

    /* Mobile hero artist section */
    .home-hero-artist {
        margin-bottom: 24px;
        gap: 20px;
    }

    .home-hero-artist .artist-frame {
        width: 200px;
        height: 200px;
    }

    .home-hero-artist .artist-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 12px;
    }

    /* Mobile CTA buttons */
    .home-hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .home-hero-cta .btn-luxury {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .latest-release-luxury,
    .about-teaser-luxury,
    .dj-sets-home,
    .events-home,
    .newsletter-luxury {
        padding: 80px 0;
    }

    .featured-release-card {
        padding: 20px;
        margin: 0 -8px;
    }

    .featured-release-info {
        padding: 0 4px;
    }

    .featured-title {
        font-size: 32px;
    }

    .featured-quote {
        font-size: 16px;
        padding-left: 16px;
    }

    .featured-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .featured-actions {
        flex-direction: column;
        gap: 12px;
    }

    .featured-actions .btn-luxury {
        width: 100%;
        justify-content: center;
    }

    .set-card-lux {
        padding: 20px;
    }

    .set-card-header {
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
    }

    .set-card-number {
        font-size: 36px;
    }

    .set-card-external {
        width: 36px;
        height: 36px;
    }

    .event-card-home {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .event-date-home {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }

    .event-venue-home {
        justify-content: center;
    }

    .event-card-home .btn-luxury {
        width: 100%;
        justify-content: center;
    }

    .newsletter-title-lux {
        font-size: 36px;
    }

    .newsletter-input-wrap {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
    }

    .newsletter-form-lux .btn-luxury {
        width: 100%;
        justify-content: center;
        border-radius: 50px;
    }
}

@media (max-width: 480px) {
    .home-hero {
        padding: 90px 0 50px;
    }

    .home-hero-content {
        gap: 24px;
        padding: 0 12px;
    }

    .home-hero-title .title-line {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .home-hero-tagline {
        font-size: 13px;
    }

    .hero-japanese-text {
        font-size: 12px;
    }

    .home-hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .home-hero-cta .btn-luxury {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-label-luxury {
        font-size: 10px;
    }

    .label-line {
        width: 20px;
    }

    /* Mobile artist section */
    .home-hero-artist {
        margin-bottom: 20px;
        gap: 16px;
    }

    .home-hero-artist .artist-frame {
        width: 160px;
        height: 160px;
    }

    .home-hero-artist .artist-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 12px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .home-hero-artist .artist-badge svg {
        width: 20px;
        height: 20px;
    }

    .featured-title {
        font-size: 28px;
    }

    .featured-quote {
        font-size: 15px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .stat-value {
        font-size: 28px;
    }

    .set-card-content h3 {
        font-size: 18px;
    }

    .set-card-play {
        width: 48px;
        height: 48px;
    }

    .event-info-home h3 {
        font-size: 20px;
    }

    .newsletter-title-lux {
        font-size: 28px;
    }
}

/* ===== ABOUT PAGE LUXURY STYLES ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 72vh;
    padding: 100px 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--background);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: brightness(1.05) contrast(1.02);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 65% 40%, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.35) 60%, rgba(10, 10, 10, 0.75) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.55) 100%);
}

/* About Hero Decorative Elements */
.about-hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.decor-circle-about {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 50%;
    animation: circleRotate 25s linear infinite;
}

/* About Hero Content */
.about-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.about-hero-title .title-line {
    font-family: var(--font-display);
    font-size: 72px;
    letter-spacing: 5px;
    color: var(--text);
    text-transform: uppercase;
}

.about-hero-tagline {
    font-size: 18px;
    color: var(--text-muted);
    letter-spacing: 3px;
}

.about-hero-artist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.artist-photo-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(212, 168, 83, 0.35);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Discreet vertical "spine" credit — sits at bottom-right of the artist frame */
.artist-frame {
    position: relative;
}

.artist-photo-credit--side {
    position: absolute;
    bottom: 14px;
    right: -22px;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-family: var(--font-mono, "Space Mono", monospace);
    pointer-events: none;
    z-index: 3;
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.artist-frame:hover .artist-photo-credit--side {
    opacity: 0.95;
}

.artist-photo-credit--side .credit-rule {
    width: 1px;
    height: 22px;
    background: linear-gradient(180deg, transparent 0%, var(--gold, #d4a853) 50%, transparent 100%);
    opacity: 0.8;
}

.artist-photo-credit--side .credit-label {
    display: none;
}

.artist-photo-credit--side .credit-name {
    font-family: "Georgia", "Times New Roman", serif;
    font-style: italic;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--gold, #d4a853);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.artist-photo-credit--side .credit-name::before {
    content: "Photo · ";
    opacity: 0.6;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 7.5px;
}

@media (max-width: 900px) {
    .artist-photo-credit--side {
        position: absolute;
        bottom: 8px;
        right: 10px;
        transform: none;
        writing-mode: horizontal-tb;
        gap: 6px;
        opacity: 0.6;
    }
    .artist-photo-credit--side .credit-rule {
        width: 16px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, var(--gold, #d4a853) 50%, transparent 100%);
    }
    .artist-photo-credit--side .credit-name {
        font-size: 9px;
    }
    .artist-photo-credit--side .credit-name::before {
        font-size: 7px;
    }
}

[data-hidden="true"][hidden] {
    display: none !important;
}

/* Discreet credit mark for background images — matches the spine treatment used by the artist portrait */
.bg-photo-credit {
    position: absolute;
    right: 18px;
    bottom: 16px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-family: "Georgia", "Times New Roman", serif;
    font-style: italic;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--gold, #d4a853);
    text-transform: none;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    user-select: none;
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.bg-photo-credit::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold, #d4a853) 60%, var(--gold, #d4a853) 100%);
    opacity: 0.8;
    flex: 0 0 auto;
}

.bg-photo-credit:hover,
*:hover > .bg-photo-credit {
    opacity: 0.95;
}

@media (max-width: 640px) {
    .bg-photo-credit {
        right: 12px;
        bottom: 12px;
        font-size: 10px;
        gap: 6px;
    }
    .bg-photo-credit::before {
        width: 14px;
    }
}

/* About Hero Stats Bar */
.about-hero-stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 24px 48px;
    background: rgba(26, 26, 26, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
}

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

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
    letter-spacing: 2px;
}

.hero-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Bio Section - Luxury */
.about-bio-luxury {
    background: var(--background);
    padding: 120px 0;
}

.bio-grid-luxury {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 48px;
}

.bio-image-luxury {
    position: sticky;
    top: 120px;
}

.bio-image-frame {
    position: relative;
}

.bio-photo {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.bio-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.4;
}

.bio-image-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-dim);
}

.bio-image-credit svg {
    color: var(--primary);
}

/* Bio Content Luxury */
.bio-content-luxury {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bio-lead {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text);
}

.text-gold {
    color: var(--gold);
    font-weight: 600;
}

.text-primary {
    color: var(--primary);
    font-weight: 600;
}

.bio-quote-card {
    position: relative;
    padding: 32px 32px 32px 48px;
    background: var(--surface);
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
}

.bio-quote-card .quote-icon {
    position: absolute;
    top: -16px;
    left: 16px;
    color: var(--gold);
    opacity: 0.5;
}

.bio-quote-card blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-muted);
}

.bio-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bio-paragraphs p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
}

.bio-quote-inline {
    position: relative;
    padding: 24px 32px;
    background: rgba(212, 168, 83, 0.05);
    border-radius: 12px;
    font-size: 17px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--gold);
    opacity: 0.5;
    line-height: 0;
    vertical-align: middle;
}

/* Tokyo Section */
.tokyo-section {
    position: relative;
    padding: 120px 0;
    background: var(--surface);
    overflow: hidden;
}

.tokyo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tokyo-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(152, 228, 201, 0.08) 0%, transparent 70%);
}

.tokyo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tokyo-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tokyo-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tokyo-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
}

.tokyo-influences {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.influence-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(152, 228, 201, 0.08);
    border: 1px solid rgba(152, 228, 201, 0.2);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text);
}

.tag-icon {
    display: flex;
    align-items: center;
    color: var(--primary);
}

/* Tokyo Visual */
.tokyo-visual {
    display: flex;
    justify-content: center;
}

.tokyo-image-stack {
    position: relative;
}

.tokyo-image-main {
    position: relative;
    z-index: 1;
}

.tokyo-photo {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.tokyo-japanese-text {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    writing-mode: vertical-rl;
}

.tokyo-japanese-text span {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--text-dim);
    opacity: 0.5;
}

/* Timeline Section - Luxury */
.timeline-section-luxury {
    background: var(--background);
    padding: 120px 0;
}

.timeline-luxury {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--primary), var(--gold));
    opacity: 0.3;
}

.timeline-item-lux {
    display: flex;
    gap: 40px;
    padding: 0 0 48px 0;
    position: relative;
}

.timeline-marker {
    position: relative;
    width: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 8px;
}

.marker-year {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 2px;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    right: -49px;
    top: 12px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--background);
    z-index: 1;
}

.timeline-card {
    flex: 1;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    border-color: var(--gold);
    transform: translateX(8px);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.timeline-card-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
}

.timeline-badge {
    padding: 4px 12px;
    background: rgba(152, 228, 201, 0.1);
    border: 1px solid rgba(152, 228, 201, 0.3);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    white-space: nowrap;
}

.timeline-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Gallery Section - Luxury */
.gallery-section-luxury {
    background: var(--surface);
    padding: 120px 0;
}

.gallery-grid-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery-item-lux {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-lux.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-lux img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-caption {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* ===== Editorial Mosaic Gallery ===== */
.gallery-section-luxury .container {
    position: relative;
}

.gallery-mosaic {
    --tile-radius: 4px;
    --tile-gap: 14px;
    --row-h: clamp(150px, 18vw, 230px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: var(--row-h);
    grid-auto-flow: dense;
    gap: var(--tile-gap);
    margin-top: 56px;
    position: relative;
}

.gallery-mosaic::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 0;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent, #d4a853), transparent);
    opacity: 0.7;
}

.gallery-tile {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--tile-radius);
    background: #0a0a0a;
    cursor: pointer;
    isolation: isolate;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 32px -18px rgba(0, 0, 0, 0.65);
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.5s ease;
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-tile--feature {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-tile--tall {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-tile--wide {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.02);
    transform: scale(1.001);
    transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
}

.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 10, 0) 45%, rgba(8, 8, 10, 0.78) 100%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.25) 0%, rgba(8, 8, 10, 0) 30%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0.85;
    z-index: 1;
}

.gallery-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 0 rgba(212, 168, 83, 0.18) inset, 0 24px 48px -20px rgba(0, 0, 0, 0.75);
}

.gallery-tile:hover img {
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.05);
}

.gallery-tile:hover::after {
    opacity: 1;
}

.gallery-tile__caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: end;
    transform: translateY(6px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.45s ease;
}

.gallery-tile:hover .gallery-tile__caption,
.gallery-tile:focus-within .gallery-tile__caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-tile__num {
    grid-row: 1 / span 2;
    align-self: center;
    font-family: "Georgia", "Times New Roman", serif;
    font-style: italic;
    font-size: 26px;
    line-height: 1;
    color: var(--accent, #d4a853);
    letter-spacing: 0.02em;
    padding-right: 14px;
    border-right: 1px solid rgba(212, 168, 83, 0.45);
}

.gallery-tile__title {
    grid-column: 2;
    grid-row: 1;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.gallery-tile__sub {
    grid-column: 2;
    grid-row: 2;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.gallery-tile--feature .gallery-tile__title {
    font-size: 22px;
}

.gallery-tile--feature .gallery-tile__num {
    font-size: 34px;
}

@keyframes gallery-tile-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gallery-tile {
    animation: gallery-tile-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.gallery-tile:nth-child(1) { animation-delay: 0.00s; }
.gallery-tile:nth-child(2) { animation-delay: 0.06s; }
.gallery-tile:nth-child(3) { animation-delay: 0.12s; }
.gallery-tile:nth-child(4) { animation-delay: 0.18s; }
.gallery-tile:nth-child(5) { animation-delay: 0.24s; }
.gallery-tile:nth-child(6) { animation-delay: 0.30s; }
.gallery-tile:nth-child(7) { animation-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    .gallery-tile,
    .gallery-tile img,
    .gallery-tile__caption {
        animation: none;
        transition: none;
    }
}

@media (max-width: 1024px) {
    .gallery-mosaic {
        grid-template-columns: repeat(4, 1fr);
        --row-h: clamp(130px, 20vw, 200px);
    }
    .gallery-tile--feature {
        grid-column: span 4;
        grid-row: span 2;
    }
    .gallery-tile--wide {
        grid-column: span 2;
    }
    .gallery-tile--tall {
        grid-row: span 2;
    }
}

@media (max-width: 640px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        --row-h: clamp(160px, 42vw, 220px);
        gap: 10px;
    }
    .gallery-tile,
    .gallery-tile--feature,
    .gallery-tile--wide,
    .gallery-tile--tall {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-tile--feature,
    .gallery-tile--tall {
        grid-row: span 2;
    }
    .gallery-tile__caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        transform: translateY(0);
        opacity: 1;
    }
    .gallery-tile__num { font-size: 22px; padding-right: 10px; }
    .gallery-tile__title { font-size: 14px; }
    .gallery-tile--feature .gallery-tile__title { font-size: 18px; }
}

/* Press Section - Luxury */
.press-section-luxury {
    position: relative;
    padding: 120px 0;
    background: var(--background);
    overflow: hidden;
}

.press-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.press-gradient {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
}

.press-quotes-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.quote-card-lux {
    position: relative;
    padding: 40px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.quote-card-lux:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.quote-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-card-lux:hover .quote-card-accent {
    opacity: 1;
}

.quote-icon-lux {
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.quote-card-lux blockquote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.quote-card-lux cite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 16px;
    font-style: normal;
    letter-spacing: 2px;
    color: var(--gold);
}

.cite-line {
    width: 24px;
    height: 1px;
    background: var(--gold);
}

/* CTA Section - Luxury */
.cta-section-luxury {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.cta-section-luxury .container {
    position: relative;
    z-index: 1;
}

.cta-content-luxury {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-title-lux {
    font-family: var(--font-display);
    font-size: 56px;
    letter-spacing: 3px;
    color: var(--text);
}

.cta-text-lux {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
}

.cta-buttons-luxury {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

/* About Page Responsive */
@media (max-width: 1200px) {
    .about-hero-content {
        gap: 60px;
        padding: 0 24px;
    }

    .about-hero-title .title-line {
        font-size: 72px;
    }

    .bio-grid-luxury {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .about-hero-text {
        align-items: center;
    }

    .about-hero-artist {
        order: -1;
    }

    .about-hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 48px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .bio-grid-luxury {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bio-image-luxury {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }

    .tokyo-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .tokyo-visual {
        order: -1;
    }

    .tokyo-japanese-text {
        right: -30px;
    }

    .press-quotes-luxury {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 90px 0 60px;
    }

    .about-hero-title .title-line {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .about-hero-tagline {
        font-size: 16px;
    }

    .about-hero-decor {
        display: none;
    }

    .about-hero-stats {
        padding: 20px 24px;
        gap: 24px;
    }

    .hero-stat-value {
        font-size: 24px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .about-bio-luxury,
    .tokyo-section,
    .timeline-section-luxury,
    .gallery-section-luxury,
    .press-section-luxury,
    .cta-section-luxury {
        padding: 80px 0;
    }

    .bio-lead {
        font-size: 18px;
    }

    .bio-quote-card {
        padding: 24px;
    }

    .timeline-luxury {
        margin-left: 0;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-marker {
        width: 60px;
    }

    .marker-year {
        font-size: 18px;
    }

    .timeline-marker::after {
        right: -17px;
        width: 12px;
        height: 12px;
    }

    .timeline-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .tokyo-japanese-text {
        display: none;
    }

    .cta-title-lux {
        font-size: 40px;
    }

    .cta-buttons-luxury {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons-luxury .btn-luxury {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-title .title-line {
        font-size: 36px;
    }

    .about-hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .timeline-item-lux {
        flex-direction: column;
        gap: 12px;
        padding-left: 48px;
    }

    .timeline-marker {
        justify-content: flex-start;
        width: auto;
    }

    .timeline-marker::after {
        left: -36px;
        right: auto;
    }

    .gallery-grid-luxury {
        grid-template-columns: 1fr;
    }

    .gallery-item-lux.gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cta-title-lux {
        font-size: 32px;
    }
}

/* ===== LIGHTBOX / MODAL STYLES ===== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--background);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--background);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        position: fixed;
    }

    .lightbox-caption {
        bottom: 20px;
        padding: 0 20px;
    }
}

/* =====================================================
   MOBILE: GLOBAL CENTERED LAYOUT
   Everything stacks and centers below 768px for clean
   single-column reading flow on phones.
   ===================================================== */
@media (max-width: 768px) {
    /* === Artistic compact musician footer === */
    .footer {
        padding: 40px 0 24px !important;
        position: relative;
    }
    .footer::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212,168,83,0.6), transparent);
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 20px !important;
        padding-bottom: 18px;
    }

    /* Brand block — wordmark + tagline only, no extra padding */
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-logo .logo-text {
        font-size: 22px;
        letter-spacing: 0.18em;
    }
    .footer-tagline {
        font-size: 11px;
        letter-spacing: 0.08em;
        color: rgba(255,255,255,0.55);
        max-width: 280px;
        margin: 0;
    }

    /* Hide the section headers (NAVIGATE / LISTEN / CONNECT) on mobile */
    .footer-links h4,
    .footer-social h4 {
        display: none;
    }

    /* Navigate links — inline pill row with dot separators */
    .footer-links {
        display: block;
        text-align: center;
    }
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .footer-links ul li {
        position: relative;
        padding: 0 12px;
        margin: 0;
    }
    .footer-links ul li:not(:last-child)::after {
        content: "·";
        position: absolute;
        right: -3px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(212,168,83,0.45);
        font-size: 14px;
    }
    .footer-links ul li a {
        font-size: 12px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-weight: 600;
        color: rgba(255,255,255,0.78);
        transition: color 0.2s ease;
    }
    .footer-links ul li a:hover {
        color: var(--accent-gold);
    }

    /* Social icons — circular, gold-glow row */
    .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-social .social-icons {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 4px;
    }
    .footer-social .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(212,168,83,0.08);
        border: 1px solid rgba(212,168,83,0.25);
        border-radius: 50%;
        color: rgba(255,255,255,0.85);
        transition: all 0.25s ease;
    }
    .footer-social .social-icons a:hover {
        background: var(--accent-gold);
        color: var(--background);
        border-color: var(--accent-gold);
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(212,168,83,0.35);
    }
    .footer-social .social-icons a svg {
        width: 16px;
        height: 16px;
    }

    /* Bottom copyright — tight, italic, gold-divider above */
    .footer-bottom {
        position: relative;
        margin-top: 18px !important;
        padding-top: 18px;
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }
    .footer-bottom::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212,168,83,0.4), transparent);
    }
    .footer-bottom p {
        margin: 0 auto;
        font-size: 11px;
        color: rgba(255,255,255,0.42);
        letter-spacing: 0.04em;
    }
    .footer-credit-visinova {
        font-size: 10px !important;
        color: rgba(255,255,255,0.32) !important;
        margin-top: 2px !important;
    }
    .footer-credit-visinova a {
        color: rgba(212,168,83,0.6) !important;
    }

    /* Generic centering for common section content blocks */
    .booking-info,
    .booking-content,
    .soundtracks-header,
    .soundtracks-intro,
    .dj-sets-header,
    .dj-header-content,
    .festivals-header,
    .venues-header,
    .events-hero-content,
    .contact-hero-content,
    .music-hero-text,
    .about-hero-content,
    .hero-content,
    .cta-premium-content,
    .newsletter-content,
    .notify-content,
    .form-card-header,
    .section-titles {
        text-align: center;
        align-items: center;
    }

    /* Headings & paragraphs centered */
    .section h2,
    .section h3,
    .section p:not(.event-venue):not(.set-genres) {
        text-align: center;
    }

    /* Section intro / subtitle paragraphs */
    .booking-intro,
    .events-hero-subtitle,
    .contact-hero-subtitle,
    .music-hero-subtitle,
    .about-hero-subtitle,
    .hero-subtitle,
    .dj-subtitle,
    .festivals-intro,
    .popular-tracks-subtitle,
    .full-collection-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Buttons row centered */
    .featured-actions,
    .hero-cta,
    .cta-buttons,
    .about-hero-cta,
    .events-hero-cta,
    .music-hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Booking form content area */
    .booking-form-wrap,
    .contact-form-card {
        text-align: left; /* form labels still left-aligned for readability */
    }
}

/* =========================================================
   MUSICIAN FOOTER — Streaming-led design
   ========================================================= */

.footer-musician {
    background: linear-gradient(180deg, #0a0a0f 0%, #050507 100%);
    padding: 96px 0 32px;
    position: relative;
    border-top: 1px solid rgba(212, 168, 83, 0.18);
    overflow: hidden;
}

.footer-musician::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 70%);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 83, 0.7) 50%, transparent 100%);
}

.footer-musician .container {
    position: relative;
    z-index: 1;
}

/* ---- Streaming Wall ---- */
.footer-stream-wall {
    margin-bottom: 64px;
}

.footer-stream-label {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(212, 168, 83, 0.9);
    margin-bottom: 32px;
}

.footer-stream-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
}

.footer-stream-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 32px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer-stream-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.footer-stream-tile svg {
    width: 30px;
    height: 30px;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.footer-stream-tile span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-stream-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 83, 0.4);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.footer-stream-tile:hover::before { opacity: 1; }
.footer-stream-tile:hover svg { transform: scale(1.1); }

.footer-stream-tile[data-platform="spotify"]:hover svg    { color: #1DB954; }
.footer-stream-tile[data-platform="apple"]:hover svg      { color: #FC3C44; }
.footer-stream-tile[data-platform="soundcloud"]:hover svg { color: #FF5500; }
.footer-stream-tile[data-platform="bandcamp"]:hover svg   { color: #629AA9; }
.footer-stream-tile[data-platform="youtube"]:hover svg    { color: #FF0000; }

/* ---- Booking CTA Bar ---- */
.footer-booking-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 36px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.02) 100%);
    border: 1px solid rgba(212, 168, 83, 0.22);
    margin-bottom: 64px;
}

.footer-booking-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(212, 168, 83, 0.9);
    margin-bottom: 6px;
}

.footer-booking-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-booking-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent-gold, #D4A853);
    color: #0a0a0f;
    text-decoration: none;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.footer-booking-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 168, 83, 0.4);
}

/* ---- Wordmark + Bottom row ---- */
.footer-bottom-musician {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: end;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-wordmark-text {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 96px);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 0.92;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.65) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.footer-musician .footer-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
    margin: 16px 0 0;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 22px;
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.footer-social-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 168, 83, 0.28);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.88);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-social-row a:hover {
    background: var(--accent-gold, #D4A853);
    color: #0a0a0f;
    border-color: var(--accent-gold, #D4A853);
    transform: translateY(-2px);
}

.footer-mini-nav {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.footer-mini-nav a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-mini-nav a:hover { color: var(--accent-gold, #D4A853); }

/* ---- Credit Line ---- */
.footer-musician .footer-credit-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

.footer-musician .footer-credit-line p { margin: 0; }

.footer-musician .footer-credit-line a {
    color: rgba(212, 168, 83, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-musician .footer-credit-line a:hover { color: #fff; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .footer-stream-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
    .footer-stream-tile { padding: 24px 10px; }
}

@media (max-width: 900px) {
    .footer-musician { padding: 72px 0 28px; }
    .footer-stream-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .footer-booking-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 28px 24px;
    }
    .footer-bottom-musician {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
        padding-top: 44px;
    }
    .footer-bottom-right { align-items: center; }
}

@media (max-width: 600px) {
    .footer-musician { padding: 56px 0 24px; }
    .footer-stream-wall { margin-bottom: 44px; }
    .footer-stream-label { font-size: 10px; letter-spacing: 0.3em; margin-bottom: 22px; }
    .footer-stream-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .footer-stream-tile { padding: 22px 10px; gap: 10px; border-radius: 12px; }
    .footer-stream-tile svg { width: 26px; height: 26px; }
    .footer-stream-tile span { font-size: 10px; }
    .footer-booking-bar { margin-bottom: 44px; padding: 24px 20px; border-radius: 14px; }
    .footer-booking-text strong { font-size: 18px; }
    .footer-booking-text span { font-size: 10px; letter-spacing: 0.22em; }
    .footer-booking-cta { padding: 12px 22px; font-size: 11px; }
    .footer-wordmark-text { font-size: 42px; }
    .footer-musician .footer-tagline { font-size: 12px; margin-top: 12px; }
    .footer-mini-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 22px;
    }
    .footer-musician .footer-credit-line {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 10px;
    }
}
