-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathepk.html
More file actions
580 lines (530 loc) · 23.5 KB
/
epk.html
File metadata and controls
580 lines (530 loc) · 23.5 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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WARD0 | Music & EPK</title>
<link rel="icon" type="image/svg+xml" href="/images/WS-2D.svg?v=2">
<meta name="description" content="WARD0 - House & Techno Selector. 15+ years of experience. Resident at El Garito.">
<link rel="canonical" href="https://www.wardostudio.com/epk">
<link rel="preload" href="/fonts/CormorantGaramond-Bold.woff2" as="font" type="font/woff2">
<link rel="stylesheet" href="./style.css">
<style>
/* EPK Specific Styles */
:root {
--epk-bg: #050505;
--epk-accent: #D4AF37;
/* Muted Gold */
--epk-text: #Eaeaea;
--epk-muted: #888;
}
body {
background-color: var(--epk-bg);
color: var(--epk-text);
}
/* Hero Override */
.epk-hero {
position: relative;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
margin-top: -220px;
/* Counteract body padding */
padding-top: 0;
}
.epk-hero-video-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.4;
z-index: 1;
}
.epk-hero-content {
position: relative;
z-index: 10;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
padding: 0 2rem;
}
.epk-logo {
width: 200px;
margin-bottom: 14rem;
margin-top: 28vh;
/* Push down significantly */
/* Shiny/Glow effect for visibility on dark background */
filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}
.epk-tagline {
font-family: 'Inter', sans-serif;
font-size: 3.5rem;
/* Large size */
font-weight: 700;
/* Bold */
color: var(--epk-accent);
/* Gold */
text-transform: uppercase;
letter-spacing: 2px;
max-width: 900px;
line-height: 1.2;
margin-top: 25vh;
/* Positioning */
margin-bottom: 2rem;
text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}
.epk-btn {
margin-top: 2rem;
padding: 1rem 3rem;
border: 1px solid var(--epk-accent);
color: var(--epk-accent);
text-decoration: none;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 0.9rem;
transition: all 0.3s ease;
background: rgba(0, 0, 0, 0.5);
display: inline-block;
font-family: 'Prata', serif;
}
.epk-btn:hover {
background: var(--epk-accent);
color: #000;
}
/* Sections */
.epk-section {
padding: 8rem 2rem;
max-width: 1200px;
margin: 0 auto;
scroll-margin-top: 100px;
}
.epk-section-header {
margin-bottom: 4rem;
text-align: center;
}
.epk-section-title {
font-family: 'Prata', serif;
font-size: 3rem;
color: var(--epk-accent);
margin-bottom: 1rem;
}
.text-wardo {
font-family: 'Prata', serif;
}
/* Bio */
.bio-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.bio-text p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
color: rgba(255, 255, 255, 0.9);
}
/* Wardoton */
.wardoton-section {
background: linear-gradient(to bottom, #050505, #111);
text-align: center;
padding: 10rem 2rem;
}
.wardoton-content p {
max-width: 800px;
margin: 0 auto;
font-size: 1.5rem;
line-height: 1.6;
font-family: 'Cormorant Garamond', serif;
font-style: italic;
}
/* Footprint */
.footprint-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
text-align: center;
}
.footprint-col h3 {
color: var(--epk-accent);
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 1.2rem;
}
.footprint-col ul {
list-style: none;
}
.footprint-col li {
margin-bottom: 0.8rem;
font-size: 1rem;
color: #ccc;
}
/* Media */
.media-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
}
.video-container {
position: relative;
padding-bottom: 56.25%;
/* 16:9 */
height: 0;
background: #000;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.mixcloud-container {
margin-top: 3rem;
text-align: center;
}
/* Downloads */
.downloads-section {
text-align: center;
padding: 6rem 2rem;
background: #0a0a0a;
border-top: 1px solid #222;
}
/* Video Covers */
.video-cover-link {
display: block;
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%;
/* 16:9 */
overflow: hidden;
border: 1px solid #222;
background: #000;
}
.video-cover-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
opacity: 0.8;
}
.video-cover-link:hover .video-cover-img {
transform: scale(1.05);
opacity: 0.4;
}
.play-icon-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
background: rgba(0, 0, 0, 0.7);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 24px;
border: 2px solid #fff;
transition: all 0.3s;
z-index: 10;
}
.video-cover-link:hover .play-icon-overlay {
background: #D4AF37;
border-color: #D4AF37;
color: #000;
transform: translate(-50%, -50%) scale(1.1);
}
/* Mobile */
@media (max-width: 768px) {
.epk-hero-content {
padding: 0 1rem;
}
.epk-logo {
width: 150px;
}
.bio-grid {
grid-template-columns: 1fr;
}
.epk-section-title {
font-size: 2.5rem;
}
}
</style>
</head>
<body>
<div id="app">
<header class="site-header">
<div class="logo">
<a href="/music" class="logo">
<!-- Adjusted link to go back to Music Section -->
<img src="/images/WS-Bold.svg" alt="Wardo Studio Icon" class="header-icon" width="100" height="100">
<img src="/images/WS-Lettering.svg" alt="Wardo Studio Lettering" class="header-logo-text-img"
width="240" height="100">
</a>
</div>
<nav>
<a href="/index.html#explore">Studio</a>
<a href="#bio">Bio</a>
<a href="#media">Media</a>
<a href="#contact">Booking</a>
</nav>
</header>
<main>
<!-- Hero -->
<section class="epk-hero">
<img src="/images/Wardo-city-5.jpg" alt="Wardo in the City" class="epk-hero-video-bg"
style="object-position: center 30%;" width="1920" height="1080" loading="eager"
fetchpriority="high">
<div class="epk-hero-content">
<h1 style="display:none;">WARD0</h1>
<p class="epk-tagline">Reading the room. Building the story. Making people dance.</p>
<div style="display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;">
<a href="#contact" class="epk-btn">Book WARDO</a>
<a href="#downloads" class="epk-btn" style="border-color: #666; color: #ccc;">EPK / Photos</a>
</div>
</div>
</section>
<!-- Bio -->
<section id="bio" class="epk-section">
<div class="bio-grid">
<div class="bio-image">
<img src="/images/founder-shadow.webp" alt="WARD0"
style="width: 100%; filter: grayscale(100%); border-radius: 4px;" loading="lazy">
</div>
<div class="bio-text">
<h2 class="epk-section-title" style="text-align: left; font-size: 3.5rem;">Wardo</h2>
<p
style="font-size: 1.2rem; color: #fff; margin-bottom: 1rem; font-style: italic; font-family: 'Prata', serif;">
A visionary creator bridging the gap between the digital and physical worlds.
</p>
<p>
With over 15 years of experience in music, technology, and hospitality, Wardo curates
experiences that are as intellectual as they are visceral.
From all night long sets to sunrises on his presentations locally and internationally, his
work is a testament to the power of atmosphere.
</p>
<p>
Beyond the decks, Wardo is the founder of a creative studio spanning software, gastronomy,
and art—building ecosystems where culture thrives.
</p>
<a href="#contact" class="epk-btn text-wardo">Book Wardo →</a>
</div>
</div>
</section>
<!-- Wardoton -->
<section class="wardoton-section">
<div class="epk-section-header">
<span style="color: var(--epk-accent); letter-spacing: 2px;">SIGNATURE EXPERIENCE</span>
<h2 class="epk-section-title" style="margin-top: 1rem; font-size: 4rem;">WARDOTON</h2>
</div>
<div class="wardoton-content">
<p>"One-time 26-hour extended DJ set (During pandemic) designed as long-form musical storytelling
experiences, exploring the full spectrum from House to Techno."</p>
</div>
</section>
<!-- Global Footprint -->
<section class="epk-section">
<div class="epk-section-header">
<h2 class="epk-section-title">Global Footprint</h2>
</div>
<div class="footprint-grid">
<div class="footprint-col">
<h3>Residencies</h3>
<ul>
<li>El Garito (Current)</li>
<li>8vo Rooftop (Sheraton)</li>
<li>Chill Out Place</li>
<li>Antik</li>
<li>Steinvorth</li>
<li>Lubnan</li>
</ul>
</div>
<div class="footprint-col">
<h3>International Clubs</h3>
<ul>
<li>Vertigo (Costa Rica)</li>
<li>No Requests (Portland)</li>
<li>Vertigo Sky Lounge (Chicago)</li>
<li>La Santanera (Mexico)</li>
<li>Monkey Loft (Seattle, USA)</li>
<li>Nublu (NYC, USA)</li>
<li>Bump Bed - Burning Decompression (SF)</li>
</ul>
</div>
<div class="footprint-col">
<h3>Festivals</h3>
<ul>
<li>Ocaso (2018, 22, 23 & 26)</li>
<li>DreamSea Ibiza Sonica (2024 & 2025)</li>
<li>Mi Casa Holiday (2014, 15, 16, 17, 18 & 19)</li>
</ul>
</div>
</div>
</section>
<!-- Media -->
<section id="media" class="epk-section">
<div class="epk-section-header">
<h2 class="epk-section-title">Sessions & Media</h2>
</div>
<div class="media-grid">
<!-- YouTube Custom Covers (To bypass embed restrictions) -->
<div class="video-item">
<p style="margin-bottom: 0.5rem; color: #888;">SIMS – Selina Music Summit</p>
<a href="https://www.youtube.com/watch?v=kGBInZTplX4" target="_blank" class="video-cover-link">
<img src="https://img.youtube.com/vi/kGBInZTplX4/maxresdefault.jpg"
onerror="if (this.src.includes('maxresdefault')) this.src = this.src.replace('maxresdefault', 'hqdefault');"
alt="SIMS Session" class="video-cover-img">
<div class="play-icon-overlay">▶</div>
</a>
</div>
<div class="video-item">
<p style="margin-bottom: 0.5rem; color: #888;">Wardo | U-Guest #7 (Red Bull)</p>
<a href="https://www.youtube.com/watch?v=CnPrPoqTjAc" target="_blank" class="video-cover-link">
<img src="https://img.youtube.com/vi/CnPrPoqTjAc/hqdefault.jpg" alt="Red Bull Session"
class="video-cover-img">
<div class="play-icon-overlay">▶</div>
</a>
</div>
<div class="video-item">
<p style="margin-bottom: 0.5rem; color: #888;">Wardo Live at Ocaso 2022</p>
<a href="https://www.youtube.com/watch?v=sW2lZBft3kk" target="_blank" class="video-cover-link">
<img src="https://img.youtube.com/vi/sW2lZBft3kk/maxresdefault.jpg"
onerror="if (this.src.includes('maxresdefault')) this.src = this.src.replace('maxresdefault', 'hqdefault');"
alt="Ocaso Session" class="video-cover-img">
<div class="play-icon-overlay">▶</div>
</a>
</div>
<div class="video-item">
<p style="margin-bottom: 0.5rem; color: #888;">Wardo MCH 2020 (Room Sessions)</p>
<a href="https://www.youtube.com/watch?v=HbSfST6oap8" target="_blank" class="video-cover-link">
<img src="https://img.youtube.com/vi/HbSfST6oap8/hqdefault.jpg" alt="Urbanet Session"
class="video-cover-img">
<div class="play-icon-overlay">▶</div>
</a>
</div>
<!-- Vimeo -->
<!-- Vimeo -->
<div class="video-item">
<p style="margin-bottom: 0.5rem; color: #888;">Mercedez Benz Fashion Week</p>
<div class="video-container" style="position: relative; cursor: pointer;"
onclick="this.innerHTML='<iframe src=\'https://player.vimeo.com/video/127002009?autoplay=1\' frameborder=\'0\' allowfullscreen style=\'position:absolute;top:0;left:0;width:100%;height:100%;\'></iframe>'">
<img src="/images/fashion-week-cover.webp" alt="Fashion Week Cover"
style="width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;">
<div class="play-icon-overlay">▶</div>
</div>
</div>
<div class="video-item">
<p style="margin-bottom: 0.5rem; color: #888;">House 4 Real</p>
<div class="video-container" style="position: relative; cursor: pointer;"
onclick="this.innerHTML='<iframe src=\'https://player.vimeo.com/video/78839313?autoplay=1\' frameborder=\'0\' allowfullscreen style=\'position:absolute;top:0;left:0;width:100%;height:100%;\'></iframe>'">
<img src="/images/h4r-video-cover.webp" alt="House 4 Real Cover"
style="width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0;">
<div class="play-icon-overlay">▶</div>
</div>
</div>
</div>
<div class="mixcloud-container">
<a href="https://mixcloud.com/wardo" target="_blank" class="epk-btn">Listen on Mixcloud</a>
</div>
</section>
<!-- Academy -->
<section class="epk-section" style="border-top: 1px solid #222;">
<div class="bio-grid">
<div class="bio-text">
<h2 class="epk-section-title">Playground DJ Academy</h2>
<p>Sharing the craft. As the Lead Instructor at Playground DJ Academy by El Garito, WARDO
mentors the next generation of selectors, focusing on the art of reading a room, technical
precision, and musical history.</p>
<a href="https://instagram.com/garitoplayground" target="_blank" class="text-link"
style="color: var(--epk-accent); border-bottom: 1px solid var(--epk-accent); text-decoration: none;">Visit
Academy →</a>
</div>
<div class="bio-image"
style="background: #111; height: 300px; display:flex; align-items:center; justify-content:center; color:#444;">
[Academy Photo]
</div>
</div>
</section>
<!-- Downloads Section -->
<section id="downloads" class="downloads-section">
<h3 style="color: #fff; margin-bottom: 1rem; font-family: 'Prata', serif; font-size: 2rem;">
Promoter Assets</h3>
<p style="color: #888; margin-bottom: 2rem;">High-resolution photos, vector logos, and tech rider.</p>
<a href="/downloads/WARDO_EPK_Assets.zip" download class="epk-btn text-wardo">Download Press Kit
(ZIP)</a>
</section>
<!-- Contact Section (Reused) -->
<section id="contact" class="contact-section">
<div class="contact-container">
<!-- Left Column: Info -->
<div class="contact-info">
<h2
style="font-family: 'Prata', serif; font-size: 3rem; color: var(--epk-accent); margin-bottom: 1rem;">
Book WARDO</h2>
<p class="contact-subtext">For bookings, press inquiries, and collaborations.</p>
<div class="contact-services">
<h3>Direct Contact</h3>
<ul style="list-style: none;">
<li><strong style="color: #D4AF37;">Email:</strong> house@wardostudio.com</li>
<li><strong style="color: #D4AF37;">Phone / WhatsApp:</strong> +506 8843 3790</li>
</ul>
</div>
</div>
<!-- Right Column: Form -->
<div class="contact-form-wrapper">
<form action="https://formsubmit.co/house@wardostudio.com" method="POST" class="contact-form">
<input type="hidden" name="_subject" value="New Booking Inquiry from WARD0 EPK">
<input type="hidden" name="_captcha" value="false">
<input type="hidden" name="_template" value="table">
<input type="text" name="_honey" style="display:none">
<div class="form-group">
<label for="name">Name / Promoter</label>
<input type="text" id="name" name="name" placeholder="Your name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="you@example.com" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5"
placeholder="Tell us about the event or inquiry" required></textarea>
</div>
<button type="submit" class="submit-btn"
style="background-color: #D4AF37; color: black;">Send Booking Request</button>
</form>
</div>
</div>
</section>
</main>
<footer class="creative-footer">
<div class="footer-content">
<p class="footer-tagline" style="margin-bottom: 4rem;">The Creative Operating System</p>
<div class="footer-bottom">
<div class="social-links">
<a href="https://instagram.com/wardo.cr" target="_blank">@wardo.cr</a>
<a href="https://instagram.com/chilijunglecr" target="_blank">@chilijunglecr</a>
</div>
<p class="footer-quote" style="color: #444; font-size: 0.8rem; text-transform: uppercase;">"With
that House Music you can't go wrong"</p>
<p class="copyright">© 2025 Wardo Studio. All rights reserved.</p>
</div>
</div>
</footer>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>