-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
474 lines (455 loc) · 17.7 KB
/
cv.html
File metadata and controls
474 lines (455 loc) · 17.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
<!DOCTYPE html>
<html lang="en">
<head>
<title>Carla Canadell - CV</title>
<meta charset="utf-8" />
<meta name="description" content="Curriculum vitae of Carla Canadell, fashion and knitwear designer based in Barcelona.">
<meta name="author" content="Carla Canadell">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="Carla Canadell - CV">
<meta property="og:description" content="Professional experience, education, skills, and contact details for Carla Canadell.">
<meta property="og:type" content="website">
<link rel="icon" href="icon.jpeg" type="image/jpeg">
<link rel="stylesheet" href="assets/css/bootstrap.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/font-awesome.css">
<link rel="stylesheet" href="assets/css/nexus.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<link rel="stylesheet" href="assets/css/custom.css">
<link href="https://fonts.googleapis.com/css?family=Cardo" rel="stylesheet" type="text/css">
<style>
#cv-page {
color: #1f1f1f;
}
#cv-page .cv-intro {
background: linear-gradient(135deg, #f7f2f4 0%, #ffffff 100%);
border: 1px solid #eadde3;
border-left: 6px solid #ca7ea4;
padding: 22px 24px;
margin-bottom: 25px;
}
#cv-page .cv-intro p {
font-size: 19px;
line-height: 1.7;
color: #222222;
margin-bottom: 0;
}
#cv-page .cv-main,
#cv-page .cv-sidebar {
background: #ffffff;
border: 1px solid #e7e7e7;
padding: 22px 24px;
}
#cv-page h2,
#cv-page h3,
#cv-page h4 {
color: #1e1e1e;
}
#cv-page h3 {
letter-spacing: 0.4px;
text-transform: uppercase;
font-size: 21px;
margin-top: 0;
}
#cv-page h4 {
color: #2b2b2b;
font-size: 20px;
margin-top: 22px;
line-height: 1.35;
}
#cv-page p,
#cv-page li {
font-size: 18px;
line-height: 1.75;
color: #242424;
}
#cv-page ul {
padding-left: 22px;
}
#cv-page hr {
width: 100%;
border-top: 1px solid #d7d7d7;
margin: 14px 0 20px;
}
#cv-page a {
color: #5c3047;
text-decoration: underline;
text-underline-offset: 0.18em;
text-decoration-thickness: 0.08em;
}
#cv-page a:hover {
color: #3f1f30;
}
#cv-page a:focus-visible {
outline: 3px solid #ca7ea4;
outline-offset: 2px;
border-radius: 2px;
}
#cv-page .cv-muted {
color: #4f4f4f;
}
.print-only {
display: none;
}
.screen-only {
display: block;
}
@media (max-width: 767px) {
#cv-page .cv-main,
#cv-page .cv-sidebar,
#cv-page .cv-intro {
padding: 18px 16px;
}
}
@page {
size: A4;
margin: 11mm 11mm;
}
@media print {
.print-only {
display: block !important;
}
.screen-only {
display: none !important;
}
#pre_header,
#header,
#base,
#hornav,
#slicknav_menu,
.slicknav_menu,
.slicknav_btn,
.logo,
script,
.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
display: none !important;
visibility: hidden !important;
height: 0 !important;
overflow: hidden !important;
}
html,
body {
background: #ffffff !important;
color: #000000 !important;
opacity: 1 !important;
animation: none !important;
margin: 0 !important;
padding: 0 !important;
}
body * {
color: #000000 !important;
opacity: 1 !important;
text-shadow: none !important;
animation: none !important;
transition: none !important;
}
#content.container {
width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
#cv-page {
margin: 0 !important;
padding: 0 !important;
}
#cv-page .row {
margin: 0 !important;
}
#cv-page .col-md-8,
#cv-page .col-md-4 {
float: left !important;
padding-left: 6px !important;
padding-right: 6px !important;
margin-bottom: 8px !important;
}
#cv-page .col-md-8 {
width: 66% !important;
}
#cv-page .col-md-4 {
width: 34% !important;
}
#cv-page .cv-intro,
#cv-page .cv-main,
#cv-page .cv-sidebar {
background: #ffffff !important;
border: 1px solid #cfcfcf !important;
box-shadow: none !important;
padding: 11px 13px !important;
}
#cv-page .cv-intro {
border-left: 4px solid #8b5a72 !important;
margin-bottom: 8px !important;
}
#cv-page h2 {
font-size: 24px !important;
margin-top: 0 !important;
}
#cv-page h3 {
font-size: 16px !important;
letter-spacing: 0.8px !important;
margin-bottom: 3px !important;
}
#cv-page h4 {
font-size: 16px !important;
line-height: 1.3 !important;
margin-top: 10px !important;
margin-bottom: 3px !important;
}
#cv-page p,
#cv-page li {
font-size: 12.2px !important;
line-height: 1.31 !important;
color: #000000 !important;
margin-bottom: 4px !important;
}
#cv-page ul {
margin-top: 1px !important;
margin-bottom: 6px !important;
padding-left: 16px !important;
}
#cv-page hr {
margin: 5px 0 7px !important;
border-top: 1px solid #c9c9c9 !important;
}
#cv-page a,
#cv-page a:visited {
color: #000000 !important;
text-decoration: underline !important;
font-size: inherit !important;
line-height: inherit !important;
font-weight: inherit !important;
}
#cv-page a[href]:after {
content: none !important;
}
#cv-page .cv-intro,
#cv-page .cv-main,
#cv-page .cv-sidebar,
#cv-page p,
#cv-page ul,
#cv-page li {
break-inside: auto;
page-break-inside: auto;
}
#cv-page h3,
#cv-page h4 {
break-after: avoid-page;
page-break-after: avoid;
}
#cv-page .cv-main h3.margin-top-40 {
margin-top: 14px !important;
}
}
</style>
</head>
<body>
<div id="pre_header" class="visible-lg"></div>
<div id="header" class="container">
<div class="row">
<div class="logo">
<a href="index.html" title="Carla Canadell - Home">
<img src="assets/img/logo_lletra1.jpg" style="padding: 5px 0px 0px 0px;" alt="Carla Canadell" width="274px" />
</a>
</div>
<div class="col-md-14 margin-top-30">
<div id="hornav" class="pull-right visible-lg">
<ul class="nav navbar-nav">
<li><span><a href="pages-about-me.html">About</a></span></li>
<li><span>Collections</span>
<ul>
<li><a href="pages-collection-anais.html">Anaïs</a></li>
<li><a href="pages-collection-knitwear.html">Knitwear</a></li>
<li><a href="pages-collection-archive.html">Archive</a></li>
</ul>
</li>
<li><span><a href="pages-editorials.html">Press & Editorials</a></span></li>
<li><span><a href="fashion-film.html">Fashion Film</a></span></li>
<li><span><a href="portfolio.html">Portfolio</a></span></li>
<li><span><a href="shop.html">SHOP</a></span></li>
</ul>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<div id="content" class="container">
<div id="cv-page">
<div class="row margin-vert-30">
<div class="col-md-12">
<div class="cv-intro">
<h2>Carla Canadell - Curriculum Vitae</h2>
<p>Fashion and textile designer specialized in knitwear, with professional experience in international and local fashion studios. Adaptable, creative, and collaborative, with strong communication skills and a solid background in garment construction, textile development, and hands-on atelier production.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 margin-bottom-30">
<div class="cv-main">
<h3>Professional Experience</h3>
<hr>
<h4>Fashion Designer</h4>
<p class="cv-muted"><strong>Pronovias</strong>, Barcelona · Oct 2023 - Present</p>
<p class="screen-only">Designer for Les Accessoires and total-look proposals, with work across product development and design collaborations with international brands. Contribute to runway trend research for couture and bridal collections, concept and moodboard creation, supplier development, and tech packs.</p>
<ul class="screen-only">
<li>Curator for temporary exhibitions at the Pronovias Museum</li>
<li>Backstage fitting and fashion show organization</li>
<li>VIP fashion illustrations, product presentations, dress naming across collections and training cards</li>
<li>Contributor to the Innovation Hub initiative.</li>
</ul>
<p class="print-only">Designer for Les Accessoires and total-look proposals, with work across product development and design collaborations with international brands. Contribute to runway trend research for couture and bridal collections, concept and moodboard creation, supplier development, and tech packs.</p>
<ul class="print-only">
<li>Backstage fitting and fashion show organization</li>
<li>VIP fashion illustrations, product presentations, dress naming across collections and training cards</li>
<li>Contributor to the Innovation Hub initiative.</li>
</ul>
<!-- <p class="print-only">Leads accessories and total-look proposals, combining trend research, concept development, and product design for bridal and couture collections.</p>
<ul class="print-only">
<li>Develops tech packs and supplier follow-up for international collaborations.</li>
<li>Supports runway operations, museum projects, and VIP presentation content.</li>
</ul> -->
<h4>Atelier Assistant & Seamstress</h4>
<p class="cv-muted"><strong>Iris van Herpen</strong>, Amsterdam · Feb 2023 - Sep 2023</p>
<p class="screen-only">Worked in the couture atelier developing and restoring Haute Couture collections. Responsibilities included hand and machine sewing, pattern development, sourcing, hand embroidery, moulage, and visual support work. Contributed to the <em>Architectonics</em> collection presented at Paris Fashion Week, assisted backstage, and supported client-facing showroom activity. Also worked on bespoke commissions, including a gown worn by Beyoncé during the Renaissance tour in Amsterdam.</p>
<ul class="screen-only">
<li>Hand and machine sewing for couture garments</li>
<li>Technique research with silicone, pigments, laser cutting, and draping</li>
<li>Pattern and sample preparation for collection pieces</li>
<li>Contributed to the exhibition <em>Sculpting the Senses</em> at Musée des Arts Décoratifs (Paris)</li>
</ul>
<p class="print-only">Worked in the couture atelier developing and restoring Haute Couture collections. Responsibilities included hand and machine sewing, pattern development, sourcing, hand embroidery, moulage, and visual support work. Contributed to the <em>Architectonics</em> collection presented at Paris Fashion Week, assisted backstage, and supported client-facing showroom activity. Also worked on bespoke commissions, including a gown worn by Beyoncé during the Renaissance tour in Amsterdam.</p>
<ul class="print-only">
<li>Hand and machine sewing for couture garments</li>
<li>Technique research with silicone, pigments, laser cutting, and draping</li>
<li>Contributed to the exhibition <em>Sculpting the Senses</em> at Musée des Arts Décoratifs (Paris)</li>
</ul>
<!-- <p class="print-only">Worked across collection development and restoration in a Haute Couture atelier, contributing to the <em>Architectonics</em> season and bespoke pieces.</p>
<ul class="print-only">
<li>Executed couture handwork, sewing, moulage, embroidery, and pattern support under high-pressure timelines.</li>
<li>Supported Paris Fashion Week backstage and showroom client service.</li>
</ul> -->
<h4>Knitwear Designer</h4>
<p class="cv-muted"><strong>Maison Ullens</strong>, Brussels · Jan 2022 - Jun 2022</p>
<p>Designed a knitwear sample collection by reusing in-stock yarns and developing applications for accessories, produced on a semi-industrial knitting machine.</p>
<!-- <h4>Sales Associate</h4>
<p class="cv-muted"><strong>The Kooples</strong>, Barcelona · Jun 2021 - Sep 2021</p> -->
<h4>Fashion Atelier & Marketing Assistant</h4>
<p class="cv-muted"><strong>Cortana</strong>, Barcelona · Mar 2019 - Sep 2019</p>
<p>Supported atelier and production tasks including fabric cutting, patternmaking, bridal sewing, supplier communication, and hand-drawn print development.</p> <p class="screen-only">Managed online order workflows and contributed to website and online shop updates.</p>
<!-- <h4>Retail Sales Specialist</h4>
<p class="cv-muted"><strong>Sitgetana SL</strong>, Barcelona · Mar 2019 - Jan 2021</p> -->
<h4 class="screen-only">Fashion Assistant</h4>
<p class="cv-muted screen-only"><strong>La Mona de Seda</strong>, Barcelona · Jun 2018 - Sep 2018</p>
<p class="screen-only">Supported the production area with fabric cutting and sewing tasks.</p>
<h4>Designer</h4>
<p class="cv-muted"><strong>Stone WS</strong>, Barcelona · May 2017 - Aug 2017</p>
<p>Designed a home textile collection for El Corte Inglés, including technical sheets, packaging design, and supplier coordination.</p>
<h3 class="margin-top-40">Education</h3>
<hr>
<h4>Master's Degree in Textile Design (Knitting)</h4>
<p class="cv-muted"><strong>Académie Royale des Beaux-Arts de Bruxelles</strong>, Brussels · 2022</p>
<p class="print-only">Included knit project exhibition at Espace Vanderborght, Brussels.</p>
<h4>Bachelor's Degree in Fashion Design</h4>
<p class="cv-muted"><strong>Istituto Europeo di Design (IED)</strong>, Barcelona · 2018</p>
<p class="print-only">Final degree collection presented at 080 Barcelona Fashion Week.</p>
<h4 class="screen-only">Jewellery Studies</h4>
<p class="cv-muted screen-only"><strong>La Casa de la Espiral</strong>, Barcelona · 2018 - 2019</p>
<h3 class="margin-top-40 screen-only">Publications & Shows</h3>
<hr class="screen-only">
<ul class="screen-only">
<li>Knit project exhibition at Espace Vanderborght, Brussels</li>
<li>Fashion show of final degree collection at 080 Barcelona Fashion Week</li>
</ul>
</div>
</div>
<div class="col-md-4 margin-bottom-30">
<div class="cv-sidebar">
<h3>Details</h3>
<hr>
<p><strong>Location:</strong><br>Barcelona, Catalonia, Spain</p>
<p><strong>Email:</strong><br><a href="mailto:carlacanadellm@gmail.com">carlacanadellm@gmail.com</a></p>
<p><strong>LinkedIn:</strong><br><a href="https://www.linkedin.com/in/carla-canadell-montes-b36069180/" target="_blank" rel="noopener noreferrer">LinkedIn</a></p>
<p><strong>Nationality:</strong><br>Spanish</p>
<p><strong>Website:</strong><br><a href="https://carlacanadell.com/cv.html" target="_blank" rel="noopener noreferrer">carlacanadell.com</a></p>
<h3 class="margin-top-30">Languages</h3>
<hr>
<p><strong>Spanish:</strong> Native (C2)</p>
<p><strong>Catalan:</strong> Native (C2)</p>
<p><strong>English:</strong> Advanced (C1)</p>
<p><strong>French:</strong> Advanced (C1)</p>
<h3 class="margin-top-30">Skills & Tools</h3>
<hr>
<ul>
<li>Adobe Suite (Photoshop, Illustrator, InDesign)</li>
<li>Microsoft Office</li>
<li>Hand and machine sewing</li>
<li>Embroidery and draping</li>
<li>Textile and knitwear design (manual and machine)</li>
<li>Drawing and print design</li>
<li>Trend analysis and moodboard development</li>
<li>Sketching and fashion illustration</li>
</ul>
<h3 class="margin-top-30">Soft Skills</h3>
<hr>
<ul>
<li>Team-player.</li>
<li>Results-oriented with strong follow-through.</li>
<li>Empathetic and supportive.</li>
<li>Communicative and approachable.</li>
<li>Adaptable and flexible.</li>
<li>Problem-solver.</li>
<li>Great at working under pressure.</li>
<li>Attentive to details and quality.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="base">
<div class="container padding-vert-30">
<div class="row">
<div class="col-md-4 margin-bottom-20">
<h3 class="margin-bottom-10">Contact</h3>
<p>Made sustainably in Barcelona</p>
<p>
Email: <a href="mailto:carlacanadellm@gmail.com">carlacanadellm@gmail.com</a><br>
Website: <a href="https://carlacanadell.com/">carlacanadell.com</a>
</p>
</div>
<div class="col-md-4 margin-bottom-20">
<h3 class="margin-bottom-10">Navigate</h3>
<ul class="menu">
<li><a href="pages-about-me.html">About</a></li>
<li><a href="pages-editorials.html">Press & Editorials</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="shop.html">Shop</a></li>
</ul>
</div>
<div class="col-md-4 margin-bottom-20">
<h3 class="margin-bottom-10">Follow</h3>
<ul class="list-inline">
<li><a href="https://www.instagram.com/carla.canadell/" target="_blank" rel="noopener noreferrer" aria-label="Instagram"><i class="fa fa-instagram fa-2x"></i></a></li>
<li><a href="https://www.linkedin.com/in/carla-canadell-montes-b36069180/" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn"><i class="fa fa-linkedin fa-2x"></i></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center" style="padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1);">
<p style="margin: 0; font-size: 12px; opacity: 0.7;">© 2026 Carla Canadell. All rights reserved.</p>
</div>
</div>
</div>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/scripts.js"></script>
<script src="assets/js/jquery.isotope.js"></script>
<script src="assets/js/jquery.slicknav.js"></script>
<script src="assets/js/jquery.visible.js"></script>
<script src="assets/js/slimbox2.js"></script>
<script src="assets/js/modernizr.custom.js"></script>
</body>
</html>