/* ==========================================================================
   REGISTERED CUSTOM PROPERTIES (Modern Web Guidance: @property)
   ========================================================================== */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Fonts */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif; /* V2: Elegance serif */

    /* Color Palette - Dark Luxury / Cinematic Gypsy */
    --bg-primary: #000000;
    --bg-secondary: #09090b;
    --bg-tertiary: #121214;
    
    /* Accents */
    --primary-red: #ef4444;
    --primary-red-hover: #dc2626;
    --accent-crimson: #b91c1c;        /* V2: deeper midstop */
    --accent-gold: #f59e0b;
    --deep-gold: #d97706;              /* V2: warm hover tone */
    --accent-gold-rgb: 245, 158, 11;
    --accent-red-rgb: 239, 68, 68;
    --accent-crimson-rgb: 185, 28, 28;
    --gold-glow: rgba(245, 158, 11, 0.4);
    --red-glow: rgba(239, 68, 68, 0.4);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e4e4e7;
    --text-tertiary: #a1a1aa;
    --text-muted: #71717a;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--accent-gold) 100%);
    border-radius: 10px;
    border: 1px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
    box-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.8);
}

/* Scroll Progress Bar at the top of the viewport */
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #dc2626 50%, var(--accent-gold) 100%);
    width: 0%;
    z-index: 9999;
    box-shadow: 0 0 12px rgba(var(--accent-gold-rgb), 0.6);
    pointer-events: none;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   PARTICLE BACKGROUND & EFFECTS
   ========================================================================== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 20s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    50% {
        transform: translate(var(--move-x, 100px), var(--move-y, -200px)) scale(1.2);
        opacity: 0.8;
    }
}

/* Glow Elements */
.glow-text {
    text-shadow: 
        0 0 10px rgba(var(--accent-gold-rgb), 0.5),
        0 0 20px rgba(var(--accent-gold-rgb), 0.3),
        0 0 35px rgba(var(--accent-gold-rgb), 0.15);
}

.accent-gold {
    color: var(--accent-gold);
    background: linear-gradient(135deg, #f59e0b 0%, #fef08a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   GLASSMORPHISM COMPONENT
   ========================================================================== */
.glass-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.12);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(var(--accent-gold-rgb), 0.35);
    box-shadow: 
        0 15px 45px -12px rgba(var(--accent-gold-rgb), 0.25),
        0 0 30px rgba(var(--accent-gold-rgb), 0.05);
    transform: translateY(-4px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--primary-red) 0%,
        #dc2626 50%,
        var(--accent-gold) 100%
    );
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 20px rgba(var(--accent-red-rgb), 0.35),
        0 0 30px rgba(var(--accent-gold-rgb), 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(var(--accent-red-rgb), 0.5),
        0 0 40px rgba(var(--accent-gold-rgb), 0.2);
    filter: brightness(1.1);
}

.btn-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite, gradient-shift 4s ease infinite;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 50px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(var(--accent-gold-rgb), 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(var(--accent-gold-rgb), 0.15);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 0 1px rgba(var(--accent-gold-rgb), 0.3),
            0 4px 20px rgba(var(--accent-red-rgb), 0.3),
            0 0 40px rgba(var(--accent-gold-rgb), 0.15);
    }
    50% {
        box-shadow: 
            0 0 0 3px rgba(var(--accent-gold-rgb), 0.5),
            0 8px 30px rgba(var(--accent-red-rgb), 0.5),
            0 0 60px rgba(var(--accent-gold-rgb), 0.3);
    }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 84px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
    height: 64px;
}

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

.nav-link {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
    transition: width 0.3s ease;
}

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

.btn-nav {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.btn-nav:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-red-rgb), 0.3);
}

.nav-socials-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    width: 20px;
    height: 20px;
}

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

.nav-social-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
}


.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(var(--accent-red-rgb), 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(var(--accent-gold-rgb), 0.05) 0%, transparent 50%),
                var(--bg-primary);
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-content {
    z-index: 5;
}

/* V2: Laser Pill Badge — animated conic bevel */
.hero-badge {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: rgba(var(--accent-gold-rgb), 0.08);
    border: none;
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    z-index: 0;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from var(--angle, 0deg),
        transparent 20%,
        var(--accent-gold) 40%,
        var(--primary-red) 50%,
        transparent 60%,
        transparent 70%,
        var(--accent-gold) 90%,
        var(--primary-red) 100%
    );
    animation: card-border-spin 3s linear infinite;
    z-index: -1;
}

.hero-badge::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #03020a;
    border-radius: 28px;
    z-index: -1;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-frame {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: 32px;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Slideshow / Carousel Elements */
.hero-slide {
    position: absolute !important;
    inset: 2px !important; /* Alignment inside the 2px laser padding gap */
    width: calc(100% - 4px) !important;
    height: calc(100% - 4px) !important;
    object-fit: cover !important;
    border-radius: inherit !important;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1.05); /* Start slightly zoomed for the slow movement */
    z-index: 1 !important;
    display: block !important;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.12); /* Slowly zooms in further during activation */
    z-index: 2 !important;
}


.frame-border {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 1px dashed rgba(var(--accent-gold-rgb), 0.25);
    border-radius: 40px;
    pointer-events: none;
    z-index: 1;
    animation: rotate-dashed 40s linear infinite;
}

.glow-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(var(--accent-red-rgb), 0.15) 0%, rgba(var(--accent-gold-rgb), 0.1) 50%, transparent 70%);
    z-index: 0;
    filter: blur(40px);
    pointer-events: none;
}

@keyframes rotate-dashed {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Float Animation */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Hero Shiny Stars */
.hero-star {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: hero-star-shimmer 6s infinite ease-in-out;
}

@keyframes hero-star-shimmer {
    0%, 100% {
        transform: translate(0, 0) scale(0.3) rotate(0deg);
        opacity: 0;
        filter: drop-shadow(0 0 2px rgba(245, 158, 11, 0));
    }
    50% {
        transform: translate(var(--mx, 15px), var(--my, -15px)) scale(1) rotate(180deg);
        opacity: 0.85;
        filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.9)) drop-shadow(0 0 15px rgba(245, 158, 11, 0.5));
    }
}

