/* ========== UNIVERSAL THEME (dark grey + maroon red) ========== */
:root {
    --primary: #e90202;
    --primary-dark: #b40101;
    --primary-light: #e90202;
    --primary-border: #b40101;
    --bg-body: #0e0e12;
    --bg-surface: #131318;
    --bg-surface-lighter: #1a1a22;
    --bg-nav: rgba(14, 14, 18, 0.92);
    --text-primary: #ececec;
    --text-secondary: #b9b9c2;
    --text-muted: #8f8f9c;
    --border-color: #2c2c34;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --whatsapp-green: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #1c1c22;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

h1,
h2,
h3,
.logo,
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-border);
    transition: 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-secondary);
    transition: 0.2s;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section (glamour) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background: url('assets/images/hero/hero.png') center/cover no-repeat;
    filter: brightness(0.75) contrast(1.15);
    z-index: -2;
    transform: scale(1.10);
    transition: transform 8s ease-out;
}

.hero:hover .hero-backdrop {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(139, 42, 42, 0.2), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.hero-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

.glamour-content {
    max-width: 780px;
    text-align: left;
    padding: 2rem 0;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.glamour-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
}

.glamour-title span {
    color: var(--primary);
    font-weight: 800;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 1.5rem 0 1.2rem 0;
}

.hero-desc-glamour {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.scroll-indicator span {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out;
}

.scroll-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-12px);
        opacity: 1;
    }
}

.btn-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 14px rgba(139, 42, 42, 0.4);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1.5px solid var(--primary);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(139, 42, 42, 0.2);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* ========== CINEMATIC LIGHTBOX (LARGER, DRAMATIC) ========== */
/* ========== DYNAMIC MOSAIC (unchanged) ========== */
.living-mosaic {
    padding: 100px 0;
    background: var(--bg-body, #0e0e12);
    position: relative;
    overflow-x: hidden;
}

.living-mosaic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(233, 2, 2, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mosaic-wrapper {
    position: relative;
    z-index: 1;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.mosaic-tile {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: var(--bg-surface, #131318);
    border: 1px solid var(--border-color, #2c2c34);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    will-change: transform;
    aspect-ratio: auto;
    animation: floatInit 0.6s ease-out;

}

.mosaic-tile.span-2 {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.mosaic-tile.span-3 {
    grid-column: span 3;
    aspect-ratio: 21 / 9;
}

.mosaic-tile:not(.span-2):not(.span-3) {
    aspect-ratio: 4 / 5;
}

.mosaic-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* shows full image, no cropping */
    display: block;
    transition: transform 0.5s, filter 0.3s;
    position: relative;
    z-index: 2;
}

.mosaic-tile:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary, #e90202);
    box-shadow: 0 25px 35px rgba(233, 2, 2, 0.3);
}

/* Optional: add a subtle glow/blur behind the image for empty areas */
.mosaic-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: 1;
    backdrop-filter: blur(12px);
    opacity: 0.6;
}

.mosaic-tile:hover img {
    transform: scale(1.07);
    filter: brightness(1.08) contrast(1.02);
}

.mosaic-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 2, 2, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.mosaic-tile:hover::after {
    opacity: 1;
}

@keyframes floatInit {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mosaic-tile {
    animation: floatInit 0.5s ease-out forwards;
    animation-delay: calc(var(--order, 0) * 0.03s);
}

/* ========== CINEMATIC LIGHTBOX – CAPTION OVERLAY ON IMAGE ========== */
.mosaic-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.3s ease;
}

.mosaic-lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-stage {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
    z-index: 10;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(233, 2, 2, 0.3);
    display: block;
}

/* CAPTION OVERLAY – bottom half, red to transparent gradient */
.lightbox-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(233, 2, 2, 0.85) 0%, rgba(233, 2, 2, 0.5) 40%, transparent 100%);
    color: white;
    padding: 2rem 1.5rem 1rem 1.5rem;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 8px 8px;
    backdrop-filter: blur(2px);
    letter-spacing: 0.5px;
    z-index: 15;
    pointer-events: none;
}

/* optional subtitle line break */
.lightbox-caption-overlay span {
    display: block;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #f0f0f0;
    margin-top: 4px;
    opacity: 0.9;
}

/* cinematic grain + vignette */
.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

.cinematic-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="1" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.08"/></svg>');
    background-repeat: repeat;
    opacity: 0.25;
    pointer-events: none;
}

