:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --text-primary: #f5f0e8;
    --text-muted: #6b6b6b;
    --accent: #d4af37;
    --accent-dark: #8b7335;
    --red: #8b0000;
    --red-dark: #5c0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Brutal Heart - Dark and aggressive */
.brutal-heart {
    position: relative;
    width: 180px;
    height: 180px;
}

.brutal-heart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Heart - white outline only, no fill - raw look */
.heart-outline {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawHeart 1s ease forwards 0.2s;
}

@keyframes drawHeart {
    0% { stroke-dashoffset: 400; }
    100% { stroke-dashoffset: 0; }
}

/* Heart fill - appears after outline, dark blood red */
.heart-fill {
    fill: #8b0000;
    opacity: 0;
    animation: heartFillIn 0.3s ease forwards 1.2s;
}

@keyframes heartFillIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Aggressive X slash - white, cutting through */
.slash-1, .slash-2 {
    stroke: #fff;
    stroke-width: 6;
    stroke-linecap: square;
    fill: none;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    filter: drop-shadow(0 0 3px #fff);
}

.slash-1 {
    animation: slashHard 0.15s linear forwards 1.5s;
}

.slash-2 {
    animation: slashHard 0.15s linear forwards 1.65s;
}

@keyframes slashHard {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

/* Deep crack - splits the heart */
.heart-crack {
    stroke: #000;
    stroke-width: 5;
    fill: none;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: crackHard 0.1s linear forwards 1.8s;
}

@keyframes crackHard {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

/* Heart pieces - dark blood red */
.heart-left-piece, .heart-right-piece {
    fill: #8b0000;
    opacity: 0;
}

.heart-left-piece {
    animation: dropLeft 0.5s ease-in forwards 1.9s;
    transform-origin: 50px 50px;
}

.heart-right-piece {
    animation: dropRight 0.5s ease-in forwards 1.9s;
    transform-origin: 50px 50px;
}

@keyframes dropLeft {
    0% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
    100% { opacity: 0.2; transform: translate(-35px, 80px) rotate(-20deg); }
}

@keyframes dropRight {
    0% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
    100% { opacity: 0.2; transform: translate(35px, 80px) rotate(20deg); }
}

/* Hide original heart when pieces fall */
.brutal-heart.shattered .heart-fill,
.brutal-heart.shattered .heart-outline {
    animation: killHeart 0.05s ease forwards 1.9s;
}

@keyframes killHeart {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Blood splatter - dark, aggressive */
.blood-splat {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #8b0000;
    border-radius: 50%;
    opacity: 0;
}

.blood-splat:nth-child(2) { animation: splatDark1 0.3s ease-out forwards 1.92s; }
.blood-splat:nth-child(3) { animation: splatDark2 0.3s ease-out forwards 1.95s; }
.blood-splat:nth-child(4) { animation: splatDark3 0.3s ease-out forwards 1.93s; }
.blood-splat:nth-child(5) { animation: splatDark4 0.3s ease-out forwards 1.9s; }
.blood-splat:nth-child(6) { animation: splatDark5 0.3s ease-out forwards 1.97s; }

@keyframes splatDark1 {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0); }
    100% { opacity: 0; transform: translate(-70px, -50px) scale(1.5); }
}
@keyframes splatDark2 {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0); }
    100% { opacity: 0; transform: translate(60px, -40px) scale(1.2); }
}
@keyframes splatDark3 {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0); }
    100% { opacity: 0; transform: translate(-40px, 60px) scale(1.4); }
}
@keyframes splatDark4 {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0); }
    100% { opacity: 0; transform: translate(50px, 45px) scale(1.1); }
}
@keyframes splatDark5 {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0); }
    100% { opacity: 0; transform: translate(5px, -70px) scale(1.3); }
}

/* NO LOVE text - big, bold, unmissable */
.preloader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #fff;
    opacity: 0;
    text-transform: uppercase;
    z-index: 100;
    white-space: nowrap;
    animation: textExplode 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 2.1s;
}

/* Dark backdrop for text clarity */
.preloader-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 70%);
    z-index: -1;
}

@keyframes textExplode {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.3);
        letter-spacing: -0.1em;
        filter: blur(20px);
    }
    50% {
        opacity: 1;
        filter: blur(0);
    }
    70% {
        transform: translate(-50%, -50%) scale(1.08);
        letter-spacing: 0.35em;
    }
    100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1);
        letter-spacing: 0.3em;
        filter: blur(0);
    }
}

