/* eslint-disable no-undef */
// Site data: pricing, addons, events, navigation

const NAV = [
  { label: 'Home',     href: '#home' },
  { label: 'My Work',  href: '#work' },
  { label: 'Pricing',  href: '#pricing' },
  { label: 'About Me', href: '#about' },
  { label: 'Inquire',  href: '#save' },
];

const TIERS = [
  {
    name: 'The Digital',
    price: '$1,000',
    label: '8 Hours',
    items: [
      { t: 'Unlimited iPhone coverage' },
      { t: 'One–two minute recap video' },
      { t: 'Two short form videos' },
      { t: '8 hrs of coverage' },
    ],
  },
  {
    name: 'The Vintage',
    price: '$1,500',
    label: '8 Hours',
    items: [
      { t: 'Unlimited iPhone coverage' },
      { t: 'One roll of Super 8' },
      { t: 'One–two minute Super 8 highlight video' },
      { t: 'Two short form videos' },
      { t: '8 hrs of coverage' },
    ],
  },
];

const ADDONS = [
  { name: 'Additional hour',            price: '$100' },
  { name: 'Additional roll of Super 8', price: '$300' },
  { name: '35 mm film',                 price: '$50' },
];

const EVENTS = [
  { id: 1, couple: 'Sofia & Daniel',  place: 'Sonoma · September 2025',   tags: ['Vineyard', 'Garden Ceremony'], note: 'Late summer light dancing through the olive grove. Their first look reduced the entire bridal party to tears — including me.', span: 7, tall: false, hue: 1 },
  { id: 2, couple: 'Camila & Marco',  place: 'Napa Valley · August 2025', tags: ['Estate', 'Black Tie'],          note: 'A candlelit dinner under the trellis followed by a sparkler send-off that lit up the whole estate.', span: 5, tall: true, hue: 2 },
  { id: 3, couple: 'Isabella & Theo', place: 'Carmel · July 2025',         tags: ['Coastal', 'Intimate'],          note: 'Twenty guests on a windswept cliff. The most quiet, profound "I do" I have ever filmed.', span: 5, tall: true, hue: 3 },
  { id: 4, couple: 'Lila & Asher',    place: 'Sacramento · June 2025',    tags: ['Backyard', 'Heirloom'],         note: 'Three generations of the bride\'s family in the same lace veil. We cried four separate times.', span: 7, tall: false, hue: 4 },
  { id: 5, couple: 'Maya & Jordan',   place: 'Sausalito · May 2025',      tags: ['Bay View', 'Modern'],            note: 'A sunset ceremony with the Golden Gate as the altar.', span: 4, tall: false, hue: 5 },
  { id: 6, couple: 'Ana & Luca',      place: 'Healdsburg · May 2025',     tags: ['Italian Villa', 'Garden Party'], note: 'Lemon trees, white linen, and the loudest cheer when they kissed.', span: 4, tall: false, hue: 6 },
  { id: 7, couple: 'Naomi & Ben',     place: 'San Francisco · April 2025', tags: ['Rooftop', 'City'],               note: 'A neon-lit reception thirty floors above the city.', span: 4, tall: false, hue: 7 },
  { id: 8, couple: 'Elena & Rafael',  place: 'Tahoe · February 2025',     tags: ['Winter', 'Mountain'],            note: 'Snow gently falling as they exchanged vows beneath an arch of pine.', span: 6, tall: false, hue: 8 },
  { id: 9, couple: 'Priya & Nico',    place: 'Berkeley · October 2024',   tags: ['Garden', 'Intimate'],            note: 'Hand-painted invitations and a first dance to her grandfather\'s favorite record.', span: 6, tall: false, hue: 9 },
];

window.SITE = { NAV, TIERS, ADDONS, EVENTS };
