/* =========================================
    1. CSS Reset & Core Variables (Neo-Brutalist Theme)
    ========================================= */
:root {
    /* Color Palette - Light Editorial/Brutalist */
    --bg-dark: #f4f0ea; /* Off-white paper */
    --bg-darker: #e9e4dc;
    --bg-light-accent: #ffffff;
    
    /* Text Colors - High Contrast */
    --text-primary: #080808;
    --text-secondary: #333333;
    --text-muted: #555555;
    
    /* Brand Accents - Vibrant Pop */
    --accent-primary: #2563eb; /* Royal Blue */
    --accent-secondary: #ea580c; /* Tangerine */
    --accent-error: #e11d48;
    --accent-success: #16a34a;
    
    /* Surfaces & Borders - Hard Edges */
    --surface-glass: #ffffff;
    --surface-glass-hover: #f8fafc;
    --surface-border: #111111; /* Hard black borders */
    --surface-border-hover: #2563eb;
    
    /* Effects - Hard Shadows instead of Glows */
    --glow-primary: 8px 8px 0px rgba(17, 17, 17, 1);
    --glow-secondary: 4px 4px 0px rgba(17, 17, 17, 1);
    --transition-smooth: 0.2s ease-out; /* Snappier transitions */
    
    /* Spacing Metrics - Zero Border Radius */
    --section-padding: clamp(80px, 10vw, 150px) 8%;
    --border-radius-sm: 0px; 
    --border-radius-md: 0px;
    --border-radius-lg: 0px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; 
    scroll-behavior: smooth;
}

/* Lenis Smooth Scroll Core Styles */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* Architectural Dot Grid Overlay instead of Film Grain */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9999;
    opacity: 0.15;
    background-image: radial-gradient(var(--text-muted) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* =========================================
    2. Custom Cursor Design
    ========================================= */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    z-index: 10000;
    pointer-events: none;
    border-radius: 0; /* Square cursor */
}
.cursor-dot {
    width: 10px; height: 10px;
    background-color: var(--accent-primary);
}
.cursor-outline {
    width: 40px; height: 40px;
    border: 2px solid var(--text-primary);
    transition: width 0.1s, height 0.1s, background-color 0.1s;
}

/* =========================================
    3. Typography & Core Layout
    ========================================= */
h1, h2, h3, h4, .logo {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: none; /* Removed uppercase for editorial feel */
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
    width: 100%;
}

.text-reveal-wrap { overflow: hidden; display: block; }
.text-reveal { display: block; transform: translateY(110%); }

/* Neo-Brutalist Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid var(--text-primary);
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    box-shadow: 6px 6px 0px var(--text-primary);
}

.btn-primary {
    background: var(--accent-primary);
    color: #ffffff;
}
.btn-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px var(--text-primary);
    background: var(--accent-secondary);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
}
.btn-secondary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px var(--text-primary);
    background: #e5e5e5;
}

/* =========================================
    4. Navigation System
    ========================================= */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1rem 8%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 4px solid var(--text-primary);
    box-shadow: 0px 6px 0px rgba(17, 17, 17, 1);
    transition: transform 0.3s ease;
}

.logo { 
    font-size: 2rem; 
    font-weight: 900; 
    letter-spacing: -2px; 
    color: var(--accent-primary);
    text-decoration: none;
    background: #fff;
    padding: 0px 10px;
    border: 2px solid var(--text-primary);
    box-shadow: 3px 3px 0px var(--text-primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.logo:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--text-primary);
}

.nav-links { display: flex; gap: 3rem; align-items: center; }
.nav-links a {
    color: rgb(95, 93, 91);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: 0px; left: 0; width: 100%; height: 3px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.nav-links a:hover::after { 
    transform: scaleX(1); 
    transform-origin: left;
}

/* Mobile Menu Toggle Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* =========================================
    5. Hero Section 
    ========================================= */
.hero {
    min-height: 100vh;
    display: flex; 
    align-items: center;
    padding-top: 17vh;
    border-bottom: 4px solid var(--text-primary);
}

.hero-bg { display: none; }

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    align-items: center;
}