/* ==========================================================================
   AUDIO PLAYER SECTION
   ========================================================================== */
.audio-section {
    background: var(--bg-primary);
    padding: 30px 0 50px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.audio-player-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 32px;
    background: rgba(9, 9, 11, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    border-radius: 24px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.audio-info {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.audio-disk-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #121214;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(var(--accent-gold-rgb), 0.35);
    box-shadow: 0 0 12px rgba(var(--accent-gold-rgb), 0.15);
    animation: disk-spin 12s linear infinite;
    animation-play-state: paused;
    flex-shrink: 0;
}

.audio-disk-wrapper.playing {
    animation-play-state: running;
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(var(--accent-red-rgb), 0.4);
}

.audio-disk {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes disk-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.audio-meta {
    display: flex;
    flex-direction: column;
}

.audio-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-display);
    margin-bottom: 2px;
}

.audio-artist {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.audio-controls-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
    max-width: 600px;
    z-index: 2;
}

.btn-play-pause {
    background: var(--accent-gold);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #000000;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.3);
    flex-shrink: 0;
}

.btn-play-pause:hover {
    transform: scale(1.06);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.btn-play-pause .pause-icon {
    font-size: 0.8rem;
    letter-spacing: -1px;
    margin-left: -1px;
}

.btn-play-pause .play-icon {
    margin-left: 2px;
}

.audio-progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
}

.audio-progress {
    flex-grow: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.audio-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 2px solid #000;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(var(--accent-gold-rgb), 0.5);
    transition: transform 0.15s;
}

.audio-progress::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.8);
}

.audio-volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    flex-shrink: 0;
}

.volume-icon {
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.volume-icon:hover {
    color: var(--accent-gold);
}

.volume-slider {
    width: 70px;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--text-secondary);
    border: 1.5px solid #000;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: var(--accent-gold);
}

/* Audio Visualizer Bouncing Waves */
.audio-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.audio-visualizer.playing {
    opacity: 0.45;
}

.audio-visualizer .bar {
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, var(--primary-red), var(--accent-gold));
    border-radius: 3px;
    transform-origin: bottom center;
    animation: bounce-bar 1s infinite alternate ease-in-out;
    animation-play-state: paused;
}

.audio-visualizer.playing .bar {
    animation-play-state: running;
}

.audio-visualizer .bar:nth-child(1) { animation-duration: 0.7s; height: 30%; }
.audio-visualizer .bar:nth-child(2) { animation-duration: 0.4s; height: 50%; }
.audio-visualizer .bar:nth-child(3) { animation-duration: 0.8s; height: 80%; }
.audio-visualizer .bar:nth-child(4) { animation-duration: 0.5s; height: 100%; }
.audio-visualizer .bar:nth-child(5) { animation-duration: 0.6s; height: 60%; }
.audio-visualizer .bar:nth-child(6) { animation-duration: 0.3s; height: 90%; }
.audio-visualizer .bar:nth-child(7) { animation-duration: 0.7s; height: 40%; }
.audio-visualizer .bar:nth-child(8) { animation-duration: 0.5s; height: 70%; }

@keyframes bounce-bar {
    0% { transform: scaleY(0.25); }
    100% { transform: scaleY(1); }
}

/* Helper Class to hide play/pause icons */
.hidden {
    display: none !important;
}

/* Audio Responsive styling */
@media (max-width: 767px) {
    .audio-section {
        padding: 20px 0 40px 0;
    }
    .audio-player-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }
    .audio-info {
        justify-content: center;
        text-align: center;
    }
    .audio-controls-group {
        width: 100%;
        max-width: none;
    }
    .audio-volume-container {
        justify-content: center;
    }
    .audio-visualizer {
        display: none !important;
    }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats {
    background: var(--bg-secondary);
    padding: 60px 0;
    border-top: 1px solid #141416;
    border-bottom: 1px solid #141416;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* V2: Social Proof Strip under stats */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin-top: 32px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.proof-dot {
    width: 1px;
    height: 20px;
    background: rgba(var(--accent-gold-rgb), 0.3);
    margin: 0 16px;
}

.proof-icon {
    color: var(--accent-gold);
    font-size: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    vertical-align: super;
    margin-left: 2px;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-top: 8px;
}

/* ==========================================================================
   SECTION COMMON HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 12px auto 0;
    line-height: 1.6;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
    margin: 20px auto 0;
    border-radius: 2px;
}

.text-left {
    text-align: left !important;
    margin-left: 0 !important;
}

/* ==========================================================================
   SERVICES SECTION (FLIP CARDS)
   ========================================================================== */
.services {
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Flip Card Container (Wrapper for laser border) */
.service-card-flip {
    height: 400px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
    z-index: 1;
}

.service-card-inner {
    position: absolute;
    inset: 2px;
    border-radius: 22px;
    overflow: hidden;
    background: #000000;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    will-change: transform;
}

.service-card-front {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: filter 0.5s ease;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 32px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.service-title-front {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-family: var(--font-display);
}

/* Slide-up details panel */
.service-card-back {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.75) 55%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.service-title-back {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-family: var(--font-display);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

/* Hover / Active state overrides */
.service-card-flip:hover .service-card-inner,
.service-card-flip.flipped .service-card-inner {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px -10px rgba(var(--accent-red-rgb), 0.35),
        0 0 20px rgba(var(--accent-gold-rgb), 0.15);
}

.service-card-flip:hover .service-card-front,
.service-card-flip.flipped .service-card-front {
    filter: brightness(0.5);
}

.service-card-flip:hover .service-image,
.service-card-flip.flipped .service-image {
    transform: scale(1.1);
}

.service-card-flip:hover .service-overlay,
.service-card-flip.flipped .service-overlay {
    opacity: 0;
}

.service-card-flip:hover .service-card-back,
.service-card-flip.flipped .service-card-back {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.service-card-back:hover .feature-tag {
    border-color: rgba(var(--accent-gold-rgb), 0.3);
    color: var(--text-primary);
}

.service-cta {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.service-cta:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.5);
}

/* Luxury Moving Text Ribbon / Marquee */
.luxury-marquee-container {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.03) 0%, rgba(245, 158, 11, 0.05) 50%, rgba(239, 68, 68, 0.03) 100%);
    border-top: 1.5px solid rgba(var(--accent-gold-rgb), 0.12);
    border-bottom: 1.5px solid rgba(var(--accent-gold-rgb), 0.12);
    padding: 16px 0;
    margin-top: -10px;
    margin-bottom: 55px;
    z-index: 2;
    box-shadow: 
        inset 0 10px 20px rgba(0,0,0,0.5),
        0 0 25px rgba(var(--accent-gold-rgb), 0.06);
}

.luxury-marquee-track {
    display: flex;
    width: max-content;
    animation: luxury-marquee-slide 32s linear infinite;
}

.luxury-marquee-content {
    display: flex;
    white-space: nowrap;
}

.luxury-marquee-content span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-right: 40px;
    display: inline-block;
}

