// Trip Types page data
const TYPE_LANES = [
  {
    id: "solo",
    num: "01",
    topic: "For One",
    badge: "Most planned",
    title: "Solo",
    titleEm: "Travel.",
    desc: "The slow lane. Quiet mornings, a journal, train windows, a café you visit four times. The trip where you find out what you actually like.",
    count: "32 guides",
    read: "6 new this season",
    img: "https://images.unsplash.com/photo-1528543606781-2f6e6857f318?w=1600&q=80",
    size: "xl",
    href: "/en/plan/trip-types/solo/",
  },
  {
    id: "couples",
    num: "02",
    topic: "For Two",
    title: "Couples",
    desc: "Pace, privacy, and the right number of restaurants. The small art of not killing each other at altitude.",
    count: "44 guides",
    read: "Romantic · Honeymoon",
    img: "https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?w=1200&q=80",
    size: "md",
  },
  {
    id: "family",
    num: "03",
    topic: "For Everyone",
    title: "Family",
    desc: "What kids will and will not tolerate at altitude, time-change, and after four hours on a bus.",
    count: "38 guides",
    read: "With Kids · Multigen",
    img: "https://images.unsplash.com/photo-1602002418082-a4443e081dd1?w=1200&q=80",
    size: "md",
  },
  {
    id: "friends",
    num: "04",
    topic: "For a Crew",
    badge: "With Roundtrips",
    title: "Friends",
    titleEm: "Group.",
    desc: "Group dynamics, shared houses, the one person planning. We built a whole app for this — see below.",
    count: "26 guides",
    read: "Group · Reunions",
    img: "https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1600&q=80",
    size: "wide",
  },
  {
    id: "adventure",
    num: "05",
    topic: "For the Body",
    title: "Adventure",
    desc: "Trekking, diving, climbing. When the trip is the activity and the gear list is long.",
    count: "29 guides",
    read: "Hiking · Diving",
    img: "https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1200&q=80",
    size: "sm",
  },
  {
    id: "slow",
    num: "06",
    topic: "For the Mind",
    title: "Slow Travel",
    desc: "Three weeks. One neighborhood. No agenda. One bakery by the end.",
    count: "21 guides",
    read: "Long Stay",
    img: "https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=1200&q=80",
    size: "sm",
  },
  {
    id: "workation",
    num: "07",
    topic: "For the Laptop",
    title: "Workation",
    desc: "Wifi, time zones, and why your MacBook is in the carry-on. Coworking, Airbnbs, standing desks on the road.",
    count: "18 guides",
    read: "Remote · Coworking",
    img: "https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200&q=80",
    size: "sm",
  },
  {
    id: "bucket-list",
    num: "08",
    topic: "For the Diary",
    badge: "Once",
    title: "Bucket List",
    desc: "The trips you take once — done correctly the first time. We're here to stop you from cutting corners.",
    count: "16 guides",
    read: "Splurge · Lifetime",
    img: "https://images.unsplash.com/photo-1502780402662-acc01917cf7d?w=1200&q=80",
    size: "lg",
  },
  {
    id: "last-minute",
    num: "09",
    topic: "For Friday",
    title: "Last Minute",
    desc: "You leave in 72 hours. Here's the playbook — and the short list of cities that actually work this week.",
    count: "12 guides",
    read: "Under 2 weeks",
    img: "https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1200&q=80",
    size: "md",
  },
];

const TYPE_FAQS = [
  { q: "How do I know which trip type fits me?", a: "Think less about who you are and more about what this specific trip is supposed to do. The same person might take a solo trip in March, a family trip in July, and an adventure trip in October. The 'type' describes the shape of the week, not you. If you're not sure, default to what you got wrong on the last trip and correct for it." },
  { q: "Can one trip be more than one type?", a: "Yes, and most good ones are. A couples trip can absolutely be a bucket-list trip, or a workation can fold a week of slow travel into the back end. The value of the types is as a starting point — pick the primary mode and let the second one bend it." },
  { q: "Do the trip types work for any destination?", a: "Mostly, with two caveats. Adventure trips are location-bound by definition — Nepal is different from New Zealand. And last-minute trips only work well to certain cities (visa-free, short-haul, off-peak). The other seven types will work anywhere." },
  { q: "Which trip type is cheapest?", a: "Slow travel, almost always. Three weeks in one apartment is cheaper than three cities in three weeks. Solo is second. Last-minute is the most expensive, even when it feels spontaneous, because you're paying for flexibility." },
  { q: "How do I plan a trip for people with different trip-type preferences?", a: "Plan the top-line itinerary for the majority, then build in one half-day per person for their type. A friends trip with two adventurers and two slow-travelers looks like: shared mornings, split afternoons, shared dinners. You'd be amazed how well this works." },
];

const ROUNDTRIPS_PANELS = [
  {
    size: "wide",
    tag: "ITINERARY",
    title: "Shared plans that update in real time.",
    desc: "Drag-and-drop days, drop pins on stops, see the whole trip unfold on one map. Change a dinner spot and the crew gets the memo — no more \"wait, where are we going?\"",
    img: "https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1200&q=80",
  },
  {
    size: "md",
    tag: "EXPENSES",
    title: "Split costs, effortlessly.",
    desc: "Who paid. Who owes. Settled in one tap.",
    img: "https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1200&q=80",
  },
  {
    size: "md",
    tag: "LIVE",
    title: "Updates, live.",
    desc: "Flight delayed? Group knows. Nobody gets stranded.",
    img: "https://images.unsplash.com/photo-1504198266287-1659872e6590?w=1200&q=80",
  },
  {
    size: "sm",
    tag: "VOTING",
    title: "Vote it out.",
    desc: "Beach day or hike? Tapas or tacos? Polls settle it in 30 seconds.",
    img: "https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1200&q=80",
  },
  {
    size: "wide",
    tag: "ROSTER",
    title: "Who's in, who's out — without the awkward text.",
    desc: "RSVP per day, per leg, or for the whole thing. Roundtrips handles the math so nobody has to be the \"hey so about the Airbnb deposit…\" person again.",
    img: "https://images.unsplash.com/photo-1502920917128-1aa500764cbd?w=1200&q=80",
  },
];

const TYPE_DECIDE = [
  { q: "You want the trip to feel…", opts: ["Quiet", "Alive", "Earned", "Lazy"] },
  { q: "You're traveling with…", opts: ["Just me", "One other", "Family", "A crew"] },
  { q: "Days available…", opts: ["3–5", "7–10", "2+ weeks", "A month"] },
  { q: "Budget reality…", opts: ["Tight", "Comfortable", "Splurge", "Once"] },
];

const TYPE_READING = [
  { tag: "Editorial", duration: "11 min", title: "The Nine Trip Types, Explained" },
  { tag: "Method", duration: "8 min", title: "Why Most Group Trips Fail", em: "(And How To Fix Yours.)" },
  { tag: "Solo", duration: "9 min", title: "Solo Travel Isn't Lonely. It's Quiet." },
  { tag: "Family", duration: "7 min", title: "The 3-Hour Rule for Traveling With Kids" },
  { tag: "Couples", duration: "6 min", title: "The Two-Restaurant-Per-Day Rule" },
  { tag: "Budget", duration: "10 min", title: "What Each Trip Type Actually Costs" },
];

Object.assign(window, { TYPE_LANES, TYPE_FAQS, ROUNDTRIPS_PANELS, TYPE_DECIDE, TYPE_READING });
