MARKETING STAGE

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marketing & Content Internship — KarmaKarma</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
--bg: #fff6ea;
--brown: #4b3414;
--orange: #bd4720;
--brown-mid: #7a5828;
--brown-light: #f0dfc0;
--white: #FFFFFF;
--text-muted: #8a6a40;
}
 
html { scroll-behavior: smooth; }
 
body {
font-family: Arial, sans-serif;
background: var(--bg);
color: var(--brown);
overflow-x: hidden;
}
 
.hero, .what-section, .disclaimer {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}
 
/* ── HERO ── */
.hero {
background: var(--orange);
padding: 40px 24px;
overflow: hidden;
}
 
.hero::before {
content: '';
position: absolute;
top: -100px; right: -100px;
width: 400px; height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(255,246,234,0.1) 0%, transparent 70%);
pointer-events: none;
}
 
.hero-inner {
max-width: 1100px;
margin: 0 auto;
position: relative;
z-index: 1;
}
 
.hero-tag {
display: inline-block;
background: rgba(255,246,234,0.15);
color: var(--brown-light);
font-size: 11px;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 5px 16px;
border-radius: 30px;
margin-bottom: 20px;
border: 1px solid rgba(255,246,234,0.25);
}
 
.hero h1 {
font-family: 'Arial Black', Arial, sans-serif;
font-size: clamp(28px, 5vw, 48px);
font-weight: 900;
color: var(--white);
line-height: 1.05;
letter-spacing: -0.02em;
margin-bottom: 16px;
max-width: 700px;
}
 
.hero h1 em {
font-style: italic;
color: var(--brown-light);
}
 
.hero-sub {
font-size: 16px;
color: rgba(255,246,234,0.75);
max-width: 560px;
line-height: 1.65;
margin-bottom: 28px;
}
 
.hero-pills {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 28px;
}
 
.hero-pill {
background: rgba(255,246,234,0.12);
border: 1px solid rgba(255,246,234,0.2);
color: rgba(255,246,234,0.8);
font-size: 12px;
font-weight: 700;
padding: 5px 14px;
border-radius: 20px;
letter-spacing: 0.04em;
}
 
.hero-cta {
display: inline-block;
background: var(--white);
color: var(--orange);
font-family: 'Arial Black', Arial, sans-serif;
font-size: 15px;
font-weight: 900;
padding: 14px 36px;
border-radius: 50px;
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
}
 
.hero-cta:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(75,52,20,0.2);
}
 
/* ── SECTIONS ── */
.section {
padding: 50px 24px;
max-width: 1100px;
margin: 0 auto;
}
 
.section-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--orange);
margin-bottom: 12px;
}
 
.section h2 {
font-family: 'Arial Black', Arial, sans-serif;
font-size: clamp(24px, 4vw, 38px);
font-weight: 900;
line-height: 1.1;
color: var(--brown);
margin-bottom: 16px;
}
 
.section h2 em { font-style: italic; color: var(--orange); }
 
.section > p {
font-size: 15px;
color: var(--text-muted);
line-height: 1.7;
max-width: 680px;
}
 
/* ── TASKS SECTION ── */
.what-section {
background: var(--brown);
padding: 50px 24px;
}
 
.what-inner { max-width: 1100px; margin: 0 auto; }
 
.what-section .section-label { color: var(--brown-light); }
.what-section h2 {
font-family: 'Arial Black', Arial, sans-serif;
font-weight: 900;
font-size: clamp(24px, 4vw, 38px);
color: var(--white);
line-height: 1.1;
margin-bottom: 28px;
}
.what-section h2 em { color: var(--brown-light); font-style: italic; }
 
.tasks-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2px;
border-radius: 16px;
overflow: hidden;
}
 
.task-card {
background: rgba(255,246,234,0.06);
padding: 28px 24px;
transition: background 0.2s;
}
 
.task-card:hover { background: rgba(255,246,234,0.1); }
 
.task-nr {
font-family: 'Arial Black', Arial, sans-serif;
font-size: 36px;
font-weight: 900;
color: rgba(189,71,32,0.35);
line-height: 1;
margin-bottom: 10px;
}
 
.task-card h3 {
font-family: 'Arial Black', Arial, sans-serif;
font-size: 15px;
font-weight: 900;
color: var(--white);
margin-bottom: 8px;
line-height: 1.2;
}
 
.task-card p {
font-size: 13px;
color: rgba(255,246,234,0.6);
line-height: 1.6;
}
 
/* ── CHECK LIST ── */
.check-list {
list-style: none;
margin-top: 20px;
display: flex;
flex-direction: column;
gap: 10px;
}
 
.check-list li {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
}
 
.check-dot {
width: 20px; height: 20px;
background: var(--orange);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
margin-top: 1px;
}
 
/* ── OFFER GRID ── */
.offer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 12px;
margin-top: 20px;
}
 