.gold-sparkle-inline {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(var(--accent-gold-rgb), 0.6);
    margin-left: 15px;
}

@keyframes luxury-marquee-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SHOWCASE / PORTFOLIO SECTION
   ========================================================================== */
.gallery {
    background-color: var(--bg-secondary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: 0 5px 15px rgba(var(--accent-gold-rgb), 0.3);
    transform: translateY(-2px);
}

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

.gallery-item {
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item.hidden {
    display: none;
}

.gallery-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-zoom-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: translateY(0);
}

.gallery-img-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img-title {
    transform: translateY(0);
}

/* Lightbox overlay */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 75vh;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: zoom 0.3s ease-out;
}

@keyframes zoom {
    from {transform:scale(0.9); opacity: 0;}
    to {transform:scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-gold);
    text-decoration: none;
}

#lightbox-caption {
    margin: 20px auto;
    width: 80%;
    text-align: center;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==========================================================================
   V2 — GÉNEROS MUSICALES SECTION (BENTO GRID)
   ========================================================================== */
.generos {
    background: var(--bg-secondary);
    padding: 80px 0;
    border-top: 1px solid #141416;
    border-bottom: 1px solid #141416;
    position: relative;
    overflow: hidden;
}

.generos-falling-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.generos-falling-note {
    position: absolute;
    pointer-events: none;
    user-select: none;
    color: var(--accent-gold);
    opacity: 0;
    font-family: var(--font-display);
    animation: generos-fall-spin linear infinite;
    filter: drop-shadow(0 0 6px rgba(var(--accent-gold-rgb), 0.35));
}

@keyframes generos-fall-spin {
    0% {
        top: -10%;
        transform: rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.18;
    }
    85% {
        opacity: 0.18;
    }
    100% {
        top: 110%;
        transform: rotate(var(--rot-deg, 360deg));
        opacity: 0;
    }
}

.generos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 0;
}

.genero-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(var(--accent-gold-rgb), 0.1);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    cursor: default;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.genero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 0%, var(--card-color, rgba(245,158,11,0.12)) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.genero-card:hover::before {
    opacity: 1;
}

.genero-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--card-color-border, rgba(var(--accent-gold-rgb), 0.35));
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6), 0 0 30px var(--card-color, rgba(245,158,11,0.08));
}

.genero-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 12px var(--card-color, rgba(245,158,11,0.4)));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.genero-card:hover .genero-icon {
    transform: scale(1.2) translateY(-4px);
}

.genero-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: block;
}

.genero-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Color theming per genre */
.genero-card.folklore  { --card-color: rgba(245, 158, 11, 0.15);  --card-color-border: rgba(245,158,11,0.4); }
.genero-card.cumbia    { --card-color: rgba(249, 115, 22, 0.15);  --card-color-border: rgba(249,115,22,0.4); }
.genero-card.salsa     { --card-color: rgba(239, 68, 68, 0.15);   --card-color-border: rgba(239,68,68,0.4); }
.genero-card.baladas   { --card-color: rgba(168, 85, 247, 0.15);  --card-color-border: rgba(168,85,247,0.4); }
.genero-card.huayno    { --card-color: rgba(34, 197, 94, 0.15);   --card-color-border: rgba(34,197,94,0.4); }

@media (max-width: 991px) {
    .generos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .generos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .genero-card {
        padding: 24px 16px;
    }
    .genero-icon { font-size: 2.2rem; }
}

/* ==========================================================================
   V2 — ¿POR QUÉ YAJHIRA? SECTION (3 PILLARS)
   ========================================================================== */
.why-yajhira {
    background: var(--bg-primary);
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-card {
    position: relative;
    padding: 48px 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.1);
    text-align: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.why-card:hover::before { opacity: 1; }

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-gold-rgb), 0.3);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.7), 0 0 40px rgba(var(--accent-gold-rgb), 0.06);
}

.why-number {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 600;
    font-style: italic;
    color: rgba(var(--accent-gold-rgb), 0.15);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    transition: color 0.4s;
}

.why-card:hover .why-number {
    color: rgba(var(--accent-gold-rgb), 0.3);
}

.why-badge {
    display: inline-block;
    background: rgba(var(--accent-gold-rgb), 0.1);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.why-desc {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .why-card { padding: 36px 28px; }
}

/* ==========================================================================
   V2 — VIDEO SHOWCASE SECTION
   ========================================================================== */
.video-showcase {
    background: var(--bg-secondary);
    padding: 100px 0;
    overflow: hidden;
}

.video-showcase-inner {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    box-shadow:
        0 30px 80px -20px rgba(0,0,0,0.9),
        0 0 60px rgba(var(--accent-gold-rgb), 0.08);
    cursor: pointer;
}

.video-showcase-poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7) 100%);
    transition: opacity 0.5s ease;
}

.video-showcase-poster.hidden-poster {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(var(--accent-gold-rgb), 0.15);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 2rem;
    transition: var(--transition-smooth);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(var(--accent-gold-rgb), 0.3);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 60px rgba(var(--accent-gold-rgb), 0.6);
}

#showcase-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 767px) {
    .video-showcase-inner {
        border-radius: 16px;
    }
    .video-play-btn {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   V2 — CTA FINAL WITH VIDEO BACKGROUND
   ========================================================================== */
.cta-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
}