/* Glitch flicker on text */
.preloader-text::before {
    content: 'NO LOVE';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #8b0000;
    z-index: -1;
    opacity: 0;
    animation: textGlitch 0.1s steps(2) infinite 2.5s;
}

@keyframes textGlitch {
    0% { 
        opacity: 0.8;
        transform: translate(-3px, 2px);
    }
    25% {
        opacity: 0;
    }
    50% { 
        opacity: 0.6;
        transform: translate(3px, -2px);
    }
    75% {
        opacity: 0;
    }
    100% { 
        opacity: 0.8;
        transform: translate(-2px, 1px);
    }
}

/* Noise Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9998;
    animation: noiseFlicker 0.15s infinite;
}

@keyframes noiseFlicker {
    0%, 100% { opacity: 0.04; }
    50% { opacity: 0.06; }
}

/* Scan Lines Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    z-index: 9997;
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Screen Tear Effect */
.screen-tear {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9996;
    overflow: hidden;
}

.tear-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(196, 30, 58, 0.3);
    box-shadow: 0 0 10px var(--red);
    animation: tearScan 4s linear infinite;
    opacity: 0;
}

@keyframes tearScan {
    0% { top: -5%; opacity: 0; }
    5% { opacity: 0.8; }
    95% { opacity: 0.8; }
    100% { top: 105%; opacity: 0; }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 3px;
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(-20px);
}

nav.scrolled .logo-img {
    opacity: 1;
    transform: translateY(0);
}

.logo:hover .logo-img {
    transform: rotate(-10deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--red);
}

.nav-links a:hover {
    color: var(--red);
    animation: navGlitch 0.3s ease;
    text-shadow: 0 0 10px var(--red);
}

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

