// Shared data — content for all pages

const IMG = {
  hero: "uploads/practice-interior-1.jpg",
  practice: "uploads/practice-interior-2.jpg",
  exam: "https://images.unsplash.com/photo-1758656321505-95bf802f9a4c?w=1200&q=80&auto=format&fit=crop",
  oct: "https://images.unsplash.com/photo-1565428744974-f41cf79c05fa?w=1200&q=80&auto=format&fit=crop",
  frames: "uploads/practice-display.jpg",
  child: "https://images.unsplash.com/photo-1576210117723-cd06449a467d?w=1200&q=80&auto=format&fit=crop",
  lens: "https://images.unsplash.com/photo-1516714819001-8ee7a13b71d7?w=1200&q=80&auto=format&fit=crop",
  repair: "https://images.unsplash.com/photo-1591076482161-42ce6da69f67?w=1200&q=80&auto=format&fit=crop",
  bill: "uploads/bill-cutler.jpg",
  melissa: "uploads/melissa-ung.jpg"
};

const SERVICES = [
  {
    num: "01",
    title: "Comprehensive Eye Examination",
    short: "A 30–45 minute assessment of your vision, ocular health, and prescription needs — bulk-billed under Medicare.",
    img: IMG.exam,
    body: [
      "Every exam includes refraction, binocular vision testing, intraocular pressure measurement, and a full assessment of the front and back of the eye.",
      "We screen for early signs of glaucoma, macular degeneration, cataracts and diabetic eye disease — many of which show no symptoms until vision is already affected."
    ],
    bullets: ["Bulk-billed under Medicare", "30–45 minute appointments", "Recall reminder included"]
  },
  {
    num: "02",
    title: "OCT & Diagnostic Imaging",
    short: "3D imaging of the retina and optic nerve — detects disease years earlier than a standard exam.",
    img: IMG.oct,
    body: [
      "Optical Coherence Tomography (OCT) scans capture a cross-section of the retina at near-microscopic resolution. We use it routinely for patients over 50, anyone with a family history of glaucoma or macular degeneration, and for monitoring known conditions.",
      "We also offer wide-field retinal photography, corneal topography and visual field testing in-house — no external referral needed."
    ],
    bullets: ["OCT scan from $55", "Results in the same appointment", "Stored for year-on-year comparison"]
  },
  {
    num: "03",
    title: "Specialty Eyecare",
    short: "Myopia control, dry eye therapy, paediatric vision and ocular disease management.",
    img: IMG.child,
    body: [
      "Melissa leads our specialty clinics, drawing on extensive experience from regional Victoria managing diabetic eye disease, glaucoma and macular degeneration.",
      "We offer myopia control fittings (MiSight, ortho-k, atropine), paediatric assessments from age 3, and a structured dry eye programme including IPL and lid-margin treatments."
    ],
    bullets: ["Myopia control programme", "Paediatric vision (3+)", "Dry eye assessment & IPL"]
  },
  {
    num: "04",
    title: "Designer & Independent Eyewear",
    short: "Curated frame collections from independent makers and Australian designers.",
    img: IMG.frames,
    body: [
      "Our frame wall is hand-selected — no chain-store house brands. We stock independent labels you won't find at Specsavers or OPSM, alongside heritage names and a careful selection of Australian designers.",
      "Every frame is fitted by an experienced dispenser and adjusted in-store at no charge for the life of the spectacles."
    ],
    bullets: ["Independent makers only", "Free lifetime adjustments", "Frames from $290"]
  },
  {
    num: "05",
    title: "Personalised Optical Lenses",
    short: "Custom-measured progressive, occupational, blue-filter and tinted lenses.",
    img: IMG.lens,
    body: [
      "Lens technology has moved a long way past the standard progressive. We measure pupil position, frame fit, head posture and habitual gaze for every progressive prescription, then specify the lens design that matches how you actually use your eyes.",
      "We also fit dedicated computer lenses, driving tints, polarised sun lenses and a full range of contact lens materials."
    ],
    bullets: ["Custom-measured progressives", "Computer & driving lenses", "Health fund rebates apply"]
  },
  {
    num: "06",
    title: "Refurbishments & Repairs",
    short: "Bring an old favourite back to life — re-lens, re-coat, repair, and adjust.",
    img: IMG.repair,
    body: [
      "Frames you love don't have to be replaced. We re-lens vintage frames, repair broken hinges and bridges, replace nose pads and temple tips, and re-coat scratched lenses where possible.",
      "If we can fix it in-house we will; if not, we work with two trusted local repair specialists."
    ],
    bullets: ["Re-lens existing frames", "Hinge & bridge repairs", "Free in-store adjustments"]
  }
];

const TEAM = [
  {
    name: "Bill Cutler",
    creds: "B.SC.OPTOM (MELB) · AHPRA OPT0001234567",
    img: IMG.bill,
    bio: "Practising optometry is highly rewarding — I enjoy meeting new people and helping them to see better every day. I have always had strong interests in diagnostic processes and solving problems.",
    bio2: "Outside of work I am involved in Historic Motorsport and enjoy restoring cars of the 70's and 80's. I founded Bill Cutler Optometrists in 1979 and have practised in Kew East ever since.",
    chips: ["47 years in practice", "Diagnostic testing", "Complex prescriptions", "Founder"]
  },
  {
    name: "Melissa Ung",
    creds: "Doctor of Optometry (Unimelb) · AHPRA OPT0009876543",
    img: IMG.melissa,
    bio: "I became passionate about optometry to help others with their sight. I love meeting new patients and sharing experiences. I believe it's important to educate patients about their ocular health to ensure the continuity of healthy vision.",
    bio2: "My interests include children's vision and ocular disease management. I spent most of my career working in regional Victoria, gaining extensive experience managing diabetic eye disease, glaucoma, macular degeneration, paediatric optometry, myopia and amblyopia.",
    chips: ["Children's vision", "Myopia control", "Glaucoma management", "Diabetic eye disease"]
  }
];

const REVIEWS = [
  { stars: 5, text: "Bill has looked after our family's eyes for over twenty years. Considered, thorough, and never pushy about frames you don't need.", who: "Margaret H.", when: "Google · Mar 2026" },
  { stars: 5, text: "Took my 6-year-old to Melissa for a first eye test. She was patient, made it fun, and explained everything to both of us. Couldn't recommend more highly.", who: "James P.", when: "Google · Feb 2026" },
  { stars: 5, text: "An independent practice that actually feels independent — proper time, proper expertise, frames you won't see on every second person.", who: "Anita R.", when: "Google · Jan 2026" }
];

const HOURS = [
  ["Monday", "9:00 – 5:30"],
  ["Tuesday", "9:00 – 5:30"],
  ["Wednesday", "9:00 – 5:30"],
  ["Thursday", "9:00 – 5:30"],
  ["Friday", "9:00 – 5:30"],
  ["Saturday", "9:00 – 12:00"],
  ["Sunday", "Closed"]
];

const FUNDS = ["Bupa", "Medibank", "HCF", "NIB", "AHM", "HBF", "Australian Unity"];

window.SITE = { IMG, SERVICES, TEAM, REVIEWS, HOURS, FUNDS };
