/* CSS Reset & Variables */
:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-color: #ffffff;
    --accent-red: #E50914;
    --accent-pink: #FF66C4;
    /* For the modern aesthetic */
    --accent-blue: #3EBCFF;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-cinematic: 'Cinzel', serif;
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
    height: 100vh;
}

/* --- 1. CINEMATIC INTRO (UPDATED) --- */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    transition: opacity 0.8s ease;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.word-red {
    color: var(--accent-red);
}

.word-white {
    color: #fff;
    animation: blink 1s infinite;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: #333;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #fff;
    animation: loadProgress 2s ease-in-out forwards;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* --- NAV --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: all 0.3s;
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--accent-red);
}

/* --- GLOBAL CINEMATIC UTILS --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

/* Hover States for Cursor */
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower,
body:has(.movie-card:hover) .cursor-follower,
body:has(.photo-item:hover) .cursor-follower {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}


/* --- 2. HERO SECTION (VIDEO BG) --- */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    /* Darken for text readability */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.4) 0%,
            rgba(5, 5, 5, 0) 50%,
            rgba(5, 5, 5, 1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    mix-blend-mode: overlay;
    /* Interacts with video */
}

.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.85;
}

.title-line {
    font-family: var(--font-heading);
    font-size: 15vw;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -5px;
}

