/* ============================================================
   MUHAMMAD QADEER — V4 CINEMATIC EVOLUTION
   Single Source of Truth
   ============================================================ */

/* ---------- IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&family=DM+Mono:wght@400;500&display=swap');

/* ---------- VARIABLES ---------- */
:root {
    /* Readability-optimized colors */
    --text-white: #ffffff;
    --text-primary: #f5f5f5;
    --text-secondary: #e0e0e0;
    --text-body: #d8d8d8;
    --text-muted: #a8a8a8;

    /* Backgrounds */
    --bg-deep: #050505;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;

    /* Brand Colors */
    --red: #e63946;
    --red-dark: #b71c1c;
    --red-glow: rgba(230, 57, 70, 0.3);
    --red-subtle: rgba(230, 57, 70, 0.08);

    /* UI */
    --line: rgba(255, 255, 255, 0.06);
    --line-strong: rgba(255, 255, 255, 0.12);
    --shadow: rgba(0, 0, 0, 0.8);
    --max-width: 1400px;
    --nav-height: 72px;
    --border-radius: 8px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-slow: cubic-bezier(0.22, 1, 0.36, 1);
    --z-nav: 5000;
    --z-floating: 6000;
    --z-overlay: 9999;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    background: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
}
body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ---------- UTILITY ---------- */
.container {
    width: min(var(--max-width), calc(100% - 60px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.section {
    position: relative;
    padding: 120px 0;
    z-index: 1;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
    color: var(--text-white);
}
p,
li {
    color: var(--text-body);
    font-weight: 400;
}
strong {
    color: var(--text-white);
    font-weight: 700;
}
a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* ---------- EYEBROW ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--red);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

/* ---------- SECTION HEADINGS ---------- */
.section-heading {
    margin-top: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 7.5rem);
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: var(--text-white);
}
.section-heading .red {
    color: var(--red);
}
.section-intro {
    max-width: 650px;
    margin-top: 28px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    border-radius: 4px;
}
.btn-primary {
    background: var(--red);
    color: var(--text-white);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
    text-decoration: none;
}
.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
}
.btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(230, 57, 70, 0.05);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ---------- REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   FILM LEADER
   ============================================================ */
.film-leader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: var(--z-overlay);
    background: linear-gradient(90deg, var(--red), var(--red-dark), var(--red), var(--red-dark), var(--red));
    background-size: 200% 100%;
    animation: filmLeader 4s linear infinite;
}
@keyframes filmLeader {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* ============================================================
   SCROLL CUE
   ============================================================ */
.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    animation: cueFade 3s ease-in-out infinite;
}
.scroll-cue .scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--red), transparent);
}
@keyframes cueFade {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}
@media (max-width: 768px) {
    .scroll-cue {
        display: none;
    }
}

/* ============================================================
   SEQUENCE INDICATOR
   ============================================================ */