.offer-card {
background: var(--white);
border: 1.5px solid var(--brown-light);
border-radius: 14px;
padding: 20px 18px;
display: flex;
align-items: flex-start;
gap: 10px;
}
 
.offer-dot {
width: 9px; height: 9px;
border-radius: 50%;
background: var(--orange);
flex-shrink: 0;
margin-top: 5px;
}
 
.offer-card p {
font-size: 13px;
color: var(--brown);
line-height: 1.5;
}
 
/* ── LOCATION BOX ── */
.location-box {
background: var(--brown-light);
border-radius: 14px;
padding: 24px 28px;
margin-top: 24px;
display: flex;
align-items: flex-start;
gap: 14px;
border-left: 4px solid var(--orange);
}
 
.location-box p {
font-size: 14px;
color: var(--brown);
line-height: 1.6;
}
 
.location-box p strong { font-weight: 700; color: var(--orange); }
 
/* ── DISCLAIMER ── */
.disclaimer {
background: var(--orange);
padding: 18px 24px;
}
 
.disclaimer-inner {
max-width: 1100px;
margin: 0 auto;
}
 
.disclaimer p {
font-size: 14px;
color: var(--white);
line-height: 1.5;
}
 
/* ── CTA SECTION ── */
.cta-section {
padding: 50px 24px;
max-width: 720px;
margin: 0 auto;
}
 
.cta-section .section-label { color: var(--orange); }
 
.cta-section h2 {
font-family: 'Arial Black', Arial, sans-serif;
font-size: clamp(24px, 4vw, 38px);
font-weight: 900;
line-height: 1.1;
color: var(--brown);
margin-bottom: 10px;
}
 
.cta-section h2 em { font-style: italic; color: var(--orange); }
 
.cta-intro {
font-size: 15px;
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 28px;
}
 
.cta-btn {
display: inline-block;
background: var(--orange);
color: var(--white);
font-family: 'Arial Black', Arial, sans-serif;
font-size: 15px;
font-weight: 900;
padding: 16px 36px;
border-radius: 50px;
text-decoration: none;
transition: transform 0.2s, background 0.2s;
}
 
.cta-btn:hover {
background: var(--brown);
transform: translateY(-2px);
}
 
.cta-note {
font-size: 12px;
color: var(--text-muted);
margin-top: 14px;
line-height: 1.6;
}
</style>
</head>
<body>
 
<!-- HERO -->
<section class="hero">
<div class="hero-inner">
<span class="hero-tag">Internship · Student Placement</span>
<h1>Marketing &amp;<br><em>Content</em> Internship</h1>
<p class="hero-sub">At KarmaKarma, everything revolves around doing better and enjoying more. We're looking for a creative intern to help put our brand on the map and make it grow.</p>
<div class="hero-pills">
<span class="hero-pill">Groot-Bijgaarden</span>
<span class="hero-pill">Fosbury &amp; Sons</span>
<span class="hero-pill">All levels welcome</span>
<span class="hero-pill">Min. 4 days/week</span>
<span class="hero-pill">Start by arrangement</span>
</div>
<a class="hero-cta" href="#apply">Apply now →</a>
</div>
</section>
 
<!-- WHAT WILL YOU DO -->
<section class="what-section">
<div class="what-inner">
<p class="section-label">Your role</p>
<h2>What will you <em>do?</em></h2>
<div class="tasks-grid">
<div class="task-card">
<div class="task-nr">01</div>
<h3>Campaigns &amp; events</h3>
<p>You conceive and execute campaigns and events that truly resonate with customers — from idea to delivery.</p>
</div>
<div class="task-card">
<div class="task-nr">02</div>
<h3>Relationship management</h3>
<p>You strengthen our relationships with customers, partners and fans — and build a community that carries KarmaKarma forward.</p>
</div>
<div class="task-card">
<div class="task-nr">03</div>
<h3>Content creation</h3>
<p>You create vibrant online and offline content that brings KarmaKarma to life — on social, in email and beyond.</p>
</div>
<div class="task-card">
<div class="task-nr">04</div>
<h3>Analysis &amp; optimisation</h3>
<p>You track campaigns, analyse results and always look for ways to do even better.</p>
</div>
<div class="task-card">
<div class="task-nr">05</div>
<h3>Sales enablement</h3>
<p>You provide the sales team with strong content and tools to bring our products and mission to the right people.</p>
</div>
<div class="task-card">
<div class="task-nr">06</div>
<h3>International markets</h3>
<p>Given our export activities, working for foreign-language markets doesn't faze you — you think multilingually with ease.</p>
</div>
<div class="task-card">
<div class="task-nr">07</div>
<h3>Tastings &amp; events</h3>
<p>You help organise and run tastings and brand events — from preparation to on-site attendance.</p>
</div>
</div>
</div>
</section>
 
