* ================================================================
   CHRIS CERNEY - CINEMATIC PORTFOLIO
   Fonts: Cormorant Garamond + Lora (kept)
   ================================================================ */

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

:root {
    --bg-dark: #050505;
    --bg-section: #0b0b0b;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --text-primary: #eae6e1;
    --text-secondary: #8a8580;
    --text-muted: #4a4745;
    --accent: #c9a96e;
    --accent-dim: rgba(201, 169, 110, 0.15);
    --accent-glow: rgba(201, 169, 110, 0.08);
    --accent-hover: #dbb97e;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px rgba(201, 169, 110, 0.08);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: 'Lora', 'Georgia', serif;
    color: var(--text-primary);
    line-height: 1.8;
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: var(--bg-dark);
}

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

/* ==================== FILM GRAIN OVERLAY ==================== */
.film-grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    animation: grain 0.5s steps(1) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -3%); }
    20% { transform: translate(3%, 1%); }
    30% { transform: translate(-1%, 2%); }
    40% { transform: translate(2%, -2%); }
    50% { transform: translate(-3%, 3%); }
    60% { transform: translate(1%, -1%); }
    70% { transform: translate(-2%, 2%); }
    80% { transform: translate(3%, -3%); }
    90% { transform: translate(-1%, 1%); }
}

/* ==================== SCROLL PROGRESS BAR ==================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(201, 169, 110, 0.3);
}

/* ==================== CURSOR GLOW ==================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(5, 5, 5, 0.92);
    border-bottom-color: var(--border-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .brand-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.12em;
    display: flex;
    gap: 0.4em;
    transition: color var(--transition);
}

.brand-first {
    opacity: 0.5;
    transition: opacity var(--transition);
}

.nav-brand .brand-link:hover .brand-first {
    opacity: 1;
}

.brand-last {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
    padding: 0.3em 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.hero-bg-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    pointer-events: none;
}

.hero-bg-lines span {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.03) 30%, rgba(255,255,255,0.03) 70%, transparent 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-eyebrow {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.title-line {
    display: block;
    font-size: clamp(4rem, 12vw, 9rem);
    overflow: hidden;
}

.title-line:last-child {
    color: var(--accent);
    font-style: italic;
    font-weight: 300;
}

.hero-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 2rem auto;
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.75rem;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
    font-size: 0.8rem;
    font-family: 'Lora', serif;
    letter-spacing: 0.15em;
    border: 1px solid var(--accent);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 0;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.btn-primary::before {
    background: var(--accent-hover);
}

.btn-primary:hover {
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2);
    color: var(--bg-dark);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

/* ==================== SECTION HEADERS ==================== */
section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

.section-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 1.25rem auto 0;
}

/* ==================== PORTFOLIO ==================== */
.portfolio-section {
    background: var(--bg-dark);
}

.portfolio-featured {
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color var(--transition);
    pointer-events: none;
    z-index: 5;
}

.portfolio-item:hover::after {
    border-color: var(--accent-dim);
}

.portfolio-item:hover {
    border-color: rgba(201, 169, 110, 0.15);
    box-shadow: var(--shadow), var(--shadow-glow);
    transform: translateY(-6px);
}

.portfolio-number {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--accent);
    letter-spacing: 0.15em;
    z-index: 6;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-number {
    opacity: 1;
}

.portfolio-item.featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
}

.portfolio-item.featured .portfolio-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.portfolio-item.featured .portfolio-info h3 {
    font-size: 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out-expo);
}

.portfolio-item:hover .video-wrapper iframe {
    transform: scale(1.02);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-year {
    font-family: 'Lora', serif;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.portfolio-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
    transition: color var(--transition);
}

.portfolio-item:hover .portfolio-info h3 {
    color: var(--accent);
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.watch-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--transition);
}

.watch-link svg {
    transition: transform var(--transition);
}

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

.watch-link:hover svg {
    transform: translateX(4px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

/* ==================== MARQUEE ==================== */
.marquee-strip {
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-section);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== ABOUT ==================== */
.about-section {
    background: var(--bg-section);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-text {
    margin-bottom: 3rem;
}

.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-content p:not(.about-lead) {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 2;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 6vw, 5rem);
    margin-bottom: 3rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==================== BLOG ==================== */
.blog-section {
    background: var(--bg-dark);
}

.blog-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
    background: var(--bg-section);
    position: relative;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    position: relative;
    width: 100%;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1.1rem 1.25rem 0.7rem;
    border: 1px solid var(--border-light);
    background: rgba(255,255,255,0.03);
    color: var(--text-primary);
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent);
    background: rgba(201, 169, 110, 0.03);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.05);
}

.newsletter-form label {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition);
}

.newsletter-form input:focus + label,
.newsletter-form input:not(:placeholder-shown) + label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==================== DONATE ==================== */
.donate-section {
    background: var(--bg-dark);
}

.donate-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.donate-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

/* ==================== CONTACT ==================== */
.contact-section {
    background: var(--bg-section);
}

.contact-info {
    text-align: center;
}

.contact-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.04em;
    transition: all var(--transition);
    position: relative;
    display: inline-block;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
}

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

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.footer-domain {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: lowercase;
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

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

.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

.portfolio-grid .reveal-section:nth-child(1) { transition-delay: 0s; }
.portfolio-grid .reveal-section:nth-child(2) { transition-delay: 0.12s; }
.portfolio-grid .reveal-section:nth-child(3) { transition-delay: 0.24s; }
.portfolio-grid .reveal-section:nth-child(4) { transition-delay: 0.12s; }
.portfolio-grid .reveal-section:nth-child(5) { transition-delay: 0.24s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .portfolio-item.featured {
        grid-template-columns: 1fr;
    }

    .portfolio-item.featured .portfolio-info {
        padding: 2rem;
    }

    .portfolio-item.featured .portfolio-info h3 {
        font-size: 1.5rem;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        background: rgba(5, 5, 5, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 7rem 2.5rem 2rem;
        gap: 0;
        transition: right 0.5s var(--ease-out-expo);
        border-left: 1px solid var(--border-color);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        font-size: 0.9rem;
        padding: 1.25rem 0;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
    }

    .title-line {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    section {
        padding: 4.5rem 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stats {
        gap: 2rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .cursor-glow {
        display: none;
    }

    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .portfolio-info {
        padding: 1.5rem;
    }

    .portfolio-info h3 {
        font-size: 1.3rem;
    }

    .marquee-track span {
        font-size: 0.9rem;
    }
}

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

    .film-grain {
        animation: none;
    }

    .reveal-text,
    .reveal-section {
        opacity: 1;
        transform: none;
    }
}

/* ==================== DIRECTOR REEL ==================== */
.director-reel-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.director-reel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.director-reel-gif {
    display: block;
    max-width: 100%;
    width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