@keyframes navGlitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(2px, -1px); }
    60% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 1px); }
    100% { transform: translate(0); }
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(196, 30, 58, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100px 100px;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 35%; top: 30%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { left: 65%; top: 40%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(6) { left: 80%; top: 20%; animation-delay: 5s; animation-duration: 11s; }
.particle:nth-child(7) { left: 90%; top: 55%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 15%; top: 80%; animation-delay: 1.5s; animation-duration: 14s; }
.particle:nth-child(9) { left: 75%; top: 75%; animation-delay: 3.5s; animation-duration: 12s; }
.particle:nth-child(10) { left: 45%; top: 15%; animation-delay: 4.5s; animation-duration: 16s; }

.particle:nth-child(odd) {
    background: var(--accent);
    width: 3px;
    height: 3px;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-60px) translateX(-10px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.6;
    }
}

/* Glowing orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(196, 30, 58, 0.15);
    top: 10%;
    left: -10%;
    animation: glowPulse 8s ease-in-out infinite;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.1);
    bottom: 10%;
    right: -5%;
    animation: glowPulse 10s ease-in-out infinite reverse;
}

.glow-3 {
    width: 200px;
    height: 200px;
    background: rgba(196, 30, 58, 0.1);
    top: 50%;
    right: 20%;
    animation: glowMove 12s ease-in-out infinite;
}

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

@keyframes glowMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.2);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

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

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: heroLogoIn 1.2s ease forwards 0.3s;
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 50%;
    animation: logoPulseRing 3s ease-in-out infinite;
}

.hero-logo::after {
    content: '';
    position: absolute;
    inset: -40px;
    border: 1px solid rgba(196, 30, 58, 0.15);
    border-radius: 50%;
    animation: logoPulseRing 3s ease-in-out infinite 0.5s;
}

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

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logoFloat 6s ease-in-out infinite, logoGlitch 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(196, 30, 58, 0.4));
}

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

@keyframes logoGlitch {
    0%, 90%, 100% { 
        filter: drop-shadow(0 0 20px rgba(196, 30, 58, 0.4));
        transform: translate(0);
    }
    91% { 
        filter: drop-shadow(4px 0 0 var(--red)) drop-shadow(-4px 0 0 var(--accent));
        transform: translate(-3px, 2px) scale(1.02);
    }
    92% { 
        filter: drop-shadow(-3px 0 0 var(--red)) drop-shadow(3px 0 0 var(--accent));
        transform: translate(3px, -2px) scale(0.98);
    }
    93% { 
        filter: drop-shadow(2px 0 0 var(--red)) drop-shadow(-2px 0 0 var(--accent));
        transform: translate(-2px, 1px);
    }
    94% { 
        filter: drop-shadow(0 0 20px rgba(196, 30, 58, 0.4));
        transform: translate(0);
    }
}

@keyframes heroLogoIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8) rotate(-10deg);
    }
    60% {
        transform: translateY(-10px) scale(1.05) rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.6s, subtitleFlicker 4s ease-in-out infinite 2s;
    text-shadow: 0 0 10px var(--red);
}

@keyframes subtitleFlicker {
    0%, 100% { opacity: 1; }
    5% { opacity: 0.4; }
    10% { opacity: 1; }
    15% { opacity: 0.6; }
    20% { opacity: 1; }
    55% { opacity: 1; }
    60% { opacity: 0.3; }
    61% { opacity: 1; }
    65% { opacity: 0.5; }
    70% { opacity: 1; }
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 0.95;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.8s;
}

.hero-title .line1 {
    display: block;
    color: var(--text-primary);
    position: relative;
    animation: textShake 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(245, 240, 232, 0.3);
}

.hero-title .line1::before {
    content: 'NO';
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--red);
    opacity: 0;
    animation: chromatic1 3s ease-in-out infinite;
}

.hero-title .line1::after {
    content: 'NO';
    position: absolute;
    left: -2px;
    top: 0;
    color: var(--accent);
    opacity: 0;
    animation: chromatic2 3s ease-in-out infinite;
}

@keyframes textShake {
    0%, 95%, 100% { transform: translate(0); }
    96% { transform: translate(-4px, 2px) skewX(-1deg); }
    97% { transform: translate(4px, -2px) skewX(1deg); }
    98% { transform: translate(-2px, -1px); }
    99% { transform: translate(2px, 1px); }
}

@keyframes chromatic1 {
    0%, 92%, 100% { opacity: 0; }
    94% { opacity: 0.5; left: 4px; }
    96% { opacity: 0.3; left: -3px; }
    98% { opacity: 0.5; left: 2px; }
}

@keyframes chromatic2 {
    0%, 93%, 100% { opacity: 0; }
    95% { opacity: 0.5; left: -4px; }
    97% { opacity: 0.3; left: 3px; }
    99% { opacity: 0.5; left: -2px; }
}

.hero-title .line2 {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--red);
    text-stroke: 2px var(--red);
    position: relative;
    animation: glitchText 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(196, 30, 58, 0.5));
}

.hero-title .line2::before,
.hero-title .line2::after {
    content: 'LOVE';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-text-stroke: 2px var(--red);
}

.hero-title .line2::before {
    color: transparent;
    animation: glitchBefore 2s ease-in-out infinite;
    -webkit-text-stroke-color: var(--accent);
}

.hero-title .line2::after {
    color: transparent;
    animation: glitchAfter 2s ease-in-out infinite;
}

@keyframes glitchText {
    0%, 80%, 100% { transform: translate(0) skewX(0); }
    82% { transform: translate(-5px, 3px) skewX(-2deg); }
    84% { transform: translate(5px, -3px) skewX(2deg); }
    86% { transform: translate(-3px, -2px) skewX(-1deg); }
    88% { transform: translate(3px, 2px) skewX(1deg); }
    90% { transform: translate(-2px, 1px); }
    92% { transform: translate(2px, -1px); }
    94% { transform: translate(0) skewX(0); }
}

@keyframes glitchBefore {
    0%, 80%, 100% { 
        clip-path: inset(0 0 0 0);
        transform: translate(0);
        opacity: 0;
    }
    82% { 
        clip-path: inset(10% 0 80% 0);
        transform: translate(-6px, 0);
        opacity: 1;
    }
    84% { 
        clip-path: inset(40% 0 40% 0);
        transform: translate(6px, 0);
        opacity: 1;
    }
    86% { 
        clip-path: inset(70% 0 20% 0);
        transform: translate(-4px, 0);
        opacity: 1;
    }
    88% { 
        clip-path: inset(20% 0 60% 0);
        transform: translate(4px, 0);
        opacity: 0.8;
    }
    90% { 
        clip-path: inset(50% 0 30% 0);
        transform: translate(-3px, 0);
        opacity: 0.6;
    }
}

@keyframes glitchAfter {
    0%, 81%, 100% { 
        clip-path: inset(0 0 0 0);
        transform: translate(0);
        opacity: 0;
    }
    83% { 
        clip-path: inset(5% 0 85% 0);
        transform: translate(5px, 0);
        opacity: 0.8;
    }
    85% { 
        clip-path: inset(60% 0 30% 0);
        transform: translate(-5px, 0);
        opacity: 0.8;
    }
    87% { 
        clip-path: inset(30% 0 50% 0);
        transform: translate(3px, 0);
        opacity: 0.7;
    }
    89% { 
        clip-path: inset(80% 0 10% 0);
        transform: translate(-3px, 0);
        opacity: 0.6;
    }
}

.hero-desc {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    max-width: 450px;
    margin: 2rem auto 3rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 2px solid var(--red);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.2s, ctaPulse 3s ease-in-out infinite 2s;
    position: relative;
    overflow: hidden;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.4);
    }
    50% {
        box-shadow: 0 0 30px 10px rgba(196, 30, 58, 0);
    }
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--red);
    transition: width 0.4s ease;
    z-index: -1;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-cta:hover::before {
    width: 100%;
}

.hero-cta:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.hero-cta:hover {
    color: var(--text-primary);
    transform: scale(1.05);
    animation: ctaShake 0.5s ease;
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.6), inset 0 0 20px rgba(196, 30, 58, 0.3);
}

@keyframes ctaShake {
    0%, 100% { transform: scale(1.05) translate(0); }
    10% { transform: scale(1.05) translate(-3px, 2px); }
    20% { transform: scale(1.05) translate(3px, -2px); }
    30% { transform: scale(1.05) translate(-2px, -1px); }
    40% { transform: scale(1.05) translate(2px, 1px); }
    50% { transform: scale(1.05) translate(-1px, 1px); }
    60% { transform: scale(1.05) translate(1px, -1px); }
    70% { transform: scale(1.05) translate(0); }
}

.hero-cta-arrow {
    transition: transform 0.3s ease;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.hero-cta:hover .hero-cta-arrow {
    transform: translateX(8px);
    animation: arrowGlitch 0.3s ease infinite;
}

@keyframes arrowGlitch {
    0%, 100% { transform: translateX(8px); opacity: 1; }
    25% { transform: translateX(12px); opacity: 0.5; }
    50% { transform: translateX(6px); opacity: 1; }
    75% { transform: translateX(10px); opacity: 0.7; }
}

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

.scroll-indicator span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
    animation: mouseGlow 2s ease-in-out infinite;
}

@keyframes mouseGlow {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(196, 30, 58, 0);
        border-color: var(--text-muted);
    }
    50% { 
        box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
        border-color: var(--red);
    }
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--red);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% { 
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

@keyframes scrollLine {
    0%, 50% { opacity: 0; transform: translateX(-50%) scaleY(0); }
    100% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

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

/* ==================== SECTION STYLES ==================== */
section {
    padding: 8rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
    animation: labelFlicker 5s ease-in-out infinite;
}

@keyframes labelFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 1; }
    52% { opacity: 0.5; }
    54% { opacity: 1; }
    56% { opacity: 0.7; }
    58% { opacity: 1; }
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    animation: titleLine 3s ease-in-out infinite;
}