.hero h1 {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.06em;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.hero-title-accent {
    color: var(--accent-primary);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-roles {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-top: 2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 90%;
    font-weight: 600;
    border-left: 5px solid var(--accent-primary);
    padding-left: 1.5rem;
}

.hero-cta { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* Arch Profile Image Setup */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 0.85; 
    margin: 0 auto;
    border-radius: 250px 250px 0 0; 
    padding: 0;
    background: var(--accent-secondary);
    border: 4px solid var(--text-primary);
    box-shadow: 15px 15px 0px var(--text-primary);
    transition: transform 0.3s;
}

.hero-image-wrapper:hover {
    transform: translate(-5px, -5px);
    box-shadow: 20px 20px 0px var(--text-primary);
}

.hero-image-inner {
    width: 100%; height: 100%;
    border-radius: 246px 246px 0 0;
    overflow: hidden;
    background-color: var(--bg-light-accent);
}

.hero-image-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: sepia(20%) contrast(110%);
}

/* =========================================
    6. About Section 
    ========================================= */
.about-wrapper {
    display: grid; grid-template-columns: 6fr 6fr; gap: 6rem; align-items: center;
}

.about-text p {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    line-height: 1.7; color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}
.about-text p strong { 
    color: var(--text-primary); 
    background: #fbbf24; 
    padding: 0 5px;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 4px solid var(--text-primary);
}
.stat-item h4 {
    font-size: 4rem;
    color: var(--text-primary);
    margin-bottom: 0rem;
    letter-spacing: -3px;
}
.stat-item span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 800;
    text-transform: uppercase;
}

/* Polaroid Gallery */
.morph-gallery { position: relative; width: 100%; height: 600px; }

.morph-shape {
    position: absolute; overflow: hidden;
    background: #fff;
    padding: 15px 15px 50px 15px; 
    border: 4px solid var(--text-primary);
    box-shadow: 10px 10px 0px var(--text-primary);
    transition: transform 0.3s ease, z-index 0s;
}

.morph-shape img {
    width: 100%; height: 100%; object-fit: cover;
    border: 3px solid var(--text-primary);
}

.shape-1 {
    width: 350px; height: 400px; top: 0; right: 5%; z-index: 2;
    transform: rotate(6deg);
}
.shape-2 {
    width: 350px; height: 400px; bottom: 0; left: 0; z-index: 1;
    transform: rotate(-8deg);
}

.morph-shape:hover { transform: rotate(0deg) scale(1.05); z-index: 10; }

/* =========================================
    7. Skills & Tech Stack Matrix
    ========================================= */
.skills-header { margin-bottom: 4rem; }

.bento-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 2rem;
}

.bento-item {
    background: #ffffff !important;
    border: 4px solid var(--text-primary) !important;
    border-radius: 0 !important;
    padding: 2.5rem;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 8px 8px 0px var(--text-primary);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative; overflow: hidden;
}

.bento-item:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--text-primary);
}

.bento-item::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px);
    opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.bento-item:hover::before { opacity: 1; }

.bento-span-2 { grid-column: span 2; }
.bento-span-row-2 { grid-row: span 2; }

.tech-icons { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: auto; }
.tech-icons img {
    width: 50px; height: 50px; 
    filter: drop-shadow(3px 3px 0px rgba(0,0,0,1));
    transition: transform 0.2s;
}

.bento-item:hover .tech-icons img { transform: translateY(-5px); }
.invert-icon { filter: drop-shadow(3px 3px 0px rgba(0,0,0,1)); }

.bento-item h3, .mobile-bento-title { 
    font-size: 1.8rem !important; font-weight: 800; color: var(--text-primary) !important; letter-spacing: -1px;
}
.bento-item p, .mobile-bento-desc { 
    color: var(--text-secondary) !important; font-size: 1.05rem !important; margin-top: 1rem; font-weight: 500;
}

/* =========================================
    8. Projects Showcase
    ========================================= */
.project-list {
    display: flex; flex-direction: column; gap: 8rem; margin-top: 5rem;
}

.project-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.project-row:nth-child(even) { direction: rtl; }
.project-row:nth-child(even) > * { direction: ltr; }

.project-visual {
    width: 100%; height: 500px; border-radius: 0; overflow: hidden; position: relative;
    border: 4px solid var(--text-primary); box-shadow: 15px 15px 0px var(--text-primary);
    background-color: var(--bg-darker); 
}

.project-visual img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}

.project-visual:hover img { transform: scale(1.05); }

.project-info h3 { font-size: 3rem; margin-bottom: 1.5rem; }
.project-info p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; font-weight: 500; }

