// Mock commercial shot data — Aurora Active "Run the City" 30-second spot
// Numbering is intentionally absent here; assigned at runtime by scene order.
const SCENES = [
  {
    id: 'sc-01',
    number: '01',
    title: 'Predawn — Apartment Wake',
    location: 'Loft Interior · Brooklyn',
    timeOfDay: 'Predawn',
    shots: [
      { id:'s1', title:'Alarm pulse on phone screen', desc:'Macro on phone face. Soft blue glow, time reads 5:14 AM.', shot:'ECU', lens:'90mm', move:'Static', duration:'2s', status:'approved',
        img:'https://images.unsplash.com/photo-1510557880182-3d4d3cba35a5?w=800&auto=format&fit=crop' },
      { id:'s2', title:'Hand reaches across pillow', desc:'Slow push as fingers fumble for the alarm. Warm key from window.', shot:'CU', lens:'50mm', move:'Push in', duration:'3s', status:'approved',
        img:'https://images.unsplash.com/photo-1517457373958-b7bdd4587205?w=800&auto=format&fit=crop' },
      { id:'s3', title:'Hero sits up, silhouette against window', desc:'Backlit silhouette, city pre-dawn skyline behind.', shot:'MS', lens:'35mm', move:'Static', duration:'2s', status:'review',
        img:'https://images.unsplash.com/photo-1483381719261-6620dfa2d376?w=800&auto=format&fit=crop' },
      { id:'s4', title:'Lacing up runners', desc:'Tight on hands lacing the new Aurora Flux trainers. Hero shot of product.', shot:'CU', lens:'85mm', move:'Slight tilt down', duration:'3s', status:'approved',
        img:'https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=800&auto=format&fit=crop' },
    ]
  },
  {
    id: 'sc-02',
    number: '02',
    title: 'Empty City — Streets Awaken',
    location: 'DUMBO Streets · Exterior',
    timeOfDay: 'Magic Hour',
    shots: [
      { id:'s5', title:'Wide of empty cobblestone street', desc:'Establisher. Bridge in background, soft mist. No one in frame yet.', shot:'EWS', lens:'24mm', move:'Static', duration:'3s', status:'approved',
        img:'https://images.unsplash.com/photo-1518391846015-55a9cc003b25?w=800&auto=format&fit=crop' },
      { id:'s6', title:'Hero enters frame, begins jog', desc:'From left, hero runs through. Camera holds, lets her exit right.', shot:'WS', lens:'35mm', move:'Static', duration:'4s', status:'review',
        img:'https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=800&auto=format&fit=crop' },
      { id:'s7', title:'Tracking side profile, full stride', desc:'Vehicle-mounted, matching pace. Brick wall whips behind.', shot:'MS', lens:'50mm', move:'Tracking', duration:'4s', status:'draft',
        img:'https://images.unsplash.com/photo-1486218119243-13883505764c?w=800&auto=format&fit=crop' },
      { id:'s8', title:'Low angle on shoes hitting pavement', desc:'Ground-level, shoe lands, splash of puddle. Slow motion 240fps.', shot:'CU', lens:'24mm', move:'Static low', duration:'2s', status:'draft' },
    ]
  },
  {
    id: 'sc-03',
    number: '03',
    title: 'Rooftop — Sunrise Climax',
    location: 'Rooftop · 23rd & 5th',
    timeOfDay: 'Sunrise',
    shots: [
      { id:'s9', title:'Hero crests stairwell onto roof', desc:'Sun breaks over the parapet as she emerges. Lens flare welcome.', shot:'MS', lens:'35mm', move:'Handheld follow', duration:'3s', status:'approved',
        img:'https://images.unsplash.com/photo-1502810190503-8303352d0dd1?w=800&auto=format&fit=crop' },
      { id:'s10', title:'Hero stops, hands on hips, breathing', desc:'Profile against full sun. Highlight detail on Aurora logo on chest.', shot:'MCU', lens:'85mm', move:'Slow dolly back', duration:'3s', status:'review',
        img:'https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=800&auto=format&fit=crop' },
      { id:'s11', title:"God's eye drone reveal of skyline", desc:'Drone lifts from roof to reveal Manhattan. Endcard tag overlays in post.', shot:'EWS', lens:'Drone 24mm', move:'Aerial pull-up', duration:'5s', status:'review',
        img:'https://images.unsplash.com/photo-1519501025264-65ba15a82390?w=800&auto=format&fit=crop' },
      { id:'s12', title:'Logo lock-up on black', desc:'Endcard. AURORA · RUN THE CITY. 1.5s hold.', shot:'Graphic', lens:'—', move:'Static', duration:'1.5s', status:'draft' },
    ]
  },
];

window.SCENES = SCENES;
