/* ═══════════════════════════════════════════════════════════════
   PSY-VISION — Immersive Dark UI
   Urbex & Paranormal Experience
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    /* Colors */
    --black:        #050505;
    --black-soft:   #0a0a0a;
    --dark:         #111111;
    --dark-soft:    #1a1a1a;
    --dark-card:    #141414;
    --gray-dark:    #2a2a2a;
    --gray:         #555;
    --gray-light:   #888;
    --white-ghost:  #d4d4d4;
    --white:        #f0f0f0;

    --red-deep:     #6b0000;
    --red:          #8b0000;
    --red-bright:   #c41e3a;
    --red-glow:     #dc143c;
    --red-neon:     #ff1744;

    /* Typography */
    --font-display: 'Creepster', cursive;
    --font-heading: 'Cinzel', serif;
    --font-body:    'Inter', sans-serif;

    /* Spacing */
    --section-pad:  clamp(80px, 12vh, 160px);
    --container:    1200px;

    /* Animation */
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:  cubic-bezier(0.45, 0, 0.55, 1);
    --transition:   0.4s var(--ease-out);
}

/* ─── RESET ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--dark);
}

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

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

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

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--red-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 50px;
    height: 50px;
    border-color: var(--red-neon);
    background: rgba(220, 20, 60, 0.1);
}

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--red-glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    transition: opacity 0.3s;
}

/* ─── FILM GRAIN OVERLAY ─── */
.grain-overlay {
    position: fixed;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;
    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)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    animation: grain 0.5s steps(6) infinite;
    opacity: 0.5;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(3%, -15%); }
    50% { transform: translate(12%, 9%); }
    70% { transform: translate(9%, 4%); }
    90% { transform: translate(-1%, 7%); }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(20px, 4vw, 60px);
    transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px clamp(20px, 4vw, 60px);
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 3px;
    transition: transform var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px var(--red-glow));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 8px var(--red-glow)); }
    50% { filter: drop-shadow(0 0 20px var(--red-neon)); }
}

.logo-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red-glow);
    transition: width 0.5s var(--ease-out);
    box-shadow: 0 0 8px var(--red-glow);
}

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

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

/* Burger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
    z-index: 2;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Luminous Flicker Effect */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 10rem);
    line-height: 1;
    letter-spacing: 8px;
    color: #e8e8e8;
    position: relative;
    text-shadow:
        0 0 10px rgba(232, 232, 232, 0.3),
        0 0 40px rgba(139, 0, 0, 0.4),
        0 0 80px rgba(139, 0, 0, 0.15);
    animation: flicker 6s ease-in-out infinite;
}

.hero-title span {
    display: inline-block;
    background: linear-gradient(
        90deg,
        #e8e8e8 0%,
        #ffffff 40%,
        #e8e8e8 50%,
        #b0b0b0 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-sweep 8s ease-in-out infinite;
}

/* Light sweep across the text */
.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 40%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 60%,
        transparent 100%
    );
    animation: light-sweep 6s ease-in-out infinite;
    pointer-events: none;
}

/* Remove the second pseudo-element */
.hero-title::after {
    display: none;
}

@keyframes flicker {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(232, 232, 232, 0.3),
            0 0 40px rgba(139, 0, 0, 0.4),
            0 0 80px rgba(139, 0, 0, 0.15);
    }
    50% {
        text-shadow:
            0 0 15px rgba(232, 232, 232, 0.4),
            0 0 60px rgba(139, 0, 0, 0.5),
            0 0 100px rgba(139, 0, 0, 0.2);
    }
    92% {
        text-shadow:
            0 0 10px rgba(232, 232, 232, 0.3),
            0 0 40px rgba(139, 0, 0, 0.4),
            0 0 80px rgba(139, 0, 0, 0.15);
    }
    93% {
        text-shadow:
            0 0 5px rgba(232, 232, 232, 0.1),
            0 0 20px rgba(139, 0, 0, 0.15);
        opacity: 0.8;
    }
    94% {
        text-shadow:
            0 0 15px rgba(232, 232, 232, 0.5),
            0 0 60px rgba(139, 0, 0, 0.6),
            0 0 100px rgba(139, 0, 0, 0.3);
        opacity: 1;
    }
}

@keyframes text-sweep {
    0%, 100% { background-position: 200% center; }
    50% { background-position: -200% center; }
}

@keyframes light-sweep {
    0%, 40% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    60%, 100% { left: 200%; opacity: 0; }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--gray-light);
    margin-top: 24px;
    margin-bottom: 48px;
}

/* CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 40px;
    border: 1px solid var(--red);
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    background: transparent;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--red-deep), transparent);
    transition: left 0.6s var(--ease-out);
}

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

.hero-cta:hover {
    border-color: var(--red-bright);
    box-shadow:
        0 0 30px rgba(220, 20, 60, 0.3),
        inset 0 0 30px rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.cta-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.hero-cta:hover .cta-icon {
    transform: scale(1.3);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.hero-cta:hover .cta-glow {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    animation: fade-in-up 1s 2s both;
}

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

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

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 0.5; transform: translateX(-50%) translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION BASE STYLES
   ═══════════════════════════════════════════════════════════════ */
.section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 4px;
    color: var(--white);
    line-height: 1.1;
}

.text-accent {
    color: var(--red-glow);
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-light);
    margin-top: 12px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.about-text strong {
    color: var(--white);
    font-weight: 600;
}

/* Manifesto */
.about-manifesto {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-dark);
}

.manifesto-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
}

.manifesto-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.manifesto-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--dark-card);
    border-left: 2px solid var(--red-deep);
    transition: all 0.4s var(--ease-out);
}

.manifesto-list li:hover {
    border-left-color: var(--red-bright);
    background: rgba(139, 0, 0, 0.08);
    transform: translateX(6px);
}

.manifesto-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    filter: grayscale(0.3);
}

.manifesto-rule {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-style: italic;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* About Visual */
.about-visual {
    position: relative;
}

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

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--red);
    border-style: solid;
    z-index: 2;
}

.frame-corner.top-left { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.frame-corner.top-right { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.frame-corner.bottom-left { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.frame-corner.bottom-right { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.about-image {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
        url('../assets/img/gallery/gallery-3.png') center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.image-scanline {
    position: absolute;
    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: 1;
}

/* ═══════════════════════════════════════════════════════════════
   VIDEOS SECTION
   ═══════════════════════════════════════════════════════════════ */
.videos {
    background: var(--black);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    position: relative;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    pointer-events: none;
}

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

.video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 0, 0, 0.1);
}

.video-card.featured {
    grid-column: span 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-card.featured .video-wrapper {
    padding-top: 45%;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background 0.3s;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    transition: all 0.4s var(--ease-out);
    background: rgba(139, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.play-btn svg {
    width: 24px;
    height: 24px;
}

.video-card:hover .play-btn {
    background: var(--red);
    border-color: var(--red-bright);
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.5);
}

/* Static noise effect */
.video-static {
    position: absolute;
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
    opacity: 0.15;
    z-index: 1;
    animation: grain 0.3s steps(4) infinite;
}

.video-info {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.video-info p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.video-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.video-card:hover .video-glow {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════ */
.gallery {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: none;
}

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

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

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--dark-soft);
    transition: transform 0.8s var(--ease-out);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease-out);
}

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

.gallery-caption {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.gallery-icon {
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
    backdrop-filter: blur(20px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--white);
    padding: 10px;
    transition: color 0.3s;
    cursor: none;
    z-index: 2;
}

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

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

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--gray-light);
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
.contact {
    background: var(--black);
}

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

.contact-card {
    position: relative;
    padding: 40px 28px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 0, 0, 0.1);
    background: var(--dark-soft);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--red-bright);
    transition: all 0.4s;
}

.contact-card:hover .contact-icon svg {
    color: var(--red-neon);
    filter: drop-shadow(0 0 12px rgba(220, 20, 60, 0.6));
    transform: scale(1.1);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

.contact-card p {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.contact-arrow {
    font-size: 1.2rem;
    color: var(--gray-dark);
    transition: all 0.4s var(--ease-out);
    margin-top: auto;
}

.contact-card:hover .contact-arrow {
    color: var(--red-glow);
    transform: translateX(6px);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    padding: 40px 0;
    position: relative;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-dark), transparent);
    margin-bottom: 40px;
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--white);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--red);
    letter-spacing: 2px;
    margin-top: 8px;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s var(--ease-out);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .video-card.featured {
        grid-column: span 1;
    }

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.5s var(--ease-out);
        border-left: 1px solid rgba(139, 0, 0, 0.2);
    }

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

    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }

    .about-stats {
        gap: 20px;
    }

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

    .gallery-item.gi-tall,
    .gallery-item.gi-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .hero-cta {
        padding: 14px 30px;
        font-size: 0.8rem;
    }

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

    body {
        cursor: auto;
    }

    button, a {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-title {
        letter-spacing: 2px;
    }
}

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

    .grain-overlay {
        display: none;
    }
}