/* navigation buttons */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(233, 2, 2, 0.5);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary, #e90202);
    border-color: white;
    transform: scale(1.08);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
}

/* About, YouTube, Filmography, Contact (unchanged from original) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    background: var(--bg-surface);
    padding: 1rem 1.8rem;
    border-radius: 40px;
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    font-family: 'Playfair Display', serif;
}

.about-img img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 30px var(--shadow-color);
}

/* ---------- FRESH DYNAMIC YOUTUBE GALLERY STYLES ---------- */
/* These styles complement the existing dark theme, no conflicts */
.video-showcase {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary, #ececec);
    display: inline-block;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--primary, #e90202);
    border-radius: 6px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted, #8f8f9c);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    font-weight: 400;
}

/* cinematic grid */
.cinematic-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

/* video card — glassmorphism + cinematic edge */
.video-cinema-card {
    background: rgba(19, 19, 24, 0.75);
    backdrop-filter: blur(4px);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(233, 2, 2, 0.25);
    transition: all 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: translateY(0);
}

.video-cinema-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--primary, #e90202);
    box-shadow: 0 28px 40px -15px rgba(233, 2, 2, 0.3);
    background: rgba(19, 19, 24, 0.92);
}

/* responsive wrap with 16:9 */
.video-cinema-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    background: #000;
    overflow: hidden;
}

.video-cinema-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.3s ease;
}

.video-cinema-card:hover .video-cinema-wrapper iframe {
    transform: scale(1.02);
}

/* info panel — film-style metadata */
.video-meta {
    padding: 1.4rem 1.5rem 1.8rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(10, 10, 14, 0.8) 100%);
    border-top: 1px solid rgba(233, 2, 2, 0.3);
}

