/* Page-specific styles for industries/food-beverage.html */
/* ═══════════════════════════════════════════════════════════
           EMILY OBERMAN DESIGN SYSTEM — FOOD & BEVERAGE PAGE
           Visual Feast. Photography Forward. Warm and Delicious.
           ═══════════════════════════════════════════════════════════ */

        :root {
            /* Primary Brand */
            --signal-red: #E63946;
            --warm-gold: #D4A84B;
            --deep-navy: #1D3557;

            /* Neutrals - Warm, Never Sterile */
            --cream: #FAF8F5;
            --warm-white: #FFFFFF;
            --soft-gray: #6B7280;
            --charcoal: #2D3748;

            /* Food-specific warm tones */
            --rich-brown: #3D2314;
            --warm-orange: #E07A3D;
            --deep-burgundy: #722F37;

            /* Supporting */
            --blush: #FDF2F0;
            --sage: #E8F0E8;
            --slate: #64748B;

            /* Typography */
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Space Grotesk', system-ui, sans-serif;

            /* Spacing */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 96px;

            /* Shadows */
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            --shadow-glow: 0 0 24px rgba(230,57,70,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--charcoal);
            background: var(--cream);
            -webkit-font-smoothing: antialiased;
        }

        /* ═══════════════════════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════════════════════ */

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-lg) var(--space-2xl);
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .nav.scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav.hero-visible {
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .nav.hero-visible .nav-logo,
        .nav.hero-visible .nav-links a:not(.nav-cta) {
            color: white;
        }

        .nav.hero-visible.scrolled {
            background: rgba(250, 248, 245, 0.95);
        }

        .nav.hero-visible.scrolled .nav-logo,
        .nav.hero-visible.scrolled .nav-links a:not(.nav-cta) {
            color: var(--charcoal);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--deep-navy);
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: color 0.3s ease;
        }

        .nav-logo span {
            color: var(--signal-red);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
        }

        .nav-links a {
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--signal-red);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--signal-red);
            border-radius: 1px;
        }

        .nav-cta {
            background: var(--signal-red) !important;
            color: white !important;
            padding: 12px 24px !important;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: all 0.2s ease !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md), var(--shadow-glow);
        }

        .nav-mobile {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-sm);
        }

        .nav-mobile svg {
            width: 24px;
            height: 24px;
            stroke: var(--charcoal);
            transition: stroke 0.3s ease;
        }

        .nav.hero-visible .nav-mobile svg {
            stroke: white;
        }

        .nav.hero-visible.scrolled .nav-mobile svg {
            stroke: var(--charcoal);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--cream);
            z-index: 999;
            padding: 100px var(--space-xl) var(--space-xl);
            flex-direction: column;
            gap: var(--space-lg);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--charcoal);
            text-decoration: none;
            padding: var(--space-md) 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .mobile-menu a:hover {
            color: var(--signal-red);
        }

        /* ═══════════════════════════════════════════════════════════
           HERO SECTION — FULL BLEED PHOTOGRAPHY
           ═══════════════════════════════════════════════════════════ */

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-top: 100px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/food-photography/food-24.jpg') center center / cover no-repeat;
            /* Fallback gradient for when image loads */
            background-color: var(--rich-brown);
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.3) 0%,
                rgba(0,0,0,0.5) 50%,
                rgba(0,0,0,0.7) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: var(--space-2xl);
            max-width: 900px;
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--warm-gold);
            margin-bottom: var(--space-md);
            display: inline-block;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 700;
            line-height: 1.1;
            color: white;
            margin-bottom: var(--space-xl);
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .hero h1 em {
            font-style: italic;
            color: var(--warm-gold);
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: clamp(17px, 2vw, 20px);
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto var(--space-2xl);
            line-height: 1.7;
        }

        .hero-stat {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 16px;
            padding: var(--space-xl) var(--space-2xl);
            margin-bottom: var(--space-2xl);
        }

        .hero-stat-number {
            font-family: var(--font-display);
            font-size: clamp(48px, 8vw, 80px);
            font-weight: 700;
            color: var(--signal-red);
            line-height: 1;
            text-shadow: 0 2px 20px rgba(230,57,70,0.4);
        }

        .hero-stat-label {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            margin-top: var(--space-sm);
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: var(--space-md);
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--signal-red);
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 36px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }

        .btn-primary svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            transition: transform 0.2s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-ghost {
            background: transparent;
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
        }

        .btn-ghost:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
        }

        /* ═══════════════════════════════════════════════════════════
           PHOTOGRAPHY SHOWCASE — MASONRY GRID
           ═══════════════════════════════════════════════════════════ */

        .gallery-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--warm-white);
        }

        .gallery-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .section-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 600;
            color: var(--charcoal);
            line-height: 1.2;
        }

        .section-headline em {
            font-style: italic;
            color: var(--signal-red);
        }

        .gallery-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--soft-gray);
            margin-top: var(--space-md);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 200px;
            grid-auto-flow: dense;
            gap: var(--space-md);
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            background: var(--soft-gray);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* Featured items span multiple cells */
        .gallery-item.featured {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item.tall {
            grid-row: span 2;
        }

        .gallery-item.wide {
            grid-column: span 2;
        }

        /* ═══════════════════════════════════════════════════════════
           OUR STORY SECTION
           ═══════════════════════════════════════════════════════════ */

        .story-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--cream);
        }

        .story-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
        }

        .story-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-md);
        }

        .story-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--soft-gray);
            min-height: 150px;
        }

        .story-image:first-child {
            grid-column: span 2;
            min-height: 250px;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .story-text h2 {
            font-family: var(--font-display);
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-xl);
            line-height: 1.2;
        }

        .story-text h2 em {
            font-style: italic;
            color: var(--signal-red);
        }

        .story-text p {
            font-family: var(--font-body);
            font-size: 17px;
            color: var(--soft-gray);
            line-height: 1.8;
            margin-bottom: var(--space-lg);
        }

        .story-text p:first-of-type {
            font-size: 19px;
            color: var(--charcoal);
        }

        .story-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-gold);
            color: white;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 18px;
            border-radius: 100px;
            margin-top: var(--space-md);
        }

        /* ═══════════════════════════════════════════════════════════
           STATS SECTION
           ═══════════════════════════════════════════════════════════ */

        .stats-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--deep-navy);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .stats-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stats-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .stats-section .section-label {
            color: var(--warm-gold);
        }

        .stats-section .section-headline {
            color: white;
        }

        .stats-section .section-headline em {
            color: var(--warm-gold);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-xl);
        }

        .stat-card {
            text-align: center;
            padding: var(--space-xl);
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-4px);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 700;
            color: var(--signal-red);
            line-height: 1;
        }

        .stat-label {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-top: var(--space-md);
            line-height: 1.5;
        }

        /* ═══════════════════════════════════════════════════════════
           BENEFITS SECTION
           ═══════════════════════════════════════════════════════════ */

        .benefits-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--blush);
        }

        .benefits-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-xl);
        }

        .benefit-card {
            background: var(--warm-white);
            border-radius: 16px;
            padding: var(--space-2xl);
            box-shadow: var(--shadow-md);
            display: flex;
            gap: var(--space-lg);
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            background: var(--signal-red);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon svg {
            width: 24px;
            height: 24px;
            stroke: white;
        }

        .benefit-content h3 {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-sm);
        }

        .benefit-content p {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════════════════════
           SECOND GALLERY — CLIENTS/BRANDS
           ═══════════════════════════════════════════════════════════ */

        .brands-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--warm-white);
        }

        .brands-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .brands-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }

        .brand-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
            box-shadow: var(--shadow-lg);
            background: var(--soft-gray);
        }

        .brand-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .brand-card:hover img {
            transform: scale(1.05);
        }

        .brand-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: var(--space-xl);
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        }

        .brand-overlay h3 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 600;
            color: white;
            margin-bottom: var(--space-xs);
        }

        .brand-overlay p {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.8);
        }

        /* ═══════════════════════════════════════════════════════════
           CTA SECTION
           ═══════════════════════════════════════════════════════════ */

        .cta-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--cream);
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4.5vw, 52px);
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: var(--space-lg);
            line-height: 1.2;
        }

        .cta-headline em {
            font-style: italic;
            color: var(--signal-red);
        }

        .cta-text {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--soft-gray);
            margin-bottom: var(--space-2xl);
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════ */

        .footer {
            background: var(--deep-navy);
            color: white;
            padding: var(--space-3xl) var(--space-2xl);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: var(--space-2xl);
            padding-bottom: var(--space-2xl);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: var(--space-md);
        }

        .footer-brand h3 span {
            color: var(--signal-red);
        }

        .footer-brand p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            margin-bottom: var(--space-lg);
            line-height: 1.7;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-gold);
            color: white;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 14px;
            border-radius: 100px;
        }

        .footer-column h4 {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.5);
            margin-bottom: var(--space-lg);
        }

        .footer-column a {
            display: block;
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin-bottom: var(--space-md);
            transition: color 0.2s ease;
        }

        .footer-column a:hover {
            color: var(--warm-gold);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-xl);
        }

        .footer-bottom p {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
        }

        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════ */

        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .story-inner {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }

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

            .nav-mobile {
                display: block;
            }

            .hero {
                min-height: 90vh;
                padding-top: 80px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 150px;
            }

            .gallery-item.featured {
                grid-column: span 2;
                grid-row: span 1;
            }

            .gallery-item.tall {
                grid-row: span 1;
            }

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

            .brands-grid {
                grid-template-columns: 1fr;
            }

            .footer-main {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: var(--space-md);
                text-align: center;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           ANIMATIONS
           ═══════════════════════════════════════════════════════════ */

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-content {
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .gallery-item {
            animation: fadeIn 0.6s ease both;
        }

        .gallery-item:nth-child(1) { animation-delay: 0.05s; }
        .gallery-item:nth-child(2) { animation-delay: 0.1s; }
        .gallery-item:nth-child(3) { animation-delay: 0.15s; }
        .gallery-item:nth-child(4) { animation-delay: 0.2s; }
        .gallery-item:nth-child(5) { animation-delay: 0.25s; }
        .gallery-item:nth-child(6) { animation-delay: 0.3s; }
        .gallery-item:nth-child(7) { animation-delay: 0.35s; }
        .gallery-item:nth-child(8) { animation-delay: 0.4s; }
        .gallery-item:nth-child(9) { animation-delay: 0.45s; }
        .gallery-item:nth-child(10) { animation-delay: 0.5s; }

        /* ═══════════════════════════════════════════════════════════
           LIGHTBOX
           ═══════════════════════════════════════════════════════════ */

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            cursor: zoom-out;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 4px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .lightbox.active img {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: white;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.2s ease;
            font-weight: 300;
            line-height: 1;
            z-index: 10001;
        }

        .lightbox-close:hover {
            opacity: 1;
        }

        .gallery-item {
            cursor: zoom-in;
        }

        /* Navigation arrows */
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 50px;
            color: white;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s ease;
            padding: 20px;
            user-select: none;
        }

        .lightbox-nav:hover {
            opacity: 1;
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        @media (max-width: 768px) {
            .lightbox-nav {
                font-size: 36px;
                padding: 15px;
            }
            .lightbox-close {
                top: 15px;
                right: 20px;
                font-size: 32px;
            }
        }
