/* ============================================
   DESIGN SYSTEM & VARIABLES (CINEMATIC DARK THEME)
   ============================================ */
:root {
    /* Theme Colors (Cinematic Dark) */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    
    --text-primary: #e1e1e1;
    --text-secondary: #a1a1a6;
    --text-tertiary: #6b6b70;
    
    /* Refined Muted Gold Accent */
    --accent: #c4a484;
    --accent-light: #d6ba9f;
    --accent-soft: rgba(196, 164, 132, 0.1);
    --accent-glow: rgba(196, 164, 132, 0.2);
    --accent-bg: rgba(196, 164, 132, 0.05);
    
    --gold-accent: #c4a484;
    
    --white: #0a0a0a; /* Cards and elements background inverted to dark */
    --black: #ffffff; /* Black inverted to white */
    
    /* Apple-Style Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    --font-serif: var(--font-display);
    
    /* Animation Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-smooth: all 0.5s var(--ease-out);
    
    --wrap: 1200px;
    --gap: 32px;
}

/* ============================================
   RESET & SYSTEM BASICS
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Selection */
::selection {
    background: #333333;
    color: #ffffff;
}

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

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

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

/* Minimal Ambient Glows (Apple Style) */
.ambient-glows {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.5;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.glow-1 {
    width: 55vw;
    height: 55vw;
    top: -10vw;
    right: -10vw;
    background: radial-gradient(circle, rgba(196,164,132,0.12) 0%, transparent 70%); /* Soft Gold glow */
}

.glow-2 {
    width: 65vw;
    height: 65vw;
    bottom: -15vw;
    left: -15vw;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); /* Subtle White glow */
}

/* ============================================
   BACKGROUND BLOBS & EFFECTS (SOFT & WARM)
   ============================================ */
/* Tech grid pattern in very dark grey */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    background-position: center;
}

/* ============================================
   TYPOGRAPHY & GLOBAL STYLES
   ============================================ */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.section-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
    border-left: 2px solid var(--accent);
    padding-left: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.section-top {
    margin-bottom: 56px;
}

.section-sub {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 30%, #86868b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.serif-text {
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition-smooth);
    letter-spacing: -0.01em;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 900px;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 32px;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.nav-logo-dot {
    color: var(--text-secondary);
}

.nav-center-year {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link--cta {
    padding: 12px 24px;
    background: var(--accent);
    color: var(--white) !important;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: all 0.3s;
}

.nav-link--cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.25);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    z-index: 1001;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

.nav-burger.open span:first-child {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-burger.open span:last-child {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay (Hidden on desktop) */
.mobile-menu {
    display: none;
}

/* ============================================
   HERO & GRID WRAPPER
   ============================================ */
.hero {
    padding: 140px 0 80px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FANNED VIDEO SHOWCASE (LIGHT METAPHOR)
   ============================================ */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.fan-showcase {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 600px;
    perspective: 1200px;
}

.fan-card {
    position: absolute;
    width: 270px;
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform-origin: center center;
    transition: transform 0.6s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), z-index 0.3s;
    cursor: pointer;
    left: 80px;
    top: 50px;
}

.fan-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}

.fan-card.active video {
    opacity: 1;
}

/* Base Active/Highlight Styling */
.fan-card.active {
    border-color: var(--accent);
    box-shadow: 
        0 40px 80px var(--accent-glow),
        0 20px 40px rgba(0, 0, 0, 0.5);
}

/* --- Active Card 1 (Default) --- */
.fan-showcase.active-0 .card-1 {
    transform: translate3d(0, -20px, 0) rotate(0deg) scale(1.25);
    z-index: 5;
}
.fan-showcase.active-0 .card-2 {
    transform: translate3d(180px, 15px, 0) rotate(8deg) scale(0.85);
    z-index: 4;
}
.fan-showcase.active-0 .card-3 {
    transform: translate3d(270px, 40px, 0) rotate(14deg) scale(0.8);
    z-index: 3;
}
.fan-showcase.active-0 .card-4 {
    transform: translate3d(350px, 65px, 0) rotate(20deg) scale(0.75);
    z-index: 2;
}

/* --- Active Card 2 --- */
.fan-showcase.active-1 .card-1 {
    transform: translate3d(-100px, 20px, 0) rotate(-8deg) scale(0.85);
    z-index: 3;
}
.fan-showcase.active-1 .card-2 {
    transform: translate3d(80px, -20px, 0) rotate(0deg) scale(1.25);
    z-index: 5;
}
.fan-showcase.active-1 .card-3 {
    transform: translate3d(240px, 15px, 0) rotate(8deg) scale(0.85);
    z-index: 4;
}
.fan-showcase.active-1 .card-4 {
    transform: translate3d(320px, 40px, 0) rotate(14deg) scale(0.8);
    z-index: 2;
}

/* --- Active Card 3 --- */
.fan-showcase.active-2 .card-1 {
    transform: translate3d(-170px, 40px, 0) rotate(-14deg) scale(0.8);
    z-index: 2;
}
.fan-showcase.active-2 .card-2 {
    transform: translate3d(-70px, 20px, 0) rotate(-8deg) scale(0.85);
    z-index: 3;
}
.fan-showcase.active-2 .card-3 {
    transform: translate3d(130px, -20px, 0) rotate(0deg) scale(1.25);
    z-index: 5;
}
.fan-showcase.active-2 .card-4 {
    transform: translate3d(290px, 15px, 0) rotate(8deg) scale(0.85);
    z-index: 4;
}

/* --- Active Card 4 --- */
.fan-showcase.active-3 .card-1 {
    transform: translate3d(-230px, 60px, 0) rotate(-20deg) scale(0.75);
    z-index: 2;
}
.fan-showcase.active-3 .card-2 {
    transform: translate3d(-140px, 40px, 0) rotate(-14deg) scale(0.8);
    z-index: 3;
}
.fan-showcase.active-3 .card-3 {
    transform: translate3d(-20px, 20px, 0) rotate(-8deg) scale(0.85);
    z-index: 4;
}
.fan-showcase.active-3 .card-4 {
    transform: translate3d(180px, -20px, 0) rotate(0deg) scale(1.25);
    z-index: 5;
}

.fan-card-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fan-card.active .fan-card-info {
    opacity: 1;
}

.card-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.card-tag {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--white);
    color: var(--text-primary);
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ============================================
   SELECTED WORK GRID (LIGHT CARD DESIGN)
   ============================================ */
.work {
    padding: 100px 0;
    position: relative;
}

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

.reel-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.reel-video {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.reel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 0.6s var(--ease-out), filter 0.4s;
}

.reel-card:hover .reel-video video {
    transform: scale(1.03);
    filter: brightness(1);
}

.reel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
    transition: all 0.4s;
}