.cta-final {
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(var(--accent-red-rgb), 0.15) 0%, rgba(0,0,0,0.85) 70%);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-urgency {
    display: inline-block;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #fca5a5;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    animation: pulse-subtle 2.5s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

/* ==========================================================================
   TESTIMONIALS SECTION (SLIDER)
   ========================================================================== */
.testimonials {
    background-color: var(--bg-primary);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    padding: 48px;
    text-align: center;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* V2: Testimonial Avatar with gradient initials */
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.testimonial-card:nth-of-type(1) .testimonial-avatar { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.testimonial-card:nth-of-type(2) .testimonial-avatar { background: linear-gradient(135deg, #a855f7, #ec4899); }
.testimonial-card:nth-of-type(3) .testimonial-avatar { background: linear-gradient(135deg, #f59e0b, #f97316); }
.testimonial-card:nth-of-type(4) .testimonial-avatar { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.testimonial-card:nth-of-type(5) .testimonial-avatar { background: linear-gradient(135deg, #22c55e, #16a34a); }
.testimonial-card:nth-of-type(6) .testimonial-avatar { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.testimonial-card:nth-of-type(7) .testimonial-avatar { background: linear-gradient(135deg, #64748b, #334155); }
.testimonial-card:nth-of-type(8) .testimonial-avatar { background: linear-gradient(135deg, #f59e0b, #d97706); }

.testimonial-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    color: var(--text-secondary);
    font-size: 1.2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--accent-gold);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   ABOUT ME (SOBRE MI) SECTION
   ========================================================================== */
.about {
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1.2;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.4) 80%);
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(var(--accent-gold-rgb), 0.2);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: -1;
    background: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.15) 0%, transparent 70%);
    filter: blur(20px);
}

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

.about-para {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.about-signature {
    margin-top: 24px;
}

.sig-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.sig-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   CTA FINAL SECTION
   ========================================================================== */
.cta-final {
    background: radial-gradient(circle, rgba(var(--accent-red-rgb), 0.12) 0%, rgba(0, 0, 0, 0.95) 75%),
                var(--bg-primary);
    text-align: center;
    border-top: 1px solid rgba(var(--accent-gold-rgb), 0.1);
    padding: 120px 0;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-final .btn-primary {
    padding: 18px 48px;
    font-size: 1rem;
}

.cta-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid #141416;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 76px;
    width: auto;
    align-self: flex-start;
    margin-bottom: 24px;
}

.footer-description {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.contact-info {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #141416;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.designer {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Desktop & Laptop */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 4rem;
    }
    .about-grid {
        gap: 40px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-frame {
        width: 320px;
        height: 400px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    /* Mobile Menu Toggle */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        -webkit-backdrop-filter: blur(24px);
        backdrop-filter: blur(24px);
        border-left: 1px solid rgba(var(--accent-gold-rgb), 0.15);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Toggle active cross animation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card-flip {
        height: 380px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .testimonial-card {
        padding: 30px 16px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    /* V2 Rule: Stats 2×2 grid on mobile — never flex-wrap */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .stat-number {
        font-size: 2.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-grid {
        max-width: 100%;
    }
}

/* ==========================================================================
   ADDITIONAL CUSTOM STYLES (MOBILE STICKY CONTACT BAR & SCROLL REVEAL CONTAINER)
   ========================================================================== */
.service-card-wrapper {
    width: 100%;
    height: 100%;
}

/* Mobile Luxury Sticky Contact Bar Styles */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: 92%;
    max-width: 400px;
    height: 64px;
    background: rgba(9, 9, 11, 0.75);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.25);
    border-radius: 40px;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(var(--accent-gold-rgb), 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0;
}

.mobile-sticky-bar.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.sticky-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 3px;
    height: 100%;
    width: 33.33%;
    transition: var(--transition-smooth);
    position: relative;
}

.sticky-bar-item .icon {
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.sticky-bar-item:hover, .sticky-bar-item.active {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.3);
}

.sticky-bar-item.active .icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(var(--accent-gold-rgb), 0.6));
}

@media (max-width: 767px) {
    .mobile-sticky-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 96px; /* Avoid overlaying website content */
    }
}

/* ==========================================================================
   PREMIUM LASER BEVEL SYSTEM (RED & GOLD CONIC ROTATION "DE IDA Y VUELTA")
   ========================================================================== */
@keyframes laser-spin {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.hero-image-frame,
.about-image-wrapper,
.gallery-img-wrapper {
    position: relative;
    overflow: hidden !important;
    padding: 2px !important;
    background: #000000 !important;
    border: none !important;
    z-index: 1;
}

.service-card-flip {
    position: relative;
    overflow: hidden !important;
    padding: 0 !important;
    background: #000000 !important;
    border: none !important;
    z-index: 1;
}

.hero-image-frame::before,
.about-image-wrapper::before,
.service-card-flip::before,
.gallery-img-wrapper::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: conic-gradient(
        from 0deg,
        transparent 30%,
        var(--primary-red) 50%,
        var(--accent-gold) 75%,
        transparent 100%
    ) !important;
    animation: laser-spin 6s ease-in-out infinite !important;
    z-index: -1 !important;
    transform-origin: center center !important;
}

/* Ensure images sit on top of the background gradient, leaving the padding as border */
.hero-img,
.about-img,
.service-image,
.gallery-img {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: inherit !important;
    display: block !important;
}

/* Adjust overlays to stay inside the laser border */
.gallery-hover-overlay {
    z-index: 3 !important;
    margin: 2px !important;
    width: calc(100% - 4px) !important;
    height: calc(100% - 4px) !important;
    border-radius: inherit !important;
}

/* ==========================================================================
   MAJESTIC LUXURY INTRO OVERLAY — VIDEO EDITION
   ========================================================================== */

/* ── Base overlay ──────────────────────────────────────────────────── */
.intro-overlay {
    position: fixed;
    inset: 0;
    background: #03020a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-overlay.fade-out {
    opacity: 0;
    transform: scale(1.06);
    pointer-events: none;
}

/* ── Ambient gold fog background ───────────────────────────────────── */
.intro-ambient-fog {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 60%, rgba(180, 120, 0, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 30% 30%, rgba(139, 0, 0, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 80%, rgba(139, 0, 0, 0.08) 0%, transparent 60%);
    animation: fog-breathe 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes fog-breathe {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.04); }
}

/* ── Starfield ─────────────────────────────────────────────────────── */
.intro-stars-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.intro-star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #f5c842;
    opacity: 0;
    animation: intro-star-twinkle 3s ease-in-out infinite alternate;
}

/* ── Falling gold stars and music notes on borders ────────────────── */
.intro-falling-container {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.intro-falling-item {
    position: absolute;
    pointer-events: none;
    user-select: none;
    opacity: 0.85;
    animation: intro-fall-spin linear infinite;
    font-family: var(--font-display);
}

@keyframes intro-fall-spin {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(115vh) rotate(var(--rot-deg, 360deg));
        opacity: 0;
    }
}

/* ── Stage (contains bevel + frame) ───────────────────────────────── */
.intro-stage {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Responsive: max 85vw wide, 88vh tall */
    width: min(85vw, 960px);
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    animation: stage-entrance 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes stage-entrance {
    0%   { opacity: 0; transform: scale(0.88) translateY(40px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Outer spinning conic-gradient bevel ring ─────────────────────── */
.intro-bevel-outer {
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: conic-gradient(
        from var(--angle, 0deg),
        #7b5000 0%,
        #f5c842 15%,
        #fffbe6 25%,
        #c8902a 35%,
        #8b0000 50%,
        #c8902a 65%,
        #fffbe6 75%,
        #f5c842 85%,
        #7b5000 100%
    );
    animation: card-border-spin 6s linear infinite;
    z-index: 0;
}

/* ── Video frame (inner container) ────────────────────────────────── */
.intro-video-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    z-index: 2;
    /* Inner gold bezel */
    box-shadow:
        inset 0 0 0 2px rgba(245, 200, 66, 0.7),
        inset 0 0 30px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(180, 120, 0, 0.3),
        0 0 120px rgba(139, 0, 0, 0.15);
}

/* ── The actual video ─────────────────────────────────────────────── */
/* ── Video container (placeholder filled by JS) ────────────────────── */
.intro-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.intro-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* ── Cinematic vignette ────────────────────────────────────────────── */
.intro-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.75) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 25%, transparent 65%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}

/* ── Scanlines (cinematic texture) ────────────────────────────────── */
.intro-scanlines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        rgba(0, 0, 0, 0.06) 3px,
        rgba(0, 0, 0, 0.06) 4px
    );
    opacity: 0.6;
}

/* ── Corner ornaments ─────────────────────────────────────────────── */
.corner-ornament {
    position: absolute;
    width: 32px;
    height: 32px;
    z-index: 5;
    pointer-events: none;
}
.corner-ornament::before,
.corner-ornament::after {
    content: '';
    position: absolute;
    background: #f5c842;
    border-radius: 2px;
}
.corner-ornament::before { width: 100%; height: 2px; top: 0; left: 0; }
.corner-ornament::after  { width: 2px; height: 100%; top: 0; left: 0; }

.corner-ornament.top-left    { top: 10px;    left: 10px; }
.corner-ornament.top-right   { top: 10px;    right: 10px;  transform: scaleX(-1); }
.corner-ornament.bottom-left { bottom: 10px; left: 10px;   transform: scaleY(-1); }
.corner-ornament.bottom-right { bottom: 10px; right: 10px;  transform: scale(-1); }

/* Subtle pulse on corners */
.corner-ornament {
    animation: corner-pulse 3s ease-in-out infinite alternate;
}
@keyframes corner-pulse {
    0%   { opacity: 0.7; filter: drop-shadow(0 0 2px rgba(245, 200, 66, 0.4)); }
    100% { opacity: 1;   filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.9)); }
}

/* ── Content overlay (text + button over video) ───────────────────── */
.intro-video-content {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* Más padding inferior para empujar texto hacia el borde */
    padding: 2% 10% 2.5%;
    text-align: center;
    gap: 0;
}

/* ── Crown glyph ──────────────────────────────────────────────────── */
.intro-crown {
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    color: #f5c842;
    margin: 0 0 3px;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.7));
    animation: intro-fade-in-up 0.8s ease-out 0.5s forwards;
    line-height: 1;
}

/* ── Title ────────────────────────────────────────────────────────── */
.intro-tagline {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 4px;
    opacity: 0;
    text-shadow:
        0 0 16px rgba(245, 200, 66, 0.75),
        0 2px 6px rgba(0, 0, 0, 0.95);
    animation: intro-fade-in-up 0.9s ease-out 0.8s forwards;
}

/* ── Subtitle ─────────────────────────────────────────────────────── */
.intro-subtext {
    font-size: clamp(0.52rem, 1vw, 0.65rem);
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 14px;
    opacity: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.95);
    animation: intro-fade-in-up 0.9s ease-out 1s forwards;
}

/* ── Enter button ─────────────────────────────────────────────────── */
.btn-intro-enter {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid #f5c842;
    padding: clamp(12px, 2.5vw, 18px) clamp(24px, 5vw, 44px);
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f5c842;
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    animation: intro-fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease, color 0.3s ease;
    box-shadow: 0 0 18px rgba(245, 200, 66, 0.15), inset 0 0 12px rgba(245, 200, 66, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-intro-enter .btn-icon {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.btn-intro-enter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 200, 66, 0.35), transparent);
    transform: skewX(-20deg);
}

.btn-intro-enter:hover::before {
    animation: btn-sweep 1s ease-out infinite;
}

.btn-intro-enter:hover {
    background: rgba(245, 200, 66, 0.92);
    color: #0a0800;
    box-shadow: 0 0 40px rgba(245, 200, 66, 0.6), 0 0 80px rgba(245, 200, 66, 0.2);
    transform: translateY(-2px) scale(1.04);
}

.btn-intro-enter:hover .btn-icon {
    transform: scale(1.2) translateX(2px);
}

/* ── Shared animations ────────────────────────────────────────────── */
@keyframes intro-fade-in-up {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes btn-sweep {
    100% { left: 150%; }
}

@keyframes intro-star-twinkle {
    0%   { opacity: 0;   transform: scale(0.5); }
    50%  { opacity: 0.8; transform: scale(1.2); }
    100% { opacity: 0.1; transform: scale(0.7); }
}

/* ── Video fallback: when autoplay is blocked, show poster cleanly ── */
.intro-video.video-fallback {
    object-fit: contain;
    background: #03020a;
}

/* ── Responsive — Tablet & large phones (≤768px) ─────────────────── */
@media (max-width: 768px) {
    .intro-stage {
        /* On portrait mobile, fill the screen vertically */
        width: 92vw;
        aspect-ratio: unset;
        height: 78vh;
        border-radius: 14px;
    }
    .intro-bevel-outer {
        border-radius: 18px;
        inset: -3px;
    }
    .intro-video-content {
        padding: 4% 6% 8%;
    }
    .corner-ornament {
        width: 24px;
        height: 24px;
    }
    .intro-tagline {
        font-size: clamp(0.95rem, 4vw, 1.5rem);
        letter-spacing: 0.08em;
    }
    .intro-subtext {
        font-size: clamp(0.55rem, 2vw, 0.72rem);
        margin: 0 0 14px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* ── Responsive — Small phones (≤420px) ──────────────────────────── */
@media (max-width: 420px) {
    .intro-stage {
        width: 96vw;
        height: 72vh;
        border-radius: 12px;
    }
    .intro-bevel-outer {
        border-radius: 16px;
        inset: -3px;
    }
    .intro-video-content {
        padding: 3% 5% 10%;
    }
    .intro-crown {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    .intro-tagline {
        font-size: clamp(0.85rem, 4.5vw, 1.2rem);
    }
    .intro-subtext {
        font-size: 0.58rem;
        margin: 0 0 12px;
        letter-spacing: 0.06em;
    }
    .btn-intro-enter {
        padding: 10px 20px;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
        gap: 7px;
    }
    .corner-ornament {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   V2 — FOOTER ENHANCEMENTS
   ========================================================================== */
.footer-coverage {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 8px;
    letter-spacing: 0.03em;
}

.footer-coverage span {
    color: var(--accent-gold);
    opacity: 0.7;
    margin: 0 4px;
}

/* Social icons with hover color overrides */
.social-icon.fb:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-icon.ig:hover  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #e1306c; color: #fff; }
.social-icon.yt:hover  { background: #FF0000; border-color: #FF0000; color: #fff; }
.social-icon.tk:hover  { background: #010101; border-color: #69C9D0; color: #69C9D0; }

/* ==========================================================================
   V2 — PREFERS-REDUCED-MOTION ACCESSIBILITY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-element { animation: none; }
    .frame-border { animation: none; }
    .luxury-marquee-track { animation: none; }
}

/* ==========================================================================
   PREMIUM V3 — 21ST.DEV INSPIRED EFFECTS (100% VANILLA CSS)
   ========================================================================== */

/* ── 1. AURORA MESH BACKGROUND on Hero (21st.dev: Backgrounds/Shaders) ── */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(185, 28, 28, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 10%, rgba(245, 158, 11, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 50% 90%, rgba(239, 68, 68, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 85% 75%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    animation: aurora-breathe 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes aurora-breathe {
    0%   { opacity: 0.7; transform: scale(1) translate(0, 0); }
    33%  { opacity: 0.9; transform: scale(1.02) translate(1%, 0.5%); }
    66%  { opacity: 0.8; transform: scale(0.99) translate(-0.5%, 1%); }
    100% { opacity: 1;   transform: scale(1.03) translate(0.5%, -0.5%); }
}

/* ── 2. NOISE TEXTURE OVERLAY (21st.dev: Backgrounds pattern) ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

/* ── 3. GRID DOT PATTERN on Dark Sections (21st.dev: Backgrounds/Border) ── */
.generos::before,
.why-yajhira::before,
.video-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.generos .container,
.why-yajhira .container,
.video-showcase .container {
    position: relative;
    z-index: 1;
}

/* ── 4. SHIMMER SWEEP on Buttons (21st.dev: Buttons premium) ── */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 150%;
}

/* ── 5. MAGNETIC GLOW on Service Cards ── */
.service-card-flip::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: conic-gradient(
        from var(--angle, 0deg),
        transparent 40%,
        var(--accent-gold) 60%,
        var(--primary-red) 75%,
        transparent 90%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
}

.service-card-flip:hover::after {
    opacity: 1;
    animation: card-border-spin 3s linear infinite;
}

@keyframes card-border-spin {
    to { --angle: 360deg; }
}

/* ── 6. KINETIC SECTION TAGLINES (21st.dev: Text effects) ── */
.section-tagline {
    position: relative;
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: transparent;
    background: linear-gradient(90deg,
        var(--accent-gold) 0%,
        #fef08a 30%,
        var(--accent-gold) 60%,
        var(--primary-red) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: text-shimmer 4s linear infinite;
}

@keyframes text-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── 7. ORNAMENT DIVIDERS between Sections (21st.dev: Borders) ── */
.section-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-red) 20%,
        var(--accent-gold) 50%,
        var(--primary-red) 80%,
        transparent 100%
    );
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(var(--accent-gold-rgb), 0.8);
}

.section-divider::before { left: 0; }
.section-divider::after  { right: 0; }

/* ── 8. FLOATING MUSIC NOTES DECORATION (Artist brand feel) ── */
.music-note {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    color: var(--accent-gold);
    pointer-events: none;
    animation: note-float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(var(--accent-gold-rgb), 0.5));
    z-index: 0;
    user-select: none;
}

.music-note:nth-of-type(1) { left: 5%; top: 20%; --note-x: 40px; --note-y: -90px; --note-rot: 20deg; animation-delay: 0s; }
.music-note:nth-of-type(2) { left: 15%; top: 60%; --note-x: -30px; --note-y: -110px; --note-rot: -15deg; animation-delay: 1.5s; }
.music-note:nth-of-type(3) { right: 8%; top: 30%; --note-x: -20px; --note-y: -80px; --note-rot: 10deg; animation-delay: 2.5s; }
.music-note:nth-of-type(4) { right: 20%; top: 70%; --note-x: 25px; --note-y: -100px; --note-rot: -20deg; animation-delay: 0.8s; }
.music-note:nth-of-type(5) { left: 50%; top: 10%; --note-x: -15px; --note-y: -70px; --note-rot: 12deg; animation-delay: 3s; }

@keyframes note-float {
    0%   { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(0.8); }
    20%  { opacity: 0.6; }
    80%  { opacity: 0.4; }
    100% { opacity: 0; transform: translate(var(--note-x, 30px), var(--note-y, -80px)) rotate(var(--note-rot, 15deg)) scale(1.1); }
}

/* ── 9. PREMIUM GLOW GLASS CARDS (21st.dev: Cards) ── */
.glass-card {
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
        rgba(var(--accent-gold-rgb), 0.15) 0%,
        transparent 40%,
        transparent 60%,
        rgba(var(--accent-red-rgb), 0.1) 100%
    );
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover::before {
    opacity: 1;
}

/* ── 10. HERO TITLE — GRADIENT TEXT UPGRADE ── */
.hero-title {
    background: linear-gradient(135deg,
        #ffffff 0%,
        rgba(255,255,255,0.9) 40%,
        rgba(255,255,255,0.7) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .accent-gold {
    background: linear-gradient(135deg,
        var(--accent-gold) 0%,
        #fef08a 30%,
        var(--accent-gold) 60%,
        var(--deep-gold) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(var(--accent-gold-rgb), 0.4));
}

/* ── 11. NAV LINK HOVER — NEON UNDERLINE ── */
.nav-link::after {
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-gold) 30%,
        var(--primary-red) 70%,
        transparent 100%
    );
    height: 1.5px;
    box-shadow: 0 0 8px rgba(var(--accent-gold-rgb), 0.6);
}

/* ── 12. SCROLL-SNAP on Géneros Grid (21st.dev: Scroll Areas) ── */
@media (max-width: 600px) {
    .generos-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding-bottom: 16px;
    }

    .generos-grid::-webkit-scrollbar { display: none; }

    .genero-card {
        flex: 0 0 180px;
        scroll-snap-align: center;
    }
}

/* ── 13. STATS COUNTER — NEON NUMBER EFFECT ── */
.stat-number {
    background: linear-gradient(135deg,
        #ffffff 0%,
        rgba(255,255,255,0.85) 50%,
        var(--accent-gold) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(var(--accent-gold-rgb), 0.3));
}

.stat-plus {
    filter: drop-shadow(0 0 8px rgba(var(--accent-gold-rgb), 0.5));
}

/* ── 14. TESTIMONIAL CARD — QUOTE MARK DECORATION ── */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: rgba(var(--accent-gold-rgb), 0.08);
    pointer-events: none;
    user-select: none;
    font-style: italic;
}

/* ── 15. WHY CARDS — SERIAL NUMBER GIANT BG ── */
.why-card {
    counter-increment: why-counter;
}

/* ── 16. PREMIUM INPUT FOCUS EFFECTS for Contact Form ── */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(var(--accent-gold-rgb), 0.6) !important;
    box-shadow:
        0 0 0 3px rgba(var(--accent-gold-rgb), 0.08),
        0 0 20px rgba(var(--accent-gold-rgb), 0.1) !important;
    outline: none;
}

/* ── 17. FOOTER BRAND GLOW ── */
.footer-logo {
    filter: drop-shadow(0 0 12px rgba(var(--accent-gold-rgb), 0.15));
    transition: filter 0.4s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 24px rgba(var(--accent-gold-rgb), 0.4));
}

/* ── 18. GENERO CARDS SVG ICON STYLES ── */
.genero-icon {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

/* ── 19. ABOUT SECTION — AWARD BADGE ── */
.about-award {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.1), rgba(var(--accent-red-rgb), 0.06));
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    border-radius: 30px;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    margin-top: 24px;
}

.about-award-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 6px rgba(var(--accent-gold-rgb), 0.6));
}

/* ── 20. HERO SOCIAL PROOF STRIP — ANIMATED DOTS ── */
.proof-icon {
    animation: icon-pulse 2s ease-in-out infinite;
}

.proof-item:nth-child(3) .proof-icon { animation-delay: 0.3s; }
.proof-item:nth-child(5) .proof-icon { animation-delay: 0.6s; }

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

/* ── 21. SECTION TRANSITIONS — CLIP-PATH WAVES (21st.dev: Backgrounds) ── */
.stats::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-primary);
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 1;
    pointer-events: none;
}

/* ── 22. CTA FINAL — RADIAL PULSE RINGS ── */
.cta-final::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-red-rgb), 0.12) 0%, transparent 70%);
    animation: cta-pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes cta-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50%       { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

/* ── 23. WHY YAJHIRA — CONNECTOR LINE between cards ── */
@media (min-width: 992px) {
    .why-grid {
        position: relative;
    }

    .why-grid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: calc(33.33% + 16px);
        right: calc(33.33% + 16px);
        height: 1px;
        background: linear-gradient(90deg,
            rgba(var(--accent-gold-rgb), 0.3) 0%,
            rgba(var(--accent-gold-rgb), 0.6) 50%,
            rgba(var(--accent-gold-rgb), 0.3) 100%
        );
        z-index: 0;
    }
}