.tech-tags { display: flex; gap: 0.8rem; margin-bottom: 2rem; flex-wrap: wrap;}
.tech-tags span {
    padding: 0.4rem 1rem; background: #ffffff; border: 2px solid var(--text-primary);
    font-size: 0.85rem; font-weight: 800; text-transform: uppercase; color: var(--text-primary);
    box-shadow: 3px 3px 0px var(--text-primary);
}

.btn-link {
    display: inline-flex; align-items: center; gap: 1rem;
    color: var(--text-primary); text-decoration: none;
    font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 800;
    text-transform: uppercase; background: var(--accent-secondary);
    padding: 0.8rem 1.5rem; border: 3px solid var(--text-primary);
    box-shadow: 5px 5px 0px var(--text-primary); transition: transform 0.2s, box-shadow 0.2s;
}
.btn-link::after { content: '→'; font-size: 1.5rem; }
.btn-link:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0px var(--text-primary); }

/* =========================================
    9. Reviews / Marquee Component
    ========================================= */
#reviews { overflow: hidden; border-top: 4px solid var(--text-primary); border-bottom: 4px solid var(--text-primary); background: #ffffff; }

.marquee-container {
    width: 100vw; position: relative; left: 50%; right: 50%;
    margin-left: -50vw; margin-right: -50vw; padding: 4rem 0; overflow: hidden;
}

.marquee-content {
    display: flex; width: max-content; gap: 3rem;
    animation: marquee 25s linear infinite; padding: 0 1rem;
}
.marquee-content:hover { animation-play-state: paused; }

.review-card {
    background: var(--bg-dark); border: 4px solid var(--text-primary); padding: 2.5rem; width: 450px;
    box-shadow: 8px 8px 0px var(--text-primary); transition: transform 0.2s;
}

.review-card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0px var(--text-primary); background: #fff;}

.review-card .stars { color: var(--accent-secondary); font-size: 1.5rem; margin-bottom: 1rem; }
.review-card p { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2rem; }
.review-card small { display: block; color: var(--text-secondary); font-weight: 800; text-transform: uppercase; border-top: 3px solid var(--text-primary); padding-top: 1rem; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 1.5rem)); } }

/* =========================================
    10. Contact Section & Form Architecture
    ========================================= */
.contact-section { position: relative; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; margin-top: 4rem; }

.contact-info h3 { font-size: 3rem; margin-bottom: 1.5rem; }
.contact-info p { font-size: 1.2rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 3rem; }

.contact-methods { display: flex; flex-direction: column; gap: 2rem; }
.method-label { font-size: 0.9rem; font-weight: 800; color: var(--text-secondary); text-transform: uppercase; }
.method-value {
    font-family: 'Space Grotesk', sans-serif; font-size: 2rem; color: var(--text-primary); text-decoration: none; font-weight: 900;
    display: inline-block; position: relative;
}
.method-value::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-primary); transform: scaleX(0); transform-origin: right; transition: transform 0.2s;
}
.method-value:hover::after { transform: scaleX(1); transform-origin: left; }

/* Form Styling */
.contact-form {
    background: #ffffff; padding: 3rem; border: 4px solid var(--text-primary); box-shadow: 12px 12px 0px var(--text-primary);
}

.input-group { position: relative; margin-bottom: 2.5rem; }