<!-- WHAT DO YOU BRING -->
<section class="section">
<p class="section-label">Your profile</p>
<h2>What do you <em>bring?</em></h2>
<p>You don't need to be an experienced marketer. We're looking for someone who loves learning, takes initiative and believes in mindful eating. You're studying marketing, communications, PR or a related field — all levels welcome.</p>
<ul class="check-list">
<li>
<div class="check-dot">
<svg width="10" height="10" fill="none" viewBox="0 0 10 10"><path d="M1.5 5l2.5 2.5L8.5 2.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
You're studying marketing, communications, PR or a related field — all levels welcome
</li>
<li>
<div class="check-dot">
<svg width="10" height="10" fill="none" viewBox="0 0 10 10"><path d="M1.5 5l2.5 2.5L8.5 2.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
Strong writing and communication skills in Dutch — English is a plus
</li>
<li>
<div class="check-dot">
<svg width="10" height="10" fill="none" viewBox="0 0 10 10"><path d="M1.5 5l2.5 2.5L8.5 2.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
Creativity, a positive mindset and a drive to make an impact
</li>
<li>
<div class="check-dot">
<svg width="10" height="10" fill="none" viewBox="0 0 10 10"><path d="M1.5 5l2.5 2.5L8.5 2.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
You're active on social media and understand how it works
</li>
<li>
<div class="check-dot">
<svg width="10" height="10" fill="none" viewBox="0 0 10 10"><path d="M1.5 5l2.5 2.5L8.5 2.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
You work independently and enjoy taking initiative
</li>
<li>
<div class="check-dot">
<svg width="10" height="10" fill="none" viewBox="0 0 10 10"><path d="M1.5 5l2.5 2.5L8.5 2.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
You're available for a minimum of 4 days per week
</li>
<li>
<div class="check-dot" style="background: var(--brown-light);">
<svg width="10" height="10" fill="none" viewBox="0 0 10 10"><path d="M2 5h6" stroke="#8a6a40" stroke-width="1.5" stroke-linecap="round"/></svg>
</div>
<span>Driver's licence (category B) is a bonus</span>
</li>
</ul>
</section>
 
<!-- WHY KARMAKARMA -->
<section style="padding-top: 0;" class="section">
<p class="section-label">Why KarmaKarma?</p>
<h2>More than just an<br><em>internship.</em></h2>
<p>You'll join a small, driven team where your input truly counts. No large corporate structures — just quick decision-making, lots of learning and building something great together.</p>
<div class="offer-grid">
<div class="offer-card">
<div class="offer-dot"></div>
<p>Responsibility from day one — no coffee runs</p>
</div>
<div class="offer-card">
<div class="offer-dot"></div>
<p>Plenty of room for your own ideas and creativity</p>
</div>
<div class="offer-card">
<div class="offer-dot"></div>
<p>Experience with Meta Ads, Mailchimp, Shopify and Canva</p>
</div>
<div class="offer-card">
<div class="offer-dot"></div>
<p>Part of an enthusiastic, entrepreneurial team</p>
</div>
<div class="offer-card">
<div class="offer-dot"></div>
<p>Flexible — start date and presence by arrangement</p>
</div>
<div class="offer-card">
<div class="offer-dot"></div>
<p>Cookie tasting is obviously part of the deal 🍪</p>
</div>
</div>
<div class="location-box">
<svg width="20" height="20" fill="none" viewBox="0 0 20 20" style="flex-shrink: 0; margin-top: 2px;">
<path d="M10 2C7.2 2 5 4.2 5 7c0 4 5 11 5 11s5-7 5-11c0-2.8-2.2-5-5-5z" stroke="#bd4720" stroke-width="1.5"/>
<circle cx="10" cy="7" r="2" stroke="#bd4720" stroke-width="1.5"/>
</svg>
<p><strong>Fosbury &amp; Sons, Groot-Bijgaarden</strong> — a dynamic co-working environment where you work alongside other driven entrepreneurs and teams.</p>
</div>
</section>
 
<!-- DISCLAIMER -->
<div class="disclaimer">
<div class="disclaimer-inner">
<p>This is an <strong>unpaid school internship</strong> as part of your studies. KarmaKarma is an equal-opportunity employer — we value diversity and encourage everyone to apply.</p>
</div>
</div>
 
<!-- APPLY -->
<section id="apply" class="cta-section">
<p class="section-label">Apply</p>
<h2>Convinced?<br><em>Send us an email.</em></h2>
<p class="cta-intro">Send your CV and a short motivation to <strong style="color: var(--brown);">anne-julie@karmakarma.be</strong> and tell us why you're the right intern for the job. We'll be in touch if it's a match.</p>
<a class="cta-btn" href="mailto:anne-julie@karmakarma.be?subject=Internship%20Application%20Marketing%20%26%20Content">Send your application →</a>
<p class="cta-note">Please include in your email: your CV, a short motivation and your internship period.<br>We'll get back to you if it's a good match.</p>
</section>
 
</body>
</html>