/* ── 24. VIDEO SHOWCASE — AMBIENT GLOW RING ── */
.video-showcase-inner::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 36px;
    background: radial-gradient(ellipse at 50% 50%,
        rgba(var(--accent-gold-rgb), 0.08) 0%,
        rgba(var(--accent-red-rgb), 0.05) 40%,
        transparent 70%
    );
    z-index: 0;
    animation: showcase-glow 5s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes showcase-glow {
    0%   { opacity: 0.5; transform: scale(0.98); }
    100% { opacity: 1;   transform: scale(1.02); }
}

/* ── 25. NAVBAR — FLOATING PILL STYLE (21st.dev: Navbars) ── */
.navbar.scrolled {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    border-radius: 16px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.12);
    top: 12px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(var(--accent-gold-rgb), 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 767px) {
    .navbar.scrolled {
        width: calc(100% - 24px);
        border-radius: 12px;
        top: 8px;
    }
}

/* ── 26. PREMIUM SCROLLBAR (Modern Web Guidance: scrollbar-color) ── */
html {
    scrollbar-color: var(--accent-gold) var(--bg-primary);
    scrollbar-width: thin;
}

/* ── 27. GENERO CARD — INNER SHINE SWEEP on hover ── */
.genero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
    pointer-events: none;
}