@keyframes titleLine {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 120px; opacity: 0.7; }
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    height: 600px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--red);
    z-index: 1;
    transition: all 0.4s ease;
}

.about-image:hover::before {
    top: -15px;
    left: -15px;
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.5);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
    transition: all 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%) contrast(1.2) saturate(1.1);
    animation: aboutImgGlitch 0.4s ease;
}

@keyframes aboutImgGlitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 2px); filter: hue-rotate(10deg); }
    40% { transform: translate(3px, -2px); filter: hue-rotate(-10deg); }
    60% { transform: translate(-2px, -1px); }
    80% { transform: translate(2px, 1px); }
}

.about-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.about-content h3 span {
    color: var(--red);
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(196, 30, 58, 0.3);
}

.stat-item {
    transition: all 0.3s ease;
}

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

.stat-item:hover h4 {
    animation: statGlitch 0.5s ease;
    text-shadow: 0 0 20px var(--red), 3px 0 0 var(--accent), -3px 0 0 var(--red);
}

@keyframes statGlitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(2px, -1px); }
    60% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 1px); }
}

.stat-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--red);
    line-height: 1;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.3);
}

.stat-item span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--red);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    z-index: 20;
    transition: border-color 0.3s ease;
}

.gallery-item:hover::before {
    border-color: var(--red);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.gallery-overlay h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.gallery-overlay span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--red);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--red);
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    padding: 3rem 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--accent));
    transition: width 0.3s ease;
    box-shadow: 0 0 15px var(--red);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(196, 30, 58, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(196, 30, 58, 0.2);
    animation: cardGlitch 0.3s ease;
}