.input-field {
    width: 100%; background: var(--bg-dark); border: 3px solid var(--text-primary);
    padding: 1.2rem 1rem; font-size: 1.1rem; color: var(--text-primary); font-family: 'Inter', sans-serif;
    font-weight: 600; transition: box-shadow 0.2s; resize: none;
}
.input-field:focus { outline: none; box-shadow: 6px 6px 0px var(--text-primary); background: #fff;}

.input-label {
    position: absolute; top: -12px; left: 15px; background: #fff; padding: 0 5px;
    font-size: 0.85rem; font-weight: 800; color: var(--text-primary); text-transform: uppercase; border: 2px solid var(--text-primary);
}

.error-message { position: absolute; bottom: -1.8rem; left: 0; color: var(--accent-error); font-size: 0.85rem; font-weight: 700; opacity: 0; }
.input-field.error { border-color: var(--accent-error); }
.input-field.error ~ .error-message { opacity: 1; }

.submit-btn {
    width: 100%; padding: 1.5rem; background: var(--text-primary); color: #fff; border: 3px solid var(--text-primary);
    font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 800; text-transform: uppercase;
    cursor: pointer; transition: 0.2s; box-shadow: 8px 8px 0px rgba(0,0,0,0.2);
}
.submit-btn:hover { background: var(--accent-primary); transform: translate(3px, 3px); box-shadow: 5px 5px 0px rgba(0,0,0,0.2); }
.submit-btn:active { transform: translate(8px, 8px); box-shadow: none; }

.loader { display: none; width: 24px; height: 24px; border: 4px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s linear infinite; }
.loading .loader { display: block; margin: 0 auto;}
.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
    11. Comprehensive Footer
    ========================================= */
.site-footer {
    background: var(--text-primary); color: #ffffff; padding: 80px 8% 40px; border-top: 6px solid var(--accent-primary);
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 6rem; }

.footer-brand .logo {
    color: var(--text-primary); font-size: 2.5rem; border-color: #ffffff;
    box-shadow: 4px 4px 0px #ffffff; display: inline-block; margin-bottom: 1.5rem;
}
.footer-brand p { color: #cccccc; font-size: 1rem; font-weight: 500; max-width: 80%; }

.footer-heading { color: #ffffff; font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; margin-bottom: 2rem; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: #cccccc; text-decoration: none; font-weight: 600; transition: color 0.2s; display: inline-block; }
.footer-links a:hover { color: var(--accent-secondary); transform: translateX(5px); }

.social-list-icons a { display: flex; align-items: center; gap: 12px; }
.social-list-icons i { font-size: 1.2rem; width: 20px; text-align: center; }

.newsletter-form { display: flex; gap: 10px; margin-top: 1.5rem; }
.newsletter-input { flex: 1; padding: 0.8rem 1rem; background: #ffffff; border: none; border-radius: 0; font-weight: 600; }
.newsletter-input:focus { outline: 4px solid var(--accent-secondary); }
.newsletter-btn { padding: 0.8rem 1.5rem; background: var(--accent-secondary); color: #fff; border: none; border-radius: 0; font-weight: 800; cursor: pointer; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 3px solid #333333; color: #888888; font-weight: 600; }

.social-icons { display: flex; gap: 1.5rem; }
.social-icons a { color: #888; font-size: 1.4rem; transition: color 0.2s; }
.social-icons a:hover { color: #fff; }

/* =========================================
    12. Responsive Architecture (Including Mobile Nav Override)
    ========================================= */
@media (max-width: 1200px) {
    h2 { font-size: 4rem; }
    .project-visual { height: 400px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-roles { margin: 2rem auto; border-left: none; border-top: 5px solid var(--accent-primary); padding-left: 0; padding-top: 1rem; }
    .hero-cta { justify-content: center; }
    
    .about-wrapper, .contact-wrapper { grid-template-columns: 1fr; gap: 4rem; }
    .about-text { text-align: center; }
    .about-stats { justify-content: center; }
    .morph-gallery { display: none; }
    
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .project-row { grid-template-columns: 1fr; gap: 2rem; }
    .project-row:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px 6%; }
    
    /* MOBILE NAVIGATION STYLES */
    nav { 
        padding: 1rem 6%; 
        border-bottom: 4px solid var(--text-primary);
    }
    
    .menu-toggle {
        display: flex; /* Show hamburger icon */
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        border-bottom: 4px solid var(--text-primary);
        box-shadow: 0px 10px 0px rgba(17, 17, 17, 1);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease-in-out;
        z-index: -1; 
    }

    /* When the .active class is applied to .nav-links via JavaScript */
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        padding: 1.5rem 2rem;
        border-top: 2px solid var(--text-primary);
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
    }

    .nav-links a::after {
        display: none; /* remove desktop hover line */
    }

    .nav-links a:hover {
        background: var(--accent-primary);
        color: #fff;
    }
    
    /* Other mobile adjustments */
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(250px, auto); }
    .bento-span-2 { grid-column: span 1; }
    .bento-span-row-2 { grid-row: span 1; }
    
    .hero h1 { font-size: 3.5rem; }
    .contact-form { padding: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-image-wrapper { max-width: 280px; }
    .stat-item h4 { font-size: 3rem; }
    .review-card { width: 300px; padding: 1.5rem; }
    .contact-methods .method-value { font-size: 1.3rem; }
}

/* =========================================
   13. Hero Image Slideshow Override
   ========================================= */
.hero-image-inner { position: relative; }

.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transform: scale(1.1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active { opacity: 1; transform: scale(1); filter: sepia(20%) contrast(110%); }