.genero-card:hover::after {
    left: 150%;
}

/* ── 28. MARQUEE FADE EDGES (21st.dev: Scroll Areas) ── */
.luxury-marquee-container::before,
.luxury-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.luxury-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.luxury-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* ── 29. SECTION NUMBERS — CSS COUNTER (21st.dev: Text) ── */
.why-number {
    position: relative;
}

/* ── 30. ABOUT SECTION — IMAGE PARALLAX FRAME GLOW ── */
.about-image-wrapper {
    transition: box-shadow 0.6s ease;
}

.about-image-wrapper:hover {
    box-shadow:
        0 0 40px rgba(var(--accent-gold-rgb), 0.25),
        0 0 80px rgba(var(--accent-red-rgb), 0.1);
}

/* ── 31. STATS SECTION — INNER GLOW per ITEM ── */
.stat-item {
    position: relative;
    padding: 24px 16px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.06), transparent) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(var(--accent-gold-rgb), 0.03);
}

/* ── 32. LUXURY GALLERY — MASONRY HOVER LIFT ── */
.gallery-item {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(var(--accent-gold-rgb), 0.08);
}

/* ── 33. BTN SECONDARY — ANIMATED BORDER DASH ── */
.btn-secondary {
    position: relative;
    background-clip: padding-box;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(90deg,
        rgba(var(--accent-gold-rgb), 0.3) 0%,
        rgba(var(--accent-red-rgb), 0.3) 50%,
        rgba(var(--accent-gold-rgb), 0.3) 100%
    );
    background-size: 200% auto;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: btn-border-move 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes btn-border-move {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── 34. HERO IMAGE — FLOATING MUSIC BADGE ── */
.hero-image-badge {
    position: absolute;
    z-index: 10;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.3);
    border-radius: 40px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    animation: badge-float 4s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.hero-image-badge.badge-top {
    top: -16px;
    right: -16px;
}

.hero-image-badge.badge-bottom {
    bottom: -16px;
    left: -16px;
}

.hero-image-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(var(--accent-gold-rgb), 0.8);
    animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

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

/* ==========================================================================
   V3 — PROPUESTA VALOR (EXPERIENCIA PREMIUM PERSONALIZADA)
   ========================================================================== */
.propuesta-valor {
    background: var(--bg-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #141416;
}

.propuesta-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

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

.propuesta-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    font-family: var(--font-display);
    color: var(--text-primary);
}

.propuesta-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.propuesta-desc strong {
    color: var(--accent-gold);
}

.propuesta-cta-wrapper {
    align-self: flex-start;
}

.propuesta-cta-wrapper .btn-primary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 36px;
    border-radius: 18px;
    gap: 4px;
    text-align: left;
}

.propuesta-cta-wrapper .btn-primary span {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.propuesta-cta-wrapper .btn-primary .cta-action {
    font-size: 1.05rem;
    font-weight: 800;
    color: #000000;
}

.propuesta-cta-wrapper .btn-primary:hover .cta-action {
    color: var(--accent-gold);
}

.propuesta-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lyric Card Mockup (21st.dev inspired card) */
.lyric-card-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1.15;
    z-index: 2;
}

.lyric-card {
    position: absolute;
    inset: 0;
    padding: 32px;
    background: rgba(9, 9, 11, 0.75);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    border-radius: 28px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.lyric-card::after {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 29px;
    background: conic-gradient(
        from var(--angle, 0deg),
        transparent 30%,
        var(--accent-gold) 50%,
        var(--primary-red) 75%,
        transparent 90%
    );
    z-index: -1;
    opacity: 0.45;
    animation: card-border-spin 8s linear infinite;
}

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

.ai-badge {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
}

.music-icon {
    font-size: 1.15rem;
    filter: drop-shadow(0 0 6px rgba(var(--accent-gold-rgb), 0.6));
}

.lyric-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.lyric-line-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 8px;
}

.lyric-line-verse {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    font-style: italic;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.lyric-line-verse:last-child {
    border: none;
    padding: 0;
}

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

.partner-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Background glows */
.visual-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.22;
    pointer-events: none;
}

.glow-gold {
    top: 10%;
    right: 10%;
    background: var(--accent-gold);
}

.glow-red {
    bottom: 10%;
    left: 10%;
    background: var(--primary-red);
}

/* ── Step-by-step list ── */
.propuesta-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 44px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

/* Vertical timeline line connecting the step numbers */
.propuesta-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 18px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, var(--primary-red) 100%);
    opacity: 0.22;
    z-index: 0;
}