.video-badge {
    display: inline-block;
    background: var(--primary, #e90202);
    padding: 0.25rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 8px rgba(233, 2, 2, 0.3);
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0.5rem 0 0.4rem;
    color: var(--text-primary, #fff);
    line-height: 1.3;
}

.video-description {
    font-size: 0.85rem;
    color: var(--text-secondary, #b9b9c2);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.video-description i {
    color: var(--primary);
    font-size: 0.75rem;
}

.watch-hint {
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--primary-light, #ff6a6a);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.video-cinema-card:hover .watch-hint {
    opacity: 1;
}

/* Force iframe to be clickable and unobstructed */
.video-cinema-wrapper {
    display: block;
    cursor: pointer;
}

.video-cinema-wrapper iframe {
    pointer-events: auto !important;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Remove any hover transform that might interfere (test) */
.video-cinema-card:hover .video-cinema-wrapper iframe {
    transform: none;
    /* temporary, to ensure no clipping */
}

/* Ensure the card itself doesn't block clicks on iframe */
.video-cinema-card {
    pointer-events: auto;
}

/* Debug: add a temporary border to see if iframe is there */
.video-cinema-wrapper iframe {
    border: 2px solid red;
    /* remove after testing */
}

/* dynamic floating effect on scroll (uses existing fade-up class) */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* additional elegant grain */
.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 40%, rgba(233, 2, 2, 0.02), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* interactive note: hover effect extends */
.video-cinema-card {
    animation: cardGlow 0s infinite;
}

@keyframes cardGlow {
    0% {
        border-color: rgba(233, 2, 2, 0.25);
    }
    100% {
        border-color: rgba(233, 2, 2, 0.45);
    }
}

/* Styles for the simple Cinematic Fire – pure CSS, no JS */
.maroon-badge {
    background: var(--primary);
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-top: 8px;
    font-weight: 600;
    color: white;
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.film-card {
    background: var(--bg-surface);
    border-radius: 28px;
    padding: 1.8rem;
    transition: 0.25s;
    border: 1px solid var(--border-color);
}

.film-card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.film-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.film-card .year {
    color: var(--primary);
    font-weight: 600;
}

.award-badge {
    background: #221212;
    border-left: 3px solid var(--primary);
    padding: 0.2rem 0.8rem;
    display: inline-block;
    font-size: 0.7rem;
    margin-top: 12px;
    color: var(--text-secondary);
}

.film-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-surface);
    border-radius: 48px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.contact-details p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.social-links a {
    background: #1e1e26;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    color: var(--text-secondary);
    transition: 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

input,
textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    background: #07070b;
    color: var(--text-primary);
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(139, 42, 42, 0.3);
}

.submit-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

footer {
    background: #08080c;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(139, 42, 42, 0.3);
    color: var(--text-muted);
}

.social-side {
    position: fixed;
    right: 20px;
    bottom: 30%;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1100;
}

.social-side a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-side .instagram-btn {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: white;
}

.social-side .instagram-btn:hover {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.social-side .whatsapp-btn {
    background: var(--whatsapp-green);
    color: white;
}

.social-side .whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.08);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-content {
    max-width: 85vw;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 20px;
    border: 2px solid var(--primary);
}

.close-lightbox {
    position: absolute;
    top: -30px;
    right: -10px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ========== DYNAMIC MOSAIC (unchanged, excellent) ========== */
.living-mosaic {
    padding: 100px 0;
    background: var(--bg-body, #0e0e12);
    position: relative;
    overflow-x: hidden;
}

.living-mosaic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(233, 2, 2, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mosaic-wrapper {
    position: relative;
    z-index: 1;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.mosaic-tile {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: var(--bg-surface, #131318);
    border: 1px solid var(--border-color, #2c2c34);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    will-change: transform;
    animation: floatInit 0.6s ease-out;
}

.mosaic-tile.span-2 {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.mosaic-tile.span-3 {
    grid-column: span 3;
    aspect-ratio: 21 / 9;
}

.mosaic-tile:not(.span-2):not(.span-3) {
    aspect-ratio: 4 / 5;
}

.mosaic-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s, filter 0.3s;
}

.mosaic-tile:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary, #e90202);
    box-shadow: 0 25px 35px rgba(233, 2, 2, 0.3);
}

.mosaic-tile:hover img {
    transform: scale(1.07);
    filter: brightness(1.08) contrast(1.02);
}

.mosaic-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 2, 2, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.mosaic-tile:hover::after {
    opacity: 1;
}

@keyframes floatInit {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mosaic-tile {
    animation: floatInit 0.5s ease-out forwards;
    animation-delay: calc(var(--order, 0) * 0.03s);
}

/* ========== Starry Background ========== */

#starCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -2;
    pointer-events: none;
    background: transparent;
}

body,
.navbar,
section,
.container,
.hero,
.mosaic-grid,
footer {
    background-color: transparent !important;
}

body {
    background-color: var(--bg-body, #0e0e12) !important;
}

.star-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: -1;
}

/* ===== PORTFOLIO ABOUT (EDITORIAL STYLE) ===== */
.about-portfolio {
    padding: 120px 0;
}

/* TOP */
.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    filter: brightness(.90) contrast(1.05) saturate(1.08) hue-rotate(-1deg);
    transition: filter 0.3s ease;
}

.about-tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.about-intro h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 1rem 0;
}

.about-intro h2 span {
    color: var(--primary);
}

.about-intro p {
    color: var(--text-secondary);
    max-width: 500px;
}

/* BIG STATEMENT */
.about-statement {
    position: relative;
    margin: 6rem 0;
    text-align: center;
}

.about-statement h1 {
    font-size: 10rem;
    opacity: 0.05;
    letter-spacing: 10px;
}

.about-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
}

.about-overlay-text p {
    font-size: 1.8rem;
    color: var(--text-primary);
}

/* BOTTOM */
.about-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.about-stats span {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.about-image-small img {
    width: 100%;
    border-radius: 24px;
}

.about-heading {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-heading span {
    color: var(--primary);
    font-size: 4.2rem;
    display: inline-block;
}

.about-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: var(--text-primary);
    opacity: 0.9;
}

.about-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.about-desc strong {
    color: var(--primary);
    font-weight: 600;
}

/* ===== CINEMATIC ABOUT ===== */

.about-cinematic {
    position: relative;
    overflow: hidden;
}

/* HEADLINE */
.about-headline {
    font-size: 3.6rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-headline span {
    color: var(--primary);
}

/* LEAD TEXT */
.about-lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* BODY TEXT */
.about-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* SIGNATURE LINE */
.about-signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 1.5rem 0;
    color: var(--primary);
    letter-spacing: 1px;
}

/* STATS UPGRADE */
.stats {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* IMAGE */
.about-img img {
    width: 100%;
    border-radius: 28px;
    transition: transform 0.4s ease;
}

.about-img:hover img {
    transform: scale(1.03);
}

/* BACKGROUND BIG TEXT */
.about-bg-text {
    position: absolute;
    bottom: -30px;
    /* pushes slightly below for premium feel */
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-weight: 800;
    opacity: 0.03;
    letter-spacing: 20px;
    pointer-events: none;
    color: white;
    text-align: center;
    width: 100%;
}

/* Extra cinematic spacing */
.about-intro {
    max-width: 520px;
}

/* ───────────────────────────────────────────────
   COMPREHENSIVE RESPONSIVE STYLES
   Covering ALL screen sizes:
   • Fold phones (≥280px)
   • Small mobiles (≥320px)
   • Smartphones (≥375px)
   • Large phones / phablets (≥480px)
   • Small tablets (≥600px)
   • Tablets portrait (≥768px)
   • Tablets landscape (≥900px)
   • Small laptops (≥1024px)
   • Laptops (≥1200px)
   • Desktops (≥1366px)
   • Large desktops (≥1600px)
   • Extra large / 4K+ (≥1920px)
   ─────────────────────────────────────────────── */

/* ========== FOLD PHONES & TINY DEVICES : 280px – 374px ========== */
@media (max-width: 374px) {
    .container {
        padding: 0 12px;
    }
    .nav-container {
        padding: 0.7rem 1rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .menu-icon {
        font-size: 1.5rem;
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 56px;
        left: -100%;
        flex-direction: column;
        background: rgba(11, 11, 15, 0.95);
        backdrop-filter: blur(20px);
        width: 85%;
        height: calc(100vh - 56px);
        padding: 1.5rem;
        transition: 0.3s;
        gap: 1.5rem;
        border-right: 2px solid var(--primary);
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li a {
        font-size: 0.9rem;
    }
    /* Hero */
    .glamour-content {
        padding: 1rem 0;
        text-align: center;
    }
    .glamour-title {
        font-size: 2rem;
        line-height: 1.15;
    }
    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    .hero-desc-glamour {
        font-size: 0.8rem;
        max-width: 100%;
    }
    .hero-divider {
        margin: 1rem auto;
    }
    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    .btn-primary,
    .btn-outline {
        padding: 10px 24px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
    .scroll-indicator {
        bottom: 15px;
        gap: 8px;
    }
    .scroll-indicator span {
        width: 7px;
        height: 7px;
    }
    /* Sections */
    section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-title::after {
        width: 40%;
        left: 30%;
        bottom: -8px;
        height: 2px;
    }
    /* About */
    .about-grid,
    .about-top,
    .about-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-heading {
        font-size: 1.6rem;
    }
    .about-heading span {
        font-size: 1.8rem;
    }
    .about-headline {
        font-size: 1.4rem;
    }
    .about-intro h2 {
        font-size: 1.4rem;
    }
    .about-highlight h3 {
        font-size: 1.2rem;
    }
    .about-desc {
        font-size: 0.85rem;
    }
    .about-lead {
        font-size: 0.9rem;
    }
    .about-signature {
        font-size: 1rem;
    }
    .about-statement h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    .about-overlay-text p {
        font-size: 1rem;
    }
    .about-bg-text {
        font-size: 2.5rem;
        letter-spacing: 6px;
        bottom: -10px;
    }
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    .stat-item {
        padding: 0.7rem 1.2rem;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    /* Mosaic */
    .mosaic-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .mosaic-tile.span-2,
    .mosaic-tile.span-3 {
        grid-column: span 1;
        aspect-ratio: 4 / 5;
    }
    .mosaic-tile {
        border-radius: 16px;
    }
    /* YouTube */
    .cinematic-video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .video-cinema-card {
        border-radius: 20px;
    }
    .video-meta {
        padding: 0.8rem;
    }
    .video-title {
        font-size: 1rem;
    }
    .video-description {
        font-size: 0.7rem;
    }
    .section-sub {
        font-size: 0.75rem;
    }
    /* Filmography */
    .film-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .film-card {
        padding: 1.2rem;
        border-radius: 20px;
    }
    .film-card h3 {
        font-size: 1.2rem;
    }
    .film-card i {
        font-size: 1.8rem;
    }
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.2rem;
        border-radius: 24px;
    }
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.3rem;
    }
    input,
    textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
        border-radius: 30px;
    }
    .submit-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
    /* Lightbox */
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .lightbox-prev {
        left: 8px;
    }
    .lightbox-next {
        right: 8px;
    }
    .lightbox-caption-overlay {
        padding: 0.8rem 0.7rem 0.6rem 0.7rem;
        font-size: 0.75rem;
    }
    .lightbox-caption-overlay span {
        font-size: 0.6rem;
    }
    .lightbox-content img {
        max-height: 65vh;
    }
    .close-lightbox {
        top: -20px;
        right: -5px;
        font-size: 1.5rem;
    }
    /* Social side */
    .social-side {
        right: 8px;
        bottom: 20%;
        gap: 10px;
    }
    .social-side a {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
    /* Footer */
    footer {
        padding: 1.2rem;
        font-size: 0.75rem;
    }
    /* About portfolio */
    .about-portfolio {
        padding: 60px 0;
    }
    .about-statement {
        margin: 3rem 0;
    }
    .about-overlay-text {
        max-width: 95%;
    }
}

/* ========== SMALL MOBILES : 375px – 479px ========== */
@media (min-width: 375px) and (max-width: 479px) {
    .container {
        padding: 0 16px;
    }
    .nav-container {
        padding: 0.8rem 1.2rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .menu-icon {
        display: block;
        font-size: 1.6rem;
    }
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: rgba(11, 11, 15, 0.95);
        backdrop-filter: blur(20px);
        width: 80%;
        height: calc(100vh - 60px);
        padding: 1.8rem;
        transition: 0.3s;
        gap: 1.8rem;
        border-right: 2px solid var(--primary);
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li a {
        font-size: 0.95rem;
    }
    /* Hero */
    .glamour-content {
        padding: 1.2rem 0;
        text-align: center;
    }
    .glamour-title {
        font-size: 2.6rem;
        line-height: 1.15;
    }
    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    .hero-desc-glamour {
        font-size: 0.9rem;
        max-width: 100%;
    }
    .hero-divider {
        margin: 1rem auto;
    }
    .btn-group {
        gap: 0.8rem;
        justify-content: center;
    }
    .btn-primary,
    .btn-outline {
        padding: 11px 26px;
        font-size: 0.9rem;
    }
    .scroll-indicator {
        bottom: 18px;
    }
    /* Sections */
    section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .section-title::after {
        width: 45%;
        left: 27.5%;
    }
    /* About */
    .about-grid,
    .about-top,
    .about-bottom {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .about-heading {
        font-size: 1.8rem;
    }
    .about-heading span {
        font-size: 2rem;
    }
    .about-headline {
        font-size: 1.6rem;
    }
    .about-intro h2 {
        font-size: 1.6rem;
    }
    .about-highlight h3 {
        font-size: 1.3rem;
    }
    .about-desc {
        font-size: 0.9rem;
    }
    .about-lead {
        font-size: 0.95rem;
    }
    .about-signature {
        font-size: 1.1rem;
    }
    .about-statement h1 {
        font-size: 4rem;
        letter-spacing: 5px;
    }
    .about-overlay-text p {
        font-size: 1.2rem;
    }
    .about-bg-text {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }
    .stats {
        gap: 1.2rem;
    }
    .stat-item {
        padding: 0.8rem 1.4rem;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    /* Mosaic */
    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .mosaic-tile.span-2,
    .mosaic-tile.span-3 {
        grid-column: span 1;
        aspect-ratio: 4 / 5;
    }
    .mosaic-tile {
        border-radius: 18px;
    }
    /* YouTube */
    .cinematic-video-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .video-cinema-card {
        border-radius: 24px;
    }
    .video-meta {
        padding: 1rem;
    }
    .video-title {
        font-size: 1.1rem;
    }
    .section-sub {
        font-size: 0.8rem;
    }
    /* Filmography */
    .film-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .film-card {
        padding: 1.4rem;
    }
    .film-card h3 {
        font-size: 1.3rem;
    }
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 1.5rem;
        border-radius: 28px;
    }
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }
    .submit-btn {
        width: 100%;
    }
    /* Lightbox */
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .lightbox-caption-overlay {
        padding: 1rem 0.8rem 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    .lightbox-caption-overlay span {
        font-size: 0.65rem;
    }
    .lightbox-content img {
        max-height: 70vh;
    }
    /* Social side */
    .social-side {
        right: 10px;
        bottom: 22%;
        gap: 12px;
    }
    .social-side a {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }
    /* Footer */
    footer {
        padding: 1.5rem;
        font-size: 0.8rem;
    }
    /* About portfolio */
    .about-portfolio {
        padding: 70px 0;
    }
    .about-statement {
        margin: 3.5rem 0;
    }
}

/* ========== LARGE PHONES / PHABLETS : 480px – 599px ========== */
@media (min-width: 480px) and (max-width: 599px) {
    .container {
        padding: 0 20px;
    }
    .logo {
        font-size: 1.6rem;
    }
    .menu-icon {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 64px;
        left: -100%;
        flex-direction: column;
        background: rgba(11, 11, 15, 0.94);
        backdrop-filter: blur(20px);
        width: 65%;
        height: calc(100vh - 64px);
        padding: 2rem;
        transition: 0.3s;
        gap: 2rem;
        border-right: 2px solid var(--primary);
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    /* Hero */
    .glamour-title {
        font-size: 3.2rem;
    }
    .hero-eyebrow {
        font-size: 0.75rem;
    }
    .hero-desc-glamour {
        font-size: 1rem;
    }
    .btn-group {
        gap: 1rem;
    }
    /* Sections */
    section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    /* About */
    .about-grid,
    .about-top,
    .about-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-heading {
        font-size: 2rem;
    }
    .about-heading span {
        font-size: 2.2rem;
    }
    .about-headline {
        font-size: 1.8rem;
    }
    .about-intro h2 {
        font-size: 1.8rem;
    }
    .about-statement h1 {
        font-size: 5rem;
        letter-spacing: 6px;
    }
    .about-overlay-text p {
        font-size: 1.4rem;
    }
    .about-bg-text {
        font-size: 4.5rem;
        letter-spacing: 10px;
    }
    /* Mosaic */
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .mosaic-tile.span-2,
    .mosaic-tile.span-3 {
        grid-column: span 1;
        aspect-ratio: 4 / 5;
    }
    /* YouTube */
    .cinematic-video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .video-title {
        font-size: 1.2rem;
    }
    /* Filmography */
    .film-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.8rem;
    }
    .submit-btn {
        width: auto;
    }
    /* Lightbox */
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
    .lightbox-prev {
        left: 12px;
    }
    .lightbox-next {
        right: 12px;
    }
    .lightbox-caption-overlay {
        padding: 1.2rem 1rem 0.8rem 1rem;
        font-size: 0.95rem;
    }
    /* Social side */
    .social-side {
        right: 14px;
        gap: 14px;
    }
    .social-side a {
        width: 46px;
        height: 46px;
        font-size: 1.6rem;
    }
}

/* ========== SMALL TABLETS : 600px – 767px ========== */
@media (min-width: 600px) and (max-width: 767px) {
    .container {
        padding: 0 24px;
    }
    .logo {
        font-size: 1.7rem;
    }
    .menu-icon {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 68px;
        left: -100%;
        flex-direction: column;
        background: rgba(11, 11, 15, 0.93);
        backdrop-filter: blur(20px);
        width: 55%;
        height: calc(100vh - 68px);
        padding: 2.2rem;
        transition: 0.3s;
        gap: 2rem;
        border-right: 2px solid var(--primary);
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    /* Hero */
    .glamour-title {
        font-size: 3.8rem;
    }
    .hero-eyebrow {
        font-size: 0.8rem;
    }
    .hero-desc-glamour {
        font-size: 1.05rem;
    }
    /* Sections */
    section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-top,
    .about-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .about-heading {
        font-size: 2.4rem;
    }
    .about-heading span {
        font-size: 2.6rem;
    }
    .about-headline {
        font-size: 2.2rem;
    }
    .about-intro h2 {
        font-size: 2rem;
    }
    .about-statement h1 {
        font-size: 6rem;
        letter-spacing: 8px;
    }
    .about-overlay-text p {
        font-size: 1.5rem;
    }
    .about-bg-text {
        font-size: 5rem;
        letter-spacing: 12px;
    }
    /* Mosaic */
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3rem;
    }
    .mosaic-tile.span-2 {
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }
    .mosaic-tile.span-3 {
        grid-column: span 2;
        aspect-ratio: 21 / 9;
    }
    /* YouTube */
    .cinematic-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .video-title {
        font-size: 1.15rem;
    }
    /* Filmography */
    .film-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    /* Lightbox */
    .lightbox-close {
        top: 18px;
        right: 18px;
    }
    .lightbox-prev {
        left: 18px;
    }
    .lightbox-next {
        right: 18px;
    }
    /* Social side */
    .social-side {
        right: 16px;
    }
}

/* ========== TABLETS PORTRAIT : 768px – 899px ========== */
@media (min-width: 768px) and (max-width: 899px) {
    .container {
        padding: 0 28px;
    }
    .menu-icon {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(11, 11, 15, 0.92);
        backdrop-filter: blur(20px);
        width: 45%;
        height: calc(100vh - 70px);
        padding: 2.5rem;
        transition: 0.3s;
        gap: 2.2rem;
        border-right: 2px solid var(--primary);
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    /* Hero */
    .glamour-title {
        font-size: 4.2rem;
    }
    .hero-desc-glamour {
        font-size: 1.1rem;
    }
    /* Sections */
    section {
        padding: 90px 0;
    }
    .section-title {
        font-size: 2.4rem;
    }
    /* About */
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .about-heading {
        font-size: 2.8rem;
    }
    .about-heading span {
        font-size: 3rem;
    }
    .about-headline {
        font-size: 2.6rem;
    }
    .about-intro h2 {
        font-size: 2.4rem;
    }
    .about-statement h1 {
        font-size: 7rem;
        letter-spacing: 8px;
    }
    .about-overlay-text p {
        font-size: 1.6rem;
    }
    .about-bg-text {
        font-size: 6rem;
        letter-spacing: 14px;
    }
    .about-top,
    .about-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    /* Mosaic */
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.4rem;
    }
    .mosaic-tile.span-2 {
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }
    .mosaic-tile.span-3 {
        grid-column: span 3;
        aspect-ratio: 21 / 9;
    }
    /* YouTube */
    .cinematic-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    /* Filmography */
    .film-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* ========== TABLETS LANDSCAPE / SMALL LAPTOPS : 900px – 1023px ========== */
@media (min-width: 900px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }
    .nav-links {
        gap: 1.8rem;
    }
    .nav-links li a {
        font-size: 0.95rem;
    }
    .logo {
        font-size: 1.7rem;
    }
    /* Hero */
    .glamour-title {
        font-size: 4.8rem;
    }
    .hero-desc-glamour {
        font-size: 1.15rem;
    }
    /* Sections */
    section {
        padding: 95px 0;
    }
    .section-title {
        font-size: 2.6rem;
    }
    /* About */
    .about-heading {
        font-size: 3.2rem;
    }
    .about-heading span {
        font-size: 3.4rem;
    }
    .about-headline {
        font-size: 3rem;
    }
    .about-intro h2 {
        font-size: 2.6rem;
    }
    .about-statement h1 {
        font-size: 8rem;
        letter-spacing: 9px;
    }
    .about-bg-text {
        font-size: 7rem;
        letter-spacing: 16px;
    }
    /* Mosaic */
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .mosaic-tile.span-2 {
        grid-column: span 2;
    }
    .mosaic-tile.span-3 {
        grid-column: span 3;
    }
    /* YouTube */
    .cinematic-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    /* Filmography */
    .film-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}

/* ========== LAPTOPS : 1024px – 1199px ========== */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        padding: 0 32px;
    }
    .glamour-title {
        font-size: 5rem;
    }
    .section-title {
        font-size: 2.7rem;
    }
    .about-heading {
        font-size: 3.4rem;
    }
    .about-heading span {
        font-size: 3.6rem;
    }
    .about-headline {
        font-size: 3.2rem;
    }
    .about-intro h2 {
        font-size: 2.8rem;
    }
    .about-statement h1 {
        font-size: 9rem;
    }
    .about-bg-text {
        font-size: 7.5rem;
    }
    .cinematic-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .film-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== DESKTOPS : 1200px – 1365px ========== */
@media (min-width: 1200px) and (max-width: 1365px) {
    .container {
        max-width: 1200px;
    }
    .glamour-title {
        font-size: 5.3rem;
    }
    .cinematic-video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .film-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== STANDARD DESKTOPS : 1366px – 1599px ========== */
@media (min-width: 1366px) and (max-width: 1599px) {
    .container {
        max-width: 1280px;
    }
    .cinematic-video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .film-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== LARGE DESKTOPS : 1600px – 1919px ========== */
@media (min-width: 1600px) and (max-width: 1919px) {
    .container {
        max-width: 1400px;
    }
    .glamour-title {
        font-size: 6rem;
    }
    .hero-container {
        padding-left: 2rem;
    }
    .cinematic-video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    .film-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    .mosaic-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    .section-title {
        font-size: 3rem;
    }
}

/* ========== EXTRA LARGE / 4K+ DESKTOPS : 1920px+ ========== */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    .nav-container {
        max-width: 1700px;
    }
    .glamour-title {
        font-size: 7rem;
    }
    .glamour-content {
        max-width: 900px;
    }
    .hero-desc-glamour {
        font-size: 1.4rem;
        max-width: 650px;
    }
    .hero-eyebrow {
        font-size: 1rem;
        letter-spacing: 5px;
    }
    .section-title {
        font-size: 3.4rem;
    }
    .cinematic-video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    .film-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2.5rem;
    }
    .mosaic-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
    .mosaic-tile.span-2 {
        grid-column: span 2;
    }
    .mosaic-tile.span-3 {
        grid-column: span 3;
    }
    .about-heading {
        font-size: 4.5rem;
    }
    .about-heading span {
        font-size: 5rem;
    }
    .about-headline {
        font-size: 4.2rem;
    }
    .about-intro h2 {
        font-size: 3.4rem;
    }
    .about-statement h1 {
        font-size: 12rem;
        letter-spacing: 14px;
    }
    .about-overlay-text p {
        font-size: 2rem;
    }
    .about-bg-text {
        font-size: 10rem;
        letter-spacing: 24px;
    }
    section {
        padding: 140px 0;
    }
    .btn-primary,
    .btn-outline {
        padding: 16px 40px;
        font-size: 1.05rem;
    }
    .social-side a {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .social-side {
        gap: 20px;
        right: 30px;
    }
    footer {
        padding: 3rem;
        font-size: 0.95rem;
    }
}

/* ========== TOUCH DEVICE OPTIMIZATIONS ========== */
@media (hover: none) and (pointer: coarse) {
    .mosaic-tile:hover {
        transform: none;
    }
    .mosaic-tile:hover img {
        transform: none;
    }
    .video-cinema-card:hover {
        transform: none;
    }
    .video-cinema-card:hover .video-cinema-wrapper iframe {
        transform: none;
    }
    .film-card:hover {
        transform: none;
    }
    .btn-primary:hover,
    .btn-outline:hover {
        transform: none;
    }
    .mosaic-tile:active {
        transform: scale(0.97);
        transition: transform 0.15s;
    }
    .video-cinema-card:active {
        transform: scale(0.98);
        transition: transform 0.15s;
    }
}

/* ========== ORIENTATION: LANDSCAPE ON SMALL DEVICES ========== */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    .glamour-title {
        font-size: 2.4rem;
    }
    .glamour-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-desc-glamour {
        max-width: 100%;
        font-size: 0.85rem;
    }
    .hero-divider {
        margin: 0.8rem auto;
    }
    .btn-group {
        justify-content: center;
    }
    .scroll-indicator {
        bottom: 10px;
    }
    .nav-links {
        width: 50%;
        gap: 1rem;
        padding: 1.2rem;
    }
    .nav-links li a {
        font-size: 0.85rem;
    }
}

/* ========== FOLD PHONES (UNFOLDED WIDER STATE) : 640px – 767px with narrow aspect ========== */
@media (min-width: 640px) and (max-width: 767px) and (max-aspect-ratio: 3/4) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .cinematic-video-grid {
        grid-template-columns: 1fr;
    }
    .film-grid {
        grid-template-columns: 1fr;
    }
    .glamour-title {
        font-size: 3rem;
    }
}

/* ========== HIGH-DPI / RETINA SCREENS ========== */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .mosaic-tile img {
        image-rendering: auto;
    }
    .lightbox-img {
        image-rendering: auto;
    }
}

/* ========== PREFERS-REDUCED-MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-backdrop {
        transition: none;
    }
    .scroll-indicator span {
        animation: none;
    }
}