@keyframes cardGlitch {
    0%, 100% { transform: translateY(-10px) scale(1.02); }
    25% { transform: translateY(-10px) scale(1.02) translateX(-2px); }
    50% { transform: translateY(-10px) scale(1.02) translateX(2px); }
    75% { transform: translateY(-10px) scale(1.02) translateX(-1px); }
}

.service-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: rgba(196, 30, 58, 0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-number {
    color: rgba(196, 30, 58, 0.4);
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
    animation: numberFlicker 0.5s ease;
}

@keyframes numberFlicker {
    0%, 100% { opacity: 1; }
    20% { opacity: 0.5; }
    40% { opacity: 1; }
    60% { opacity: 0.7; }
    80% { opacity: 1; }
}

.service-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover h4 {
    color: var(--red);
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.service-price {
    margin-top: 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--red);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--red);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    position: relative;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover::before,
.faq-item.active::before {
    transform: scaleY(1);
}

.faq-item.active {
    background: linear-gradient(90deg, rgba(196, 30, 58, 0.08) 0%, transparent 100%);
}

.faq-question {
    padding: 1.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 2rem;
}

.faq-question span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question span {
    color: var(--text-primary);
    transform: translateX(5px);
}

.faq-item.active .faq-question span {
    color: #fff;
    transform: translateX(10px);
}

.faq-icon {
    width: 40px;
    height: 40px;
    position: relative;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    border-color: var(--red);
}

.faq-item.active .faq-icon {
    background: var(--red);
    border-color: var(--red);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-item:hover .faq-icon::before,
.faq-item:hover .faq-icon::after {
    background: var(--red);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: #fff;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2.5rem 2rem 2.5rem;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
    border-left: 1px solid rgba(196, 30, 58, 0.3);
    margin-left: 2.5rem;
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.4rem 1.5rem;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
        margin-left: 1.5rem;
    }
}

/* ==================== ARTISTS SECTION ==================== */
.artists {
    background: var(--bg-primary);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    text-align: center;
}

.artist-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    margin-bottom: 2rem;
    overflow: hidden;
}

.artist-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    z-index: 2;
}

.artist-card:hover .artist-image::before {
    border-color: var(--red);
    inset: 10px;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%);
    transition: all 0.5s ease;
}

.artist-card:hover .artist-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.artist-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.artist-card span {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: var(--red);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.contact-info h3 span {
    color: var(--red);
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
}

.contact-item a,
.contact-item p {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--red);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.3rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(196, 30, 58, 0.05);
}

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

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--bg-secondary);
    padding: 0 0.6rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.submit-btn {
    padding: 1.4rem 3rem;
    background: var(--red);
    border: none;
    color: var(--text-primary);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--red-dark);
    transition: left 0.4s ease;
    z-index: 0;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn:hover::before {
    left: 0;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--bg-primary);
    padding: 4rem;
    text-align: center;
    border-top: 1px solid rgba(196, 30, 58, 0.2);
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

.footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.footer-instagram svg {
    width: 20px;
    height: 20px;
}

.footer-instagram:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    z-index: 9990;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ==================== MOBILE MENU ==================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

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

@media (max-width: 768px) {
    nav {
        padding: 1.2rem 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--red);
    }

    .nav-links.active {
        right: 0;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .services-grid,
    .artists-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

    .hero-title {
        letter-spacing: 0.08em;
    }
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    animation: revealGlitch 0.6s ease;
}

@keyframes revealGlitch {
    0% { 
        opacity: 0;
        transform: translateY(60px);
        filter: blur(10px);
    }
    30% { 
        opacity: 0.5;
        transform: translateY(20px) translateX(-5px);
        filter: blur(5px);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(10px) translateX(5px);
        filter: blur(2px);
    }
    70% { 
        opacity: 0.9;
        transform: translateY(5px) translateX(-2px);
        filter: blur(0);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

/* Intense Hover Cursor */
.gallery-item:hover,
.service-card:hover,
.hero-cta:hover {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='8' fill='%23c41e3a'/%3E%3Ccircle cx='16' cy='16' r='12' fill='none' stroke='%23c41e3a' stroke-width='2'/%3E%3C/svg%3E") 16 16, pointer;
}