.sequence-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: var(--z-nav);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    line-height: 1.4;
}
.sequence-indicator .seq-current {
    color: var(--red);
    font-size: 1.2rem;
    font-weight: 500;
}
.sequence-indicator .seq-label {
    margin-top: 6px;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 1024px) {
    .sequence-indicator {
        display: none;
    }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    height: var(--nav-height);
    border-bottom: 1px solid transparent;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    transition: background 0.4s ease, border-color 0.4s ease;
}
.nav--scrolled {
    background: rgba(5, 5, 5, 0.95);
    border-bottom-color: var(--line);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-white);
}
.brand-logo {
    height: 40px;
    width: auto;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    color: var(--text-muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
    font-weight: 500;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: var(--text-white);
    text-decoration: none;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-action {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 1px solid var(--red);
    color: var(--text-white);
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 4px;
}
.nav-action:hover {
    background: var(--red);
    color: var(--text-white);
    text-decoration: none;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav - CSS class based */
.nav-links.nav-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 80px;
    background: var(--bg-deep);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.hero-bg-layer-2 {
    background-image: radial-gradient(ellipse at 60% 40%, rgba(230, 57, 70, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(230, 57, 70, 0.03) 0%, transparent 40%);
    opacity: 0.5;
}
.hero-red-orb {
    position: absolute;
    width: 60%;
    height: 60%;
    top: 10%;
    right: -10%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    animation: orbPulse 10s ease-in-out infinite;
    will-change: transform, opacity;
}
@keyframes orbPulse {
    0%,
    100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15) translate(-5%, -5%);
        opacity: 0.6;
    }
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: end;
    width: 100%;
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.hero-rec {
    color: var(--red);
    font-weight: 500;
}
.hero-rec::before {
    content: '● ';
    animation: recPulse 1.5s ease-in-out infinite;
}
@keyframes recPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 11vw, 11rem);
    line-height: 0.72;
    letter-spacing: -0.08em;
}
.hero-title .red {
    color: var(--red);
    text-shadow: 0 0 60px rgba(230, 57, 70, 0.12);
}
.hero-title .block {
    display: block;
}
.hero-subtitle {
    max-width: 650px;
    margin-top: 32px;
    color: var(--text-white);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.5);
}
.hero-subtitle strong {
    color: var(--text-white);
    font-weight: 700;
}
.hero-specs {
    color: var(--red);
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}
.hero-stats {
    border-left: 2px solid rgba(230, 57, 70, 0.3);
    padding-left: 35px;
    padding-bottom: 10px;
}
.stat {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.stat:last-child {
    border-bottom: 0;
}
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--text-white);
}
.stat-number .red {
    color: var(--red);
}
.stat-label {
    margin-top: 4px;
    color: var(--text-secondary);
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* ============================================================
   FILM STRIP
   ============================================================ */
.film-strip {
    display: flex;
    overflow: hidden;
    border-top: 1px solid rgba(230, 57, 70, 0.08);
    border-bottom: 1px solid rgba(230, 57, 70, 0.08);
    background: var(--bg-dark);
}
.film-track {
    flex-shrink: 0;
    display: flex;
    gap: 40px;
    padding: 10px 0;
    animation: scrollFilm 35s linear infinite;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}
.film-track .red-dot {
    color: var(--red);
}
@keyframes scrollFilm {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   PROFILE
   ============================================================ */
.intro {
    background: var(--bg-deep);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}
.intro-portrait {
    max-width: 420px;
    margin: 40px auto 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s var(--ease);
}
.intro-portrait img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
    transition: all 0.6s var(--ease);
}
.intro-portrait:hover {
    border-color: rgba(230, 57, 70, 0.2);
}
.big-statement {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    font-weight: 700;
}
.big-statement .red {
    color: var(--red);
}
.big-statement .grey {
    color: var(--text-secondary);
}
.intro-side p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.8;
}
.intro-side .signature {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 2px solid rgba(230, 57, 70, 0.15);
    color: var(--text-white);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.intro-side .signature span {
    color: var(--red);
}

/* ============================================================
   GEAR HERO
   ============================================================ */
.gear-hero {
    background: var(--bg-dark);
}
.gear-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}
.gear-item {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--border-radius);
    padding: 40px 35px;
    transition: all 0.5s var(--ease-slow);
}
.gear-item:hover {
    border-color: rgba(230, 57, 70, 0.25);
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.gear-item .gear-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--red-subtle);
    color: var(--red);
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}
.gear-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-white);
}
.gear-item .gear-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.7;
}
.gear-specs {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.gear-specs li {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-muted);
}
.gear-specs li span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.gear-item.gear-arri {
    grid-column: 1 / 2;
}
.gear-item.gear-sony {
    grid-column: 2 / 3;
}
.gear-item.gear-lenses {
    grid-column: 1 / 2;
}
.gear-item.gear-sony-lens {
    grid-column: 2 / 3;
}
.gear-item.gear-arri .gear-badge {
    background: rgba(230, 57, 70, 0.15);
    color: var(--red);
}
.gear-item.gear-sony .gear-badge {
    background: rgba(230, 57, 70, 0.08);
    color: var(--text-secondary);
}

/* ============================================================
   EQUIPMENT
   ============================================================ */
.equipment {
    background: var(--bg-deep);
}
.equipment-category {
    margin-top: 50px;
}
.equipment-category:first-of-type {
    margin-top: 60px;
}
.equipment-category-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
    background: rgba(255, 255, 255, 0.02);
}
.equipment-card {
    min-height: 150px;
    padding: 25px;
    background: var(--bg-card);
    transition: all 0.4s var(--ease);
    border: 1px solid transparent;
}
.equipment-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}
.equipment-card small {
    display: block;
    color: var(--text-muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.equipment-card h3 {
    margin-top: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--text-white);
}
.equipment-card .red-tag {
    color: var(--red);
    font-size: 0.55rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
    display: inline-block;
}
.equipment-card.highlight {
    background: rgba(230, 57, 70, 0.04);
    border-color: rgba(230, 57, 70, 0.08);
}
.equipment-card.highlight:hover {
    background: rgba(230, 57, 70, 0.08);
}

/* ============================================================
   EXPERIENCE / TIMELINE — SCROLL-LINKED
   ============================================================ */
.experience {
    background: var(--bg-dark);
}
.timeline {
    margin-top: 60px;
    position: relative;
    padding-left: 30px;
}
.timeline-progress {
    position: absolute;
    left: 8px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--red);
    transition: height 0.3s ease;
    z-index: 2;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}
