{"id":2873,"date":"2026-08-03T20:53:58","date_gmt":"2026-08-03T18:53:58","guid":{"rendered":"https:\/\/kavango.nl\/2026-08-03t1853580000test\/"},"modified":"2026-08-03T20:53:58","modified_gmt":"2026-08-03T18:53:58","slug":"2026-08-03t1853580000test","status":"publish","type":"post","link":"https:\/\/kavango.nl\/en\/2026-08-03t1853580000test\/","title":{"rendered":"2026-08-03T18:53:58+00:00test"},"content":{"rendered":"<p>{&#8220;id&#8221;: &#8220;msg_011CdgKQyqQ5UEVzgH3eYokA&#8221;, &#8220;request&#8221;: {&#8220;role&#8221;: &#8220;user&#8221;, &#8220;content&#8221;: [{&#8220;type&#8221;: &#8220;text&#8221;, &#8220;text&#8221;: &#8220;ROLE\\r\\nYou are a graphic designer at Kavango, the agency for A Beautiful Mess (ABM), a mezze\\r\\nrestaurant group in Amsterdam, Utrecht and Arnhem with a social mission. You design a\\r\\nflyer, poster or social post as a single HTML document with inline CSS, working inside\\r\\nthe ABM brand system described below. You decide the composition. You do not invent new\\r\\ncolours, fonts or shapes.\\r\\n\\r\\nINPUT BRIEFING\\r\\nmaak een afbeelding van een pijp die geen pijp is And use the brand style guide attached [\\&#8221;https:\\\\\/\\\\\/kavango.nl\\\\\/wp-content\\\\\/uploads\\\\\/gravity_forms\\\\\/6-ec9058e20ddb2d1a2bce719a2d678d9c\\\\\/2026\\\\\/08\\\\\/ABM_Style-Guide-July-2024.pdf\\&#8221;] and send to you https &#8230; .txtfile_011CdgK9he9oKuc94fNRNNy4{\\&#8221;type\\&#8221;: \\&#8221;file\\&#8221;, \\&#8221;id\\&#8221;: \\&#8221;file_011CdgK9he9oKuc94fNRNNy4\\&#8221;, \\&#8221;size_bytes\\&#8221;: 137, \\&#8221;created_at\\&#8221;: \\&#8221;2026-08-03T18:47:41.245000Z\\&#8221;, \\&#8221;filename\\&#8221;: \\&#8221;https &#8230; .txt\\&#8221;, \\&#8221;mime_type\\&#8221;: \\&#8221;text\/plain\\&#8221;, \\&#8221;downloadable\\&#8221;: false}\\n\\r\\nTHINK FIRST, THEN BUILD\\r\\nBefore writing code, decide: which format, which of the three layout patterns, which single\\r\\naccent colour, whether a photo or a graphic shape carries the design, and what the one\\r\\nheadline is. Do not output this reasoning. Output only the finished document.\\r\\n\\r\\nOUTPUT CONTRACT\\r\\n- Return one complete HTML document and nothing else.\\r\\n- The first character of your reply must be < and the last must be >.\\r\\n- No markdown code fences, no explanation, no comments addressed to the reader.\\r\\n- All CSS in one <\/p>\n<style> tag in the head. No JavaScript, no frameworks, no CDN other than\\r\\n  Google Fonts.\\r\\n\\r\\nCANVAS AND SCALING\\r\\nBuild one .page element with a fixed size. Set --page-w on it and derive every other\\r\\nmeasurement from --u, so the whole design scales as one unit:\\r\\n\\r\\n.page{\\r\\n  --page-w: 148mm;                        \/* the format, see list below *\/\\r\\n  --u: calc(var(--page-w) \/ 100);         \/* 1u = 1 percent of the width *\/\\r\\n  position: relative;\\r\\n  width: var(--page-w);\\r\\n  height: calc(var(--page-w) * 1.41421);  \/* the format's ratio *\/\\r\\n  font-size: var(--u);\\r\\n  background: var(--sand);\\r\\n  color: var(--ink);\\r\\n  overflow: hidden;\\r\\n}\\r\\n\\r\\nFormats, pick from the briefing:\\r\\nA5 flyer      --page-w 148mm   ratio 1.41421\\r\\nA4 poster     --page-w 210mm   ratio 1.41421\\r\\nInstagram 1:1 --page-w 1080px  ratio 1\\r\\nInstagram 4:5 --page-w 1080px  ratio 1.25\\r\\nStory 9:16    --page-w 1080px  ratio 1.77778\\r\\nWeb banner    --page-w 1920px  ratio 0.5625\\r\\n\\r\\nWrap .page in a plain <\/p>\n<div class=\\\"viewer\\\"> that centres it on a grey background, and add\\r\\n@page{ size: A5; margin: 0; } plus a @media print block that removes the viewer padding\\r\\nand sets print-color-adjust: exact, so the sand and the accent actually print.\\r\\n\\r\\nMANDATORY CSS BASE\\r\\nInclude these rules exactly as written. Do not override them later in the stylesheet.\\r\\n\\r\\n*{ box-sizing: border-box; }\\r\\nhtml, body{ margin:0; padding:0; background:#6f6f6f; font-family: var(--body); }\\r\\nimg{ display:block; max-width:100%; }\\r\\n.logo{\\r\\n  position:absolute;\\r\\n  right: calc(var(--u) * 5);\\r\\n  bottom: calc(var(--u) * 5);\\r\\n  width: calc(var(--u) * 19);\\r\\n  height: auto;\\r\\n  z-index: 3;\\r\\n}\\r\\n.photo{ position:absolute; z-index:1; overflow:hidden; }\\r\\n.photo img{ width:100%; height:100%; object-fit:cover; }\\r\\n\\r\\nThe logo img must carry class=\\\"logo\\\" and no other width, transform or size may be applied\\r\\nto it anywhere in the stylesheet.\\r\\n\\r\\nFONTS\\r\\n<link href=\\\"https:\/\/fonts.googleapis.com\/css2?family=Bebas+Neue&#038;family=Gelasio:ital,wght@0,400;0,700;1,400&#038;display=swap\\\" rel=\\\"stylesheet\\\">\\r\\n\\r\\n--display: \\\"Bebas Neue Pro\\\", \\\"Bebas Neue\\\", \\\"Oswald\\\", \\\"Arial Narrow\\\", sans-serif;\\r\\n--body:    Georgia, \\\"Gelasio\\\", \\\"Times New Roman\\\", serif;\\r\\n\\r\\nNever use any other font. Never use a sans serif for body copy.\\r\\n\\r\\nBRAND TOKENS\\r\\nCopy this into :root verbatim, then set --accent to one of the eight secondary colours.\\r\\n\\r\\n:root{\\r\\n  --sand:       #F2E8CC;\\r\\n  --ink:        #000000;\\r\\n  --flamingo:   #F2ABAB;\\r\\n  --lavender:   #808CC2;\\r\\n  --orange:     #ED8A3D;\\r\\n  --coral:      #E84F59;\\r\\n  --olive:      #6E7345;\\r\\n  --midnight:   #383D47;\\r\\n  --wine:       #822B45;\\r\\n  --terracotta: #A86663;\\r\\n  --accent:     var(--orange);\\r\\n}\\r\\n\\r\\nCOLOUR RULES\\r\\n- Sand is the background. Black is the type. That is the whole primary palette.\\r\\n- Exactly one secondary colour per design, set once as --accent. Never two.\\r\\n- The accent appears in small amounts only: behind one or two words of the headline, on a\\r\\n  single short phrase in the intro, or as one large cropped background shape. Never as a\\r\\n  full page background, never as body text colour.\\r\\n- Accent by subject: orange food, summer, workshops. coral events, music. lavender\\r\\n  learning, community, language. olive sustainability, daytime, produce. wine evening,\\r\\n  drinks, dinner. terracotta craft, heritage. flamingo brunch, sweets. midnight formal,\\r\\n  partnerships.\\r\\n\\r\\nTYPOGRAPHY\\r\\n- Headline: --display, uppercase, line-height around 0.87, no letter spacing, black.\\r\\n  One or two words sit in an accent block. Use this exact technique so the block grows\\r\\n  with the text instead of sitting on fixed coordinates:\\r\\n\\r\\n  .mark{\\r\\n    background: var(--accent);\\r\\n    padding: 0 calc(var(--u) * 1.6);\\r\\n    -webkit-box-decoration-break: clone;\\r\\n            box-decoration-break: clone;\\r\\n  }\\r\\n\\r\\n  To let the block bleed past the left margin, add a negative margin-left and an equal\\r\\n  extra padding-left. Never fake the block with an absolutely positioned element.\\r\\n- Metadata strip above the headline (dates, credits, performers): --display, uppercase,\\r\\n  small, items separated by a vertical bar with a space on each side.\\r\\n- Subheadings and labels: --display uppercase, or --body bold.\\r\\n- Body copy and lists: --body regular, line-height about 1.3.\\r\\n- Big dates on posters: --body regular, very large, not uppercase, not bold.\\r\\n- Never centre long body copy. Ranged left is the house default.\\r\\n\\r\\nREQUIRED SIZES (in u, not optional)\\r\\nEvery font-size, width, height, margin and padding is written as calc(var(--u) * n).\\r\\nNever use px, pt, rem, em or unitless numbers for any measurement inside .page.\\r\\n\\r\\npage padding: 8 top, 5 right, 5 bottom, 8 left\\r\\nheadline: font-size between 10 and 15\\r\\nintro lines: font-size between 4 and 5.5\\r\\nbody copy, list items, detail values: font-size between 2.4 and 3, never smaller\\r\\nlabel above a detail block: font-size between 2.8 and 3.4\\r\\nlogo width: exactly 19\\r\\n\\r\\nAll body copy and all labels are black. The accent colour is never used on running text.\\r\\n\\r\\nLAYOUT PATTERNS\\r\\nChoose one. Do not blend them.\\r\\n\\r\\nA. Poster with arch photo\\r\\n   metadata strip, headline with one accent block, intro and short details on the left,\\r\\n   arch cut photo occupying the lower right and bleeding off the bottom edge,\\r\\n   large date bottom left, url small at the bottom, logo bottom right.\\r\\n\\r\\nB. Full bleed photo\\r\\n   photo fills the canvas, headline in stacked accent blocks in the upper third,\\r\\n   a sand band across the bottom carrying the practical details and the logo.\\r\\n\\r\\nC. Accent shape with photo\\r\\n   sand background, one large organic cropped shape in the accent colour bleeding off one\\r\\n   edge, an arch cut photo overlapping that shape, headline and body in black on the open\\r\\n   sand area, logo bottom right.\\r\\n\\r\\nEvery design uses a photo. There is no layout without one.\\r\\n\\r\\nCOVERAGE\\r\\nThe page must be filled edge to edge. Check these before you finish:\\r\\n- The photo covers at least 35 percent of the canvas area and touches at least one edge.\\r\\n- No empty area larger than 20 percent of the page height anywhere on the canvas.\\r\\n- The bottom 25 percent of the page always carries something: the photo, the accent shape,\\r\\n  the practical details or the footer with the logo. It is never blank sand.\\r\\n- Content starts at the top padding, not halfway down the page.\\r\\n\\r\\nSHAPES\\r\\nArch cut for photos, one of these two, nothing else:\\r\\n  round arch:   border-radius: 50% 50% 0 0 \/ 32% 32% 0 0;\\r\\n  pointed arch: clip-path: polygon(50% 0, 100% 34%, 100% 100%, 0 100%, 0 34%);\\r\\nThe image inside uses width 100%, height 100%, object-fit: cover, display: block.\\r\\nFor pattern C, build the organic accent shape with border-radius percentages on a plain\\r\\ndiv, for example border-radius: 62% 38% 45% 55% \/ 55% 48% 52% 45%, positioned so it runs\\r\\noff the canvas, with the arch cut photo layered on top of it. No SVG, no gradients.\\r\\n\\r\\nASSETS\\r\\nLogo, always an img tag with this exact url, never redrawn, never rotated, never inside a\\r\\ncoloured box, never with a shadow:\\r\\n  https:\/\/kavango.nl\/wp-content\/uploads\/2026\/08\/logo-abm.png\\r\\nThis is the black version. Only place it on sand or on a light, calm part of a photo. If\\r\\nthe area behind it is dark or busy, put a sand band behind that corner instead.\\r\\n\\r\\nPhotos, pick the closest match to the briefing:\\r\\n  https:\/\/kavango.nl\/wp-content\/uploads\/2026\/08\/taalles-foto.jpg\\r\\n    people at a table during a language class in the Community Cafe, daylight, informal\\r\\n  https:\/\/kavango.nl\/wp-content\/uploads\/2026\/08\/spritz.jpg\\r\\n    a spritz style drink, warm tones, terrace and drinks context\\r\\nAlways place a photo. If neither is a perfect match, pick the closer of the two anyway and\\r\\ncrop it so the relevant part is visible. Never link to an image url that is not in this\\r\\nlist and never leave a photo slot empty.\\r\\n\\r\\nCOPY\\r\\n- All visible copy in Dutch, unless the briefing is in English.\\r\\n- Use the briefing's own wording where it is supplied. Do not rewrite it into marketing\\r\\n  language, do not add slogans, taglines, emoji or exclamation marks.\\r\\n- Headline max three lines of about 13 characters each.\\r\\n- Intro max two lines of about 42 characters.\\r\\n- Lists: two or three items, max 48 characters each, no full stop.\\r\\n- Practical details: two or three label and value pairs. The label is one word plus a\\r\\n  question mark, for example Waar? Wanneer? Kosten? Aanmelden?\\r\\n- Never invent a date, time, price, address, phone number or name. Use the literal\\r\\n  placeholders [DATUM], [TIJD], [PRIJS] or [LOCATIE].\\r\\n- Never invent a claim, a partnership, a collaboration or a reason. If the briefing does\\r\\n  not state why something exists, write nothing about it.\\r\\n- Never name a third party brand or company unless the briefing names it, and never\\r\\n  suggest a relationship with one.\\r\\n- The headline is a headline, not the briefing repeated. Turn the briefing into a short\\r\\n  phrase a reader would see from three metres away.\\r\\n- No hyphens in Dutch compound words and no long dashes in running text.\\r\\n\\r\\nFORBIDDEN\\r\\nGradients, box-shadow on content, text-shadow, rounded corners on text blocks, outlines\\r\\nor boxes around the logo, icons, emoji, invented QR codes, stock photo urls, borders\\r\\naround the page, more than one accent colour, any font outside the two named above.\\r\\n\\r\\nSELF CHECK BEFORE ANSWERING\\r\\n1. Reply starts with <!DOCTYPE html>, no code fences anywhere.\\r\\n2. Page size and ratio match one of the listed formats.\\r\\n3. Exactly one secondary colour is used, and only in small amounts.\\r\\n4. Headline is Bebas Neue uppercase, body copy is Georgia.\\r\\n5. A photo from the asset list is present, cut into an arch or running full bleed, covering\\r\\n   at least 35 percent of the canvas.\\r\\n6. Logo is an img tag with class=\\\"logo\\\" and the exact url, on a light background, unrotated.\\r\\n7. Every measurement inside .page is written as calc(var(--u) * n). No px, rem or em.\\r\\n8. No blank area larger than 20 percent of the page height.\\r\\n9. Every date, time, price and location is either from the briefing or a placeholder, and\\r\\n   nothing is claimed that the briefing does not state.\\r\\n10. Nothing overflows: the sum of your vertical blocks fits inside the page height.\"}]}, \"response\": {\"role\": \"assistant\", \"content\": [{\"type\": \"text\", \"text\": \"<!DOCTYPE html><html lang=\\\"nl\\\"><head><meta charset=\\\"utf-8\\\"><title>ABM<\/title><link href=\\\"https:\/\/fonts.googleapis.com\/css2?family=Bebas+Neue&#038;family=Gelasio:ital,wght@0,400;0,700;1,400&#038;display=swap\\\" rel=\\\"stylesheet\\\">\n<style>\\n:root{\\n  --sand:#F2E8CC;--ink:#000000;--flamingo:#F2ABAB;--lavender:#808CC2;--orange:#ED8A3D;--coral:#E84F59;--olive:#6E7345;--midnight:#383D47;--wine:#822B45;--terracotta:#A86663;\\n  --accent:var(--terracotta);\\n  --display:\\\"Bebas Neue Pro\\\",\\\"Bebas Neue\\\",\\\"Oswald\\\",\\\"Arial Narrow\\\",sans-serif;\\n  --body:Georgia,\\\"Gelasio\\\",\\\"Times New Roman\\\",serif;\\n}\\n*{ box-sizing: border-box; }\\nhtml, body{ margin:0; padding:0; background:#6f6f6f; font-family: var(--body); }\\nimg{ display:block; max-width:100%; }\\n.logo{ position:absolute; right: calc(var(--u) * 5); bottom: calc(var(--u) * 5); width: calc(var(--u) * 19); height: auto; z-index: 3; }\\n.photo{ position:absolute; z-index:1; overflow:hidden; }\\n.photo img{ width:100%; height:100%; object-fit:cover; }\\n.viewer{ display:flex; justify-content:center; padding:24px; }\\n.page{\\n  --page-w:210mm; --u:calc(var(--page-w)\/100);\\n  position:relative; width:var(--page-w); height:calc(var(--page-w)*1.41421);\\n  font-size:var(--u); background:var(--sand); color:var(--ink); overflow:hidden;\\n  padding:calc(var(--u)*8) calc(var(--u)*5) calc(var(--u)*5) calc(var(--u)*8);\\n}\\n.blob{ position:absolute; z-index:0; right:calc(var(--u)*-22); bottom:calc(var(--u)*-14);\\n  width:calc(var(--u)*92); height:calc(var(--u)*92); background:var(--accent);\\n  border-radius:62% 38% 45% 55% \/ 55% 48% 52% 45%; }\\n.meta{ position:relative; z-index:2; font-family:var(--display); text-transform:uppercase; font-size:calc(var(--u)*3.2); letter-spacing:0; }\\nh1{ position:relative; z-index:2; margin:calc(var(--u)*2) 0 0 0; font-family:var(--display); text-transform:uppercase; font-size:calc(var(--u)*13); line-height:0.87; }\\n.mark{ background:var(--accent); padding:0 calc(var(--u)*1.6); -webkit-box-decoration-break:clone; box-decoration-break:clone; margin-left:calc(var(--u)*-8); padding-left:calc(var(\", \"text_var\": \"--accent\", \"text_calc\": \"var(--u\"}]}}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;id&#8221;: &#8220;msg_011CdgKQyqQ5UEVzgH3eYokA&#8221;, &#8220;request&#8221;: {&#8220;role&#8221;: &#8220;user&#8221;, &#8220;content&#8221;: [{&#8220;type&#8221;: &#8220;text&#8221;, &#8220;text&#8221;: &#8220;ROLE\\r\\nYou are a graphic designer at Kavango, the agency for A Beautiful Mess (ABM), a mezze\\r\\nrestaurant group in Amsterdam, Utrecht and Arnhem with a social mission. You design a\\r\\nflyer, poster or social post as a single HTML document with inline CSS, working inside\\r\\nthe ABM brand system [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2873","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>2026-08-03T18:53:58+00:00test - Kavango<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kavango.nl\/en\/2026-08-03t1853580000test\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"2026-08-03T18:53:58+00:00test - Kavango\" \/>\n<meta property=\"og:description\" content=\"{&#8220;id&#8221;: &#8220;msg_011CdgKQyqQ5UEVzgH3eYokA&#8221;, &#8220;request&#8221;: {&#8220;role&#8221;: &#8220;user&#8221;, &#8220;content&#8221;: [{&#8220;type&#8221;: &#8220;text&#8221;, &#8220;text&#8221;: &#8220;ROLErnYou are a graphic designer at Kavango, the agency for A Beautiful Mess (ABM), a mezzernrestaurant group in Amsterdam, Utrecht and Arnhem with a social mission. You design arnflyer, poster or social post as a single HTML document with inline CSS, working insidernthe ABM brand system [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kavango.nl\/en\/2026-08-03t1853580000test\/\" \/>\n<meta property=\"og:site_name\" content=\"Kavango\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-03T18:53:58+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/kavango.nl\\\/2026-08-03t1853580000test\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kavango.nl\\\/2026-08-03t1853580000test\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/kavango.nl\\\/#\\\/schema\\\/person\\\/33c9805228104d0dd9bc40d40e59c909\"},\"headline\":\"2026-08-03T18:53:58+00:00test\",\"datePublished\":\"2026-08-03T18:53:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kavango.nl\\\/2026-08-03t1853580000test\\\/\"},\"wordCount\":2333,\"publisher\":{\"@id\":\"https:\\\/\\\/kavango.nl\\\/#organization\"},\"articleSection\":[\"Uncategorized\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kavango.nl\\\/2026-08-03t1853580000test\\\/\",\"url\":\"https:\\\/\\\/kavango.nl\\\/2026-08-03t1853580000test\\\/\",\"name\":\"2026-08-03T18:53:58+00:00test - Kavango\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kavango.nl\\\/#website\"},\"datePublished\":\"2026-08-03T18:53:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kavango.nl\\\/2026-08-03t1853580000test\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/kavango.nl\\\/2026-08-03t1853580000test\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kavango.nl\\\/2026-08-03t1853580000test\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kavango.nl\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"2026-08-03T18:53:58+00:00test\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kavango.nl\\\/#website\",\"url\":\"https:\\\/\\\/kavango.nl\\\/\",\"name\":\"Kavango\",\"description\":\"Kavango Marketing Agency\",\"publisher\":{\"@id\":\"https:\\\/\\\/kavango.nl\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/kavango.nl\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/kavango.nl\\\/#organization\",\"name\":\"Kavango\",\"url\":\"https:\\\/\\\/kavango.nl\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/kavango.nl\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/kavango.nl\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Logo-2.0-Kavango.webp\",\"contentUrl\":\"https:\\\/\\\/kavango.nl\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Logo-2.0-Kavango.webp\",\"width\":1052,\"height\":98,\"caption\":\"Kavango\"},\"image\":{\"@id\":\"https:\\\/\\\/kavango.nl\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kavango.nl\\\/#\\\/schema\\\/person\\\/33c9805228104d0dd9bc40d40e59c909\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7d19bc4af46d4e3bd2557b4263c5a71d8ea6299098831f7b1c2da76d9aaa83f5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7d19bc4af46d4e3bd2557b4263c5a71d8ea6299098831f7b1c2da76d9aaa83f5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7d19bc4af46d4e3bd2557b4263c5a71d8ea6299098831f7b1c2da76d9aaa83f5?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/delta.kavango.nl\"],\"url\":\"https:\\\/\\\/kavango.nl\\\/en\\\/author\\\/seelemann_sf533w6w\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"2026-08-03T18:53:58+00:00test - Kavango","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/kavango.nl\/en\/2026-08-03t1853580000test\/","og_locale":"en_GB","og_type":"article","og_title":"2026-08-03T18:53:58+00:00test - Kavango","og_description":"{&#8220;id&#8221;: &#8220;msg_011CdgKQyqQ5UEVzgH3eYokA&#8221;, &#8220;request&#8221;: {&#8220;role&#8221;: &#8220;user&#8221;, &#8220;content&#8221;: [{&#8220;type&#8221;: &#8220;text&#8221;, &#8220;text&#8221;: &#8220;ROLErnYou are a graphic designer at Kavango, the agency for A Beautiful Mess (ABM), a mezzernrestaurant group in Amsterdam, Utrecht and Arnhem with a social mission. You design arnflyer, poster or social post as a single HTML document with inline CSS, working insidernthe ABM brand system [&hellip;]","og_url":"https:\/\/kavango.nl\/en\/2026-08-03t1853580000test\/","og_site_name":"Kavango","article_published_time":"2026-08-03T18:53:58+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Estimated reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kavango.nl\/2026-08-03t1853580000test\/#article","isPartOf":{"@id":"https:\/\/kavango.nl\/2026-08-03t1853580000test\/"},"author":{"name":"admin","@id":"https:\/\/kavango.nl\/#\/schema\/person\/33c9805228104d0dd9bc40d40e59c909"},"headline":"2026-08-03T18:53:58+00:00test","datePublished":"2026-08-03T18:53:58+00:00","mainEntityOfPage":{"@id":"https:\/\/kavango.nl\/2026-08-03t1853580000test\/"},"wordCount":2333,"publisher":{"@id":"https:\/\/kavango.nl\/#organization"},"articleSection":["Uncategorized"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/kavango.nl\/2026-08-03t1853580000test\/","url":"https:\/\/kavango.nl\/2026-08-03t1853580000test\/","name":"2026-08-03T18:53:58+00:00test - Kavango","isPartOf":{"@id":"https:\/\/kavango.nl\/#website"},"datePublished":"2026-08-03T18:53:58+00:00","breadcrumb":{"@id":"https:\/\/kavango.nl\/2026-08-03t1853580000test\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kavango.nl\/2026-08-03t1853580000test\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kavango.nl\/2026-08-03t1853580000test\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/kavango.nl\/"},{"@type":"ListItem","position":2,"name":"2026-08-03T18:53:58+00:00test"}]},{"@type":"WebSite","@id":"https:\/\/kavango.nl\/#website","url":"https:\/\/kavango.nl\/","name":"Kavango","description":"Kavango Marketing Agency","publisher":{"@id":"https:\/\/kavango.nl\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kavango.nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/kavango.nl\/#organization","name":"Kavango","url":"https:\/\/kavango.nl\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/kavango.nl\/#\/schema\/logo\/image\/","url":"https:\/\/kavango.nl\/wp-content\/uploads\/2024\/12\/Logo-2.0-Kavango.webp","contentUrl":"https:\/\/kavango.nl\/wp-content\/uploads\/2024\/12\/Logo-2.0-Kavango.webp","width":1052,"height":98,"caption":"Kavango"},"image":{"@id":"https:\/\/kavango.nl\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kavango.nl\/#\/schema\/person\/33c9805228104d0dd9bc40d40e59c909","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/7d19bc4af46d4e3bd2557b4263c5a71d8ea6299098831f7b1c2da76d9aaa83f5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7d19bc4af46d4e3bd2557b4263c5a71d8ea6299098831f7b1c2da76d9aaa83f5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7d19bc4af46d4e3bd2557b4263c5a71d8ea6299098831f7b1c2da76d9aaa83f5?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/delta.kavango.nl"],"url":"https:\/\/kavango.nl\/en\/author\/seelemann_sf533w6w\/"}]}},"_links":{"self":[{"href":"https:\/\/kavango.nl\/en\/wp-json\/wp\/v2\/posts\/2873","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kavango.nl\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kavango.nl\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kavango.nl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kavango.nl\/en\/wp-json\/wp\/v2\/comments?post=2873"}],"version-history":[{"count":0,"href":"https:\/\/kavango.nl\/en\/wp-json\/wp\/v2\/posts\/2873\/revisions"}],"wp:attachment":[{"href":"https:\/\/kavango.nl\/en\/wp-json\/wp\/v2\/media?parent=2873"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kavango.nl\/en\/wp-json\/wp\/v2\/categories?post=2873"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kavango.nl\/en\/wp-json\/wp\/v2\/tags?post=2873"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}