.reel-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--ease-out);
    opacity: 0;
    transform: scale(0.6) translateY(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reel-card:hover .reel-play {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.reel-play:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1) !important;
}

.reel-meta {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reel-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-tertiary);
    margin-bottom: 2px;
    display: block;
}

.reel-title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.reel-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-secondary);
}

.reel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 24px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(196, 164, 132, 0.08);
}

/* ============================================
   ABOUT ME SECTION (CLEAN CARDS)
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.about-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 24px;
}

.about-text--lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.stat:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 6px;
    font-weight: 500;
}

/* Tools Card */
.tools-card {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tools-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 18px;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.tool:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--white);
}

/* ============================================
   SERVICES SECTION (MINIMAL TABLE)
   ============================================ */
.services {
    padding: 120px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.service-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: 12px;
}

.service-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-row:hover {
    padding-left: 20px;
    padding-right: 20px;
    border-color: transparent;
}

.service-row:hover::before {
    opacity: 1;
}

.service-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-tertiary);
    position: relative;
    z-index: 2;
}

.service-row:hover .service-num {
    color: var(--accent);
}

.service-info {
    position: relative;
    z-index: 2;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.service-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.service-row:hover .service-price {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ============================================
   FAQ ACCORDION SECTION (MINIMAL BOXES)
   ============================================ */
.faq {
    padding: 120px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    transform: rotate(45deg);
    transition: transform 0.4s var(--ease-out), color 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question:hover .faq-icon {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
    padding: 0 30px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* FAQ Active State */
.faq-item.active {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
    color: var(--accent);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* slide down height */
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    position: relative;
}

.contact-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 400px;
    line-height: 1.7;
}

.contact-channels {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.channel-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.channel-svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: transform 0.3s;
}

.channel-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.channel-val {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.channel:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.channel:hover .channel-svg {
    transform: scale(1.1) rotate(-3deg);
}

.channel:hover .channel-val {
    color: var(--accent);
}

/* Sleek Light Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.form-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s;
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-tertiary);
    opacity: 0.7;
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 44px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--bg-secondary);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.88rem;
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ============================================
   SCROLL REVEAL (AESTHETIC ANIMATION)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger reveals */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }

/* ============================================
   VIDEO LIGHTBOX (MODAL VIEW)
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 5, 5, 0.95); /* Deep cinematic background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
    padding: 32px;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE LAYOUTS (MOBILE-FRIENDLY)
   ============================================ */
@media (max-width: 1100px) {
    .hero-wrap {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 32px;
    }

    .about-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .reel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --gap: 20px;
    }

    .nav-links {
        display: none !important;
    }

    /* DARK mobile menu - no white theme leak */
    .mobile-menu {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(5, 5, 5, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .mobile-menu.open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu .nav-link {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    .mobile-menu .nav-link--cta {
        margin-top: 12px;
    }

    .nav-burger {
        display: flex;
    }

    .nav-center-year {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.4rem);
    }

    .hero-desc {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

    .service-row {
        grid-template-columns: 40px 1fr;
        gap: 16px;
    }

    .service-name {
        font-size: 1.15rem;
    }

    .service-desc {
        font-size: 0.88rem;
    }

    .service-price {
        grid-column: 2;
        margin-top: 8px;
        align-self: flex-start;
        font-size: 0.92rem;
    }

    /* Contact section mobile */
    .contact-inner {
        gap: 40px;
    }

    .contact-desc {
        font-size: 1rem;
    }

    .channel {
        padding: 16px 18px;
    }

    .channel-val {
        font-size: 0.8rem;
    }

    .form {
        padding: 28px 22px;
    }

    /* Footer mobile */
    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
    }

    /* About section */
    .about {
        padding: 80px 0;
    }

    .about-text--lead {
        font-size: 1.1rem;
    }

    /* FAQ */
    .faq {
        padding: 80px 0;
    }

    /* Services */
    .services {
        padding: 80px 0;
    }

    /* Work */
    .work {
        padding: 80px 0;
    }

    .section-top {
        margin-bottom: 36px;
    }

    /* Hide fan video showcase on mobile */
    .hero-visual {
        display: none;
    }

    /* Lightbox mobile */
    .lightbox {
        padding: 16px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 500px) {
    .reel-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reel-card {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }



    .stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .form {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .form-field input,
    .form-field textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .tools-card {
        padding: 22px;
    }

    .tool {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-channels {
        margin-top: 32px;
    }
}

/* ============================================
   NOISE OVERLAY & CUSTOM CURSOR
   ============================================ */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cursor-dot,
.cursor-outline {
    display: none !important; /* Disabled custom cursor to restore native behavior */
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--white);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: width 0.2s, height 0.2s, background-color 0.2s, transform 0.2s;
}

/* Lenis */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