.timeline-line {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(230, 57, 70, 0.15);
    z-index: 1;
}
.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 18px 0 18px 30px;
    position: relative;
    transition: all 0.4s var(--ease);
}
.timeline-item:hover {
    padding-left: 36px;
}
.timeline-marker {
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid rgba(230, 57, 70, 0.3);
    transition: all 0.5s ease;
    z-index: 3;
}
.timeline-marker.active {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
}
.timeline-tag {
    color: var(--red);
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-top: 4px;
}
.timeline-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
}
.timeline-copy {
    margin-top: 4px;
    color: var(--text-body);
    max-width: 700px;
    line-height: 1.7;
}

/* ============================================================
   NETWORK
   ============================================================ */
.network {
    background: var(--bg-deep);
}
.network-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.02);
}
.network-card {
    min-height: 160px;
    padding: 30px;
    background: var(--bg-card);
    transition: all 0.4s var(--ease);
    border: 1px solid transparent;
}
.network-card:hover {
    border-color: rgba(230, 57, 70, 0.1);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}
.network-card small {
    color: var(--red);
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.network-card h3 {
    margin-top: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--text-white);
}
.network-card .grey-text {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-top: 6px;
}
.network-card .red-link {
    color: var(--red);
    display: inline-block;
    margin-top: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.network-card .red-link:hover {
    color: var(--text-white);
    transform: translateX(6px);
    text-decoration: none;
}

/* ============================================================
   DRONE — STRONG VISUAL MOMENT
   ============================================================ */
.drone {
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.drone::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(230, 57, 70, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.drone-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}
.drone-title {
    margin-top: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.76;
    letter-spacing: -0.075em;
    color: var(--text-white);
}
.drone-title .red {
    color: var(--red);
    text-shadow: 0 0 80px rgba(230, 57, 70, 0.10);
}
.drone-copy {
    max-width: 600px;
    margin-top: 28px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}
.drone-copy strong {
    color: var(--text-white);
}
.drone-tag {
    display: inline-block;
    margin-top: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(230, 57, 70, 0.2);
    color: var(--red);
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.drone-tag:hover {
    background: rgba(230, 57, 70, 0.04);
    border-color: var(--red);
}

/* ============================================================
   LITTLE CREW
   ============================================================ */
.little-crew {
    background: var(--bg-dark);
}
.little-crew-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.little-crew-item {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--border-radius);
    transition: all 0.4s var(--ease);
}
.little-crew-item:hover {
    border-color: rgba(230, 57, 70, 0.15);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.01);
}
.little-crew-item .lc-number {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--red);
}
.little-crew-item h3 {
    margin-top: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: var(--text-white);
}
.little-crew-item p {
    margin-top: 10px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   CONTACT — FINAL FRAME
   ============================================================ */
.contact {
    background: var(--bg-dark);
    position: relative;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
}
.contact-title {
    margin-top: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.76;
    letter-spacing: -0.08em;
    color: var(--text-white);
}
.contact-title .red {
    color: var(--red);
}
.contact-outro {
    margin-top: 30px;
    color: var(--text-muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.contact-panel {
    border-top: 3px solid var(--red);
    padding-top: 10px;
}
.contact-row {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.contact-row:last-child {
    border-bottom: 0;
}
.contact-row small {
    display: block;
    margin-bottom: 4px;
    color: var(--text-muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.contact-row strong {
    font-size: 1.05rem;
    color: var(--text-white);
    font-weight: 600;
}
.contact-row a {
    color: var(--text-body);
    transition: color 0.3s ease;
}
.contact-row a:hover {
    color: var(--red);
    text-decoration: none;
}
.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-white);
    border-radius: 4px;
}
.contact-btn:hover {
    border-color: var(--red);
    color: var(--red);
    text-decoration: none;
}
.contact-btn.call {
    border-color: var(--red);
    background: var(--red);
    color: var(--text-white);
}
.contact-btn.call:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.2);
}

/* ============================================================
   BOTTOM BLUR — END CREDITS
   ============================================================ */
.bottom-blur {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.bottom-blur-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.35);
    transform: scale(1.1);
    opacity: 0.45;
}
.bottom-blur-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}
.bottom-blur-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}
.bottom-blur-content h2 .red {
    color: rgba(230, 57, 70, 0.4);
}
.bottom-blur-content p {
    color: rgba(255, 255, 255, 0.25);
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 12px;
}
.bottom-credit {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.15);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    padding: 30px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.footer-inner .red-dot {
    color: var(--red);
}
.footer-logo {
    height: 25px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

/* ============================================================
   FLOATING BAR
   ============================================================ */
.floating-bar {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: var(--z-floating);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    background: rgba(5, 5, 5, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.floating-bar a {
    min-height: 44px;
    min-width: 44px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.floating-bar .call-btn {
    background: var(--red);
    color: var(--text-white);
}
.floating-bar .call-btn:hover {
    background: var(--red-dark);
    transform: scale(1.05);
    text-decoration: none;
}
.floating-bar .whatsapp-btn {
    color: var(--text-muted);
}
.floating-bar .whatsapp-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}
.floating-bar .email-btn {
    color: var(--text-muted);
}
.floating-bar .email-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    .film-track {
        animation: none !important;
    }
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE — DESKTOP-FIRST
   ============================================================ */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    .hero-title {
        font-size: 11rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .gear-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .hero-grid {
        grid-template-columns: 1fr 300px;
        gap: 50px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-stats {
        border-left: 0;
        border-top: 2px solid rgba(230, 57, 70, 0.12);
        padding-left: 0;
        padding-top: 25px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .stat {
        border-bottom: 0;
        padding: 10px 0;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-portrait {
        max-width: 300px;
        order: -1;
        margin-top: 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .gear-showcase {
        grid-template-columns: 1fr;
    }
    .gear-item.gear-arri,
    .gear-item.gear-sony,
    .gear-item.gear-lenses,
    .gear-item.gear-sony-lens {
        grid-column: 1 / 2;
    }
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
        padding-left: 20px;
    }
    .timeline-marker {
        left: -16px;
    }
    .little-crew-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sequence-indicator {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        width: calc(100% - 32px);
    }
    .section {
        padding: 80px 0;
    }
    .nav-links {
        display: none;
    }
    .nav-action {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero {
        min-height: 900px;
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 40px;
    }
    .hero-title {
        font-size: clamp(3.5rem, 12vw, 5rem);
    }
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.6rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        text-shadow: 0 2px 30px rgba(0, 0, 0, 0.95);
    }
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        padding: 15px 0;
    }
    .stat:last-child {
        border-bottom: 0;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .network-grid {
        grid-template-columns: 1fr;
    }
    .equipment-grid {
        grid-template-columns: 1fr 1fr;
    }
    .capability {
        min-height: 200px;
        padding: 25px 20px;
    }
    .capability h3 {
        margin-top: 40px;
        font-size: 1.6rem;
    }
    .little-crew-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-actions {
        flex-direction: column;
    }
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    .floating-bar {
        flex-direction: row;
        left: 12px;
        right: 12px;
        bottom: 12px;
        border-radius: 12px;
        padding: 4px;
    }
    .floating-bar a {
        flex: 1;
        min-height: 40px;
        font-size: 0.55rem;
        padding: 0 10px;
    }
    .floating-bar .call-btn span,
    .floating-bar .whatsapp-btn span,
    .floating-bar .email-btn span {
        display: none;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .bottom-blur {
        min-height: 250px;
    }
    .image-panel,
    .drone {
        background-attachment: scroll;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-left: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .timeline-marker {
        left: -16px;
        top: 24px;
        transform: none;
    }
    .hero-bg-layer-mq2 {
        background-position: 60% center;
        mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
    }
    .section-intro {
        font-size: 1rem;
    }
    .intro-side p {
        font-size: 0.95rem;
    }
    .gear-item h3 {
        font-size: 1.6rem;
    }
    .gear-specs {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links.nav-open {
        padding: 20px;
        gap: 16px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .gear-specs {
        grid-template-columns: 1fr;
    }
    .equipment-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .nav,
    .floating-bar,
    .film-leader,
    .film-strip,
    .bottom-blur,
    .sequence-indicator,
    .scroll-cue {
        display: none !important;
    }
    body {
        background: #ffffff;
        color: #000000;
    }
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    .hero-bg {
        display: none;
    }
    .section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
    .container {
        width: 100%;
        max-width: 100%;
    }
    .btn {
        border: 1px solid #000000;
        background: transparent !important;
        color: #000000 !important;
        box-shadow: none !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}