// Into the Wild — Testimonials, Partners, Apply, Footer, Tweaks function Testimonials() { const quotes = [ { q: "I learned that asking for help doesn't make you weak. I teamed up with 3 strangers from different cultures to achieve one same goal — and learned how cool it is to have the opportunity to do projects like this.", who: "Maria, 26", country: "Spain", edition: "Edition II", flag: "#AA151B", rot: "-1.5deg" }, { q: "I don't need a phone to live fully. Europe and its people are wonderful.", who: "Léo, 24", country: "France", edition: "Edition II", flag: "#0055A4", rot: "1.2deg" }, { q: "You don't need much to be happy. Disconnect, have less stimulation from outside — it's a very valuable way to reconnect to your true self.", who: "Clara, 27", country: "Italy", edition: "Edition I", flag: "#009246", rot: "-0.6deg" }, { q: "To be more compassionate and collaborative. To enjoy the journey more than the goal. How important the connection with people is to our mental well-being. How empathy can be magical.", who: "Afonso, 28", country: "Portugal", edition: "Edition I", flag: "#006600", rot: "0.8deg" }, { q: "I learnt I am much more resilient than I thought. I learnt to never give up. I learnt that most people are actually kind in their essence, even if they don't always act like it.", who: "Dimitra, 25", country: "Greece", edition: "Edition III", flag: "#0D5EAF", rot: "-1.1deg" }, { q: "Most of our fears are a product of our limiting beliefs. We can almost always prove them wrong. Life is more interesting and intense without a smart phone in your pocket.", who: "Marta, 29", country: "Spain", edition: "Edition II", flag: "#AA151B", rot: "1.5deg" }]; return (
05 WHAT PREVIOUS ADVENTURERS SAY

Don't take it from us.

{quotes.map((t, i) =>

{t.q}

{t.who} · {t.country} · {t.edition}
)}
); } function Partners() { const countries = [ { code: "ES", name: "Spain", sub: "Lead · Xeracion", flag: ( ) }, { code: "IT", name: "Italy", sub: "Partner", flag: ( ) }, { code: "PT", name: "Portugal", sub: "Partner", flag: ( ) }, { code: "FR", name: "France", sub: "Partner", flag: ( ) }, { code: "GR", name: "Greece", sub: "Partner", flag: ( ) } ]; return (
06 THE COALITION — FIVE COUNTRIES, ONE FOREST

Five flags,
one handshake.

{countries.map((c, i) => (
{c.flag}
0{i + 1}
{c.name}
{c.code} · {c.sub}
))}
); } function Apply() { return (
07 Applications — closing June 17, 2026

Come find out.

Six questions. One short video. No CV, no GPA, no "tell us about a time you demonstrated leadership." We want to know if you'd share your last apple.

Start your application
Age 18 – 30 Cost €0 Deadline 17 · 06 · 26 Spots available 20
); } function Footer() { return ( ); } function TweaksPanel({ state, setState, visible }) { if (!visible) return null; const palettes = [ { id: 'forest', label: 'Forest', swatches: ['#2D4A2B', '#C44A1B', '#E8B84C', '#EFE7D6'], vars: { '--forest': '#2D4A2B', '--forest-deep': '#1E3320', '--terra': '#C44A1B', '--terra-soft': '#D96A3A', '--sun': '#E8B84C', '--cream': '#EFE7D6', '--paper': '#FAF5E6', '--ink': '#1A1F16' } }, { id: 'sage', label: 'Sage', swatches: ['#3B4A3F', '#8B5A3C', '#D4722A', '#F5F1E8'], vars: { '--forest': '#3B4A3F', '--forest-deep': '#2B3A2F', '--terra': '#8B5A3C', '--terra-soft': '#D4722A', '--sun': '#D4A24C', '--cream': '#F5F1E8', '--paper': '#FBF7EB', '--ink': '#1E2520' } }, { id: 'night', label: 'Campfire', swatches: ['#0F1A14', '#D4A24C', '#C24A2C', '#E8DCC4'], vars: { '--forest': '#0F1A14', '--forest-deep': '#080E0B', '--terra': '#C24A2C', '--terra-soft': '#D4722A', '--sun': '#D4A24C', '--cream': '#E8DCC4', '--paper': '#F0E7D0', '--ink': '#0F1A14' } }, { id: 'poster', label: 'Poster', swatches: ['#1E3A2E', '#E86A3C', '#F4C430', '#FDFBF4'], vars: { '--forest': '#1E3A2E', '--forest-deep': '#122620', '--terra': '#E86A3C', '--terra-soft': '#F0885A', '--sun': '#F4C430', '--cream': '#FDFBF4', '--paper': '#FFFEF6', '--ink': '#15261D' } }]; const setPalette = (id) => { const pal = palettes.find((p) => p.id === id); Object.entries(pal.vars).forEach(([k, v]) => document.documentElement.style.setProperty(k, v)); const next = { ...state, palette: id }; setState(next); postEdit(next); }; const setTone = (v) => { document.documentElement.style.setProperty('--serif', v === 'serif' ? "'Fraunces', Georgia, serif" : v === 'mono' ? "'JetBrains Mono', ui-monospace, monospace" : "'Archivo Narrow', 'Oswald', sans-serif"); const next = { ...state, headlineFont: v }; setState(next); postEdit(next); }; const postEdit = (next) => { window.parent.postMessage({ type: '__edit_mode_set_keys', edits: { palette: next.palette, headlineFont: next.headlineFont, grainOn: next.grainOn } }, '*'); }; const toggleGrain = () => { const grainOn = !state.grainOn; document.body.classList.toggle('grain-off', !grainOn); const next = { ...state, grainOn }; setState(next); postEdit(next); }; return (
Tweaks
{palettes.map((p) =>
setPalette(p.id)} style={{ background: `conic-gradient(${p.swatches[0]} 0 25%, ${p.swatches[1]} 0 50%, ${p.swatches[2]} 0 75%, ${p.swatches[3]} 0)` }} /> )}
Tip · Toggle Tweaks in the toolbar to hide this.
); } Object.assign(window, { Testimonials, Partners, Apply, Footer, TweaksPanel, Brandmark }); function Brandmark() { return (
THE MARK · stamped on every backpack
Into the Wild — positive
01 Positive forest ink · paper #FAF5E6
Into the Wild — negative
02 Negative cream #EFE7D6 · ink #1A1F16

Use the positive on paper, cream and pale stocks · the negative over forest, campfire night and any photograph darker than coffee. Never recolour. Never stretch. Never lay it over moss without breathing room.

); }