.propuesta-steps li {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.propuesta-steps .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000000; /* Solid black to mask the timeline line underneath */
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(var(--accent-gold-rgb), 0.1);
    transition: var(--transition-smooth);
}

.propuesta-steps li:hover .step-num {
    background: var(--accent-gold);
    color: #000000;
    box-shadow: 0 0 20px rgba(var(--accent-gold-rgb), 0.4);
    transform: scale(1.08);
}

.propuesta-steps .step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.propuesta-steps .step-content strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.propuesta-steps li:hover .step-content strong {
    color: var(--accent-gold);
}

.propuesta-steps .step-content p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .propuesta-steps {
        max-width: 480px;
        margin: 0 auto 36px;
    }
    .propuesta-valor {
        padding: 80px 0;
    }
    
    .propuesta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .propuesta-info {
        text-align: center;
    }
    
    .propuesta-cta-wrapper {
        align-self: center;
    }
    
    .lyric-card-container {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .propuesta-title {
        font-size: 2rem;
    }
    .propuesta-cta-wrapper .btn-primary {
        align-items: center;
        text-align: center;
        padding: 16px 24px;
    }
    .propuesta-steps {
        gap: 24px;
    }
    .propuesta-steps::before {
        top: 18px;
        bottom: 18px;
    }
}