.title-line.outline {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.hero-meta {
    margin-top: 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.separator {
    color: var(--accent-red);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: #fff;
    animation: scrollLine 2s infinite;
    transform-origin: top;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@media (max-width: 768px) {
    .title-line {
        font-size: 18vw;
    }
}

/* --- 3. BENTO GRID --- */
.bento-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Specific Card Styles */
.profile-card {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
}

.role-tag {
    color: var(--accent-pink);
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: auto;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .num {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat .label {
    font-size: 0.8rem;
    opacity: 0.6;
}

.skill-card {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-3d {
    font-size: 3rem;
    margin-bottom: 1rem;
}





/* --- 4. NETFLIX SLIDER --- */
.netflix-section {
    padding: 5rem 0;
    overflow: hidden;
}

.netflix-section .section-header {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-controls button {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 10px;
}

.netflix-slider {
    display: flex;
    gap: 1rem;
    padding: 2rem 5%;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar */
    scroll-snap-type: x mandatory;
}

.movie-card {
    min-width: 300px;
    height: 450px;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

.movie-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .card-info {
    opacity: 1;
}

.match-score {
    color: #46d369;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.tags span {
    font-size: 0.8rem;
    color: #ccc;
    margin-right: 10px;
}

/* Footer */
.footer {
    padding: 6rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5rem;
    background: #000;
}

.footer h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 5px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.f-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.f-link:hover {
    color: var(--accent-red);
    letter-spacing: 3px;
}

/* Animations */
@keyframes textZoomReveal {
    from {
        opacity: 0;
        transform: scale(1.2);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .profile-card {
        grid-column: span 2;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 3rem auto;
    }

    .hero-visuals {
        display: none;
    }

    /* Hide complicated visuals on tablet for now to keep it clean */
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .bento-card {
        min-height: 200px;
    }
}

/* --- SCROLL REVEAL UTILITIES --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --- 5. PHOTOGRAPHY GRID (NEW) --- */
.photo-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.photo-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.photo-item {
    margin-bottom: 1.5rem;
    break-inside: avoid;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-item img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.view-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

/* Video Card Specifics */
.movie-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .photo-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .photo-grid {
        column-count: 1;
    }
}

/* --- NEW HOME LAYOUT SECTIONS --- */

/* 2. Value Statement */
.value-statement {
    padding: 8rem 5%;
    background: #000;
    text-align: center;
    position: relative;
    z-index: 5;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.value-text {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.4;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.value-text span {
    display: block;
    opacity: 0.8;
}

/* 3. Signature Reel Link */
.signature-reel-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
}

.reel-trigger {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem 4rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    text-transform: uppercase;
}

.reel-trigger:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* 4. Roles Grid */
.roles-section {
    padding: 6rem 5%;
    background: #050505;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.role-card {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.role-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.role-list {
    list-style: none;
}

.role-list li {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.role-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

/* 5. Tools & Tech */
.tools-section {
    padding: 4rem 5%;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    background: #000;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
}

.tool-icon {
    font-size: 2.5rem;
    opacity: 0.5;
    transition: all 0.3s;
    cursor: default;
    position: relative;
}

.tool-icon:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.tool-icon img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.tool-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.tool-icon:hover::after {
    opacity: 1;
}

/* 6. About Micro */
.about-micro {
    padding: 8rem 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.about-meta {
    font-family: var(--font-display);
    color: var(--accent-red);
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .value-text {
        font-size: 2rem;
    }
}

/* Intro Navigation Links */
.intro-link {
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.intro-link:hover,
.intro-link.active {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* --- 7. WORK PAGE FILTERS --- */
.work-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 5% 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 180px;
    text-align: center;
}

.filter-btn:hover,
.filter-btn.active {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.work-section-content {
    display: none;
    /* Hidden by default to reduce clutter */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.work-section-content.active-category {
    display: block;
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .work-filters {
        gap: 1rem;
    }

    .filter-btn {
        width: 100%;
        min-width: auto;
    }
}

/* --- 6. VIDEO CAROUSEL (NEW) --- */
.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    pointer-events: none;
    /* Allow clicks to pass through to buttons if needed, but buttons are z-100 */
}

.slide-content h2.slide-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.3s;
    /* Staggered reveal */
}

.carousel-slide.active .slide-content h2.slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .reel-trigger {
    pointer-events: auto;
    /* Re-enable pointer events for button */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.5s;
    /* Staggered reveal */
}

.carousel-slide.active .slide-content .reel-trigger {
    opacity: 1;
    transform: translateY(0);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #fff;
    color: #000;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.indicator.active {
    background: var(--accent-red);
    width: 60px;
}

@media (max-width: 768px) {
    .slide-content h2.slide-title {
        font-size: 2.5rem;

    }
}

/* --- 9. 3D COVERFLOW SLIDER --- */
.coverflow-section {
    padding: 5rem 0;
    overflow: hidden;
    perspective: 1000px;
}

.coverflow-container {
    position: relative;
    width: 100%;
    height: 650px;
    /* Adjust based on card height */
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.cover-card {
    position: absolute;
    width: 400px;
    height: 550px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    will-change: transform, opacity;
    cursor: pointer;
}

.cover-card.active {
    /* Reflection Effect only on active card to save performance */
    -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.cover-card.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.cover-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 20px;
}

.cover-card.active {
    z-index: 1000 !important;
    transform: translateX(0) scale(1) rotateY(0deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.cover-card.active::after {
    opacity: 0;
}

/* Side Cards Dimming */
.cover-card:not(.active)::after {
    opacity: 0.4;
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s;
    z-index: 2;
}

.cover-card.active .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.card-content p {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- GLOBAL MEDIA LIGHTBOX --- */
#media-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

#media-lightbox.active {
    display: flex;
    opacity: 1;
}

#lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 100001;
    transition: transform 0.2s;
}

#lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    color: var(--accent-red);
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    /* No container box */
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    /* Shadow on media */
    width: auto;
    height: auto;
}

/* --- REFACTORED INLINE STYLES --- */
.intro-block {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: #080808;
}

.intro-nav {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.intro-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
}

.intro-divider {
    width: 50px;
    height: 2px;
    background: var(--accent-red);
    margin: 1rem auto;
}

.intro-subtitle {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.intro-quote {
    font-family: var(--font-cinematic);
    font-size: 1.3rem;
    color: #fff;
    font-style: italic;
    opacity: 0.9;
}

.roles-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: var(--font-display);
    color: var(--accent-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-top: 0.5rem;
}

.about-micro-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.6;
}

.cta-section {
    padding: 6rem 5%;
    text-align: center;
    background: #050505;
    border-top: 1px solid #111;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--accent-red);
    border-radius: 50px;
    color: var(--accent-red);
    font-family: var(--font-display);
    letter-spacing: 2px;
    font-weight: bold;
    background: rgba(229, 9, 20, 0.1);
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--accent-red);
    color: #fff;
}

.cta-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--accent-red);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent-red);
}

.cta-button:hover .cta-indicator {
    background: #fff;
    box-shadow: 0 0 10px #fff;
}

/* --- MOBILE OPTIMIZATION (<768px) --- */
@media (max-width: 768px) {

    /* 1. Global Section Padding Reduction */
    section,
    .intro-block,
    .value-statement,
    .roles-section,
    .tools-section,
    .about-micro,
    .cta-section,
    .footer {
        padding: 4rem 5% !important;
    }

    /* 2. Hero Section */
    .title-line {
        font-size: 16vw;
        line-height: 0.95;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
        margin-top: 1.5rem;
    }

    .separator {
        display: none;
    }

    /* 3. Intro Block */
    .intro-nav {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .intro-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .intro-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .intro-quote {
        font-size: 1.1rem;
    }

    /* 4. Value Statement */
    .value-text {
        font-size: 1.6rem;
    }

    /* 5. Roles */
    .roles-header {
        margin-bottom: 3rem;
    }

    .roles-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .role-card {
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .role-card h3 {
        font-size: 1.5rem;
    }

    /* 6. Tools */
    .tools-section {
        gap: 2rem;
    }

    .tool-icon {
        font-size: 2rem;
    }

    /* 7. Carousel & Reel */
    .slide-content h2.slide-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .reel-trigger {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-width: 1px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    /* 8. Footer */
    .footer-socials {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer h2 {
        font-size: 1.8rem;
    }

    /* 9. CTA Section */
    .cta-title {
        font-size: 1.8rem;
    }

    /* 10. Intro Overlay */
    .brand-name {
        font-size: 1.5rem;
    }
}