-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
459 lines (402 loc) · 17.3 KB
/
Copy pathcontact.html
File metadata and controls
459 lines (402 loc) · 17.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TwoBreath — Contact / Kontakt / お問い合わせ</title>
<meta name="description" content="Contact TwoBreath — reach out for support, feedback, or press inquiries.">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap" rel="stylesheet">
<style>
:root {
--ink: #1a1714;
--ink-light: #2a2520;
--warm-white: #f5f0e8;
--warm-white-75: rgba(245,240,232,0.75);
--warm-white-60: rgba(245,240,232,0.6);
--muted: #8a8075;
--accent-teal: #2d9e8a;
--accent-gold: #c9a84c;
--accent-rose: #c96b6b;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
background: var(--ink);
color: var(--warm-white);
font-weight: 300;
line-height: 1.75;
-webkit-font-smoothing: antialiased;
}
/* ── Nav (same as home) ── */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 16px 40px;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(26,23,20,0.92);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.nav-logo {
font-family: 'Playfair Display', serif;
font-size: 20px;
font-weight: 500;
color: var(--warm-white);
text-decoration: none;
letter-spacing: -0.02em;
display: flex;
align-items: center;
gap: 8px;
}
.nav-logo span { color: var(--accent-teal); }
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
font-size: 13px;
color: var(--warm-white-60);
text-decoration: none;
letter-spacing: 0.05em;
text-transform: uppercase;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--warm-white); }
.nav-home-btn {
font-size: 13px;
color: var(--muted);
text-decoration: none;
letter-spacing: 0.05em;
text-transform: uppercase;
transition: color 0.2s;
border: 0.5px solid rgba(255,255,255,0.15);
padding: 6px 14px;
border-radius: 20px;
}
.nav-home-btn:hover { color: var(--warm-white); border-color: rgba(255,255,255,0.3); }
.container {
max-width: 720px;
margin: 0 auto;
padding: 100px 24px 80px;
}
/* Language tabs */
.lang-tabs {
display: flex;
gap: 8px;
margin-bottom: 48px;
flex-wrap: wrap;
}
.lang-tab {
padding: 8px 20px;
border-radius: 50px;
border: 0.5px solid rgba(45,158,138,0.3);
background: transparent;
color: var(--muted);
font-family: 'DM Sans', sans-serif;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.2s;
}
.lang-tab.active {
background: rgba(45,158,138,0.15);
border-color: var(--accent-teal);
color: var(--accent-teal);
}
.lang-tab:hover:not(.active) {
border-color: rgba(45,158,138,0.5);
color: var(--warm-white);
}
.lang-section { display: none; }
.lang-section.active { display: block; }
h1 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 2.4rem;
font-weight: 500;
margin-bottom: 8px;
color: var(--warm-white);
}
.subtitle {
color: var(--muted);
font-size: 0.95rem;
margin-bottom: 40px;
}
h2 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 1.3rem;
font-weight: 500;
margin-top: 36px;
margin-bottom: 12px;
color: var(--accent-teal);
}
p { margin-bottom: 12px; color: rgba(245,240,232,0.85); }
a { color: var(--accent-teal); text-decoration: none; }
a:hover { text-decoration: underline; }
/* Contact cards */
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 16px;
margin-top: 24px;
}
.contact-card {
background: rgba(45,158,138,0.06);
border: 0.5px solid rgba(45,158,138,0.2);
border-radius: 16px;
padding: 24px;
text-decoration: none;
transition: border-color 0.2s, background 0.2s;
display: block;
}
.contact-card:hover {
border-color: var(--accent-teal);
background: rgba(45,158,138,0.1);
text-decoration: none;
}
.contact-card-icon {
font-size: 1.6rem;
margin-bottom: 12px;
}
.contact-card-title {
font-size: 0.95rem;
font-weight: 600;
color: var(--warm-white);
margin-bottom: 4px;
}
.contact-card-desc {
font-size: 0.85rem;
color: var(--muted);
line-height: 1.5;
}
.contact-card-value {
font-size: 0.85rem;
color: var(--accent-teal);
margin-top: 8px;
word-break: break-all;
}
/* Beta banner */
.beta-banner {
display: flex;
align-items: center;
gap: 16px;
background: rgba(45,158,138,0.08);
border: 0.5px solid rgba(45,158,138,0.3);
border-radius: 16px;
padding: 20px 24px;
margin-bottom: 40px;
text-decoration: none;
transition: background 0.2s;
}
.beta-banner:hover { background: rgba(45,158,138,0.14); text-decoration: none; }
.beta-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--accent-teal);
flex-shrink: 0;
animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.4; transform: scale(0.6); }
}
.beta-banner-text { flex: 1; }
.beta-banner-text strong { color: var(--warm-white); }
.beta-banner-text p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.beta-banner-arrow { color: var(--accent-teal); font-size: 1.2rem; }
footer {
text-align: center;
padding: 40px 24px;
color: var(--muted);
font-size: 0.85rem;
border-top: 0.5px solid rgba(245,240,232,0.06);
margin-top: 40px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent-teal); }
.social-links {
display: flex;
gap: 16px;
justify-content: center;
margin-bottom: 18px;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
border-radius: 50%;
border: 0.5px solid rgba(255,255,255,0.12);
color: var(--muted);
transition: all 0.2s ease;
}
.social-links a:hover {
color: var(--accent-teal);
border-color: rgba(45,158,138,0.4);
background: rgba(45,158,138,0.06);
transform: translateY(-1px);
}
.social-links svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 600px) {
h1 { font-size: 1.8rem; }
.container { padding: 40px 18px 60px; }
.contact-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<nav>
<a href="index.html" class="nav-logo">
<img src="images/twobreath_icon.svg" alt="">Two<span>Breath</span>
</a>
<ul class="nav-links">
<li><a href="index.html#story">Our Story</a></li>
<li><a href="index.html#science">Science</a></li>
<li><a href="index.html#ritual">The Ritual</a></li>
<li><a href="index.html#vision">Vision</a></li>
</ul>
<a href="index.html" class="nav-home-btn">← Home</a>
</nav>
<div class="container">
<div class="lang-tabs" role="tablist" aria-label="Language">
<button class="lang-tab active" role="tab" aria-selected="true" onclick="switchLang('en', this)">English</button>
<button class="lang-tab" role="tab" aria-selected="false" onclick="switchLang('de', this)">Deutsch</button>
<button class="lang-tab" role="tab" aria-selected="false" onclick="switchLang('ja', this)">日本語</button>
</div>
<!-- ─── ENGLISH ─── -->
<section id="lang-en" class="lang-section active" lang="en">
<h1>Contact</h1>
<p class="subtitle">We'd love to hear from you.</p>
<a href="https://testflight.apple.com/join/ChJc5vVx" class="beta-banner" target="_blank" rel="noopener">
<div class="beta-dot"></div>
<div class="beta-banner-text">
<strong>Public Beta is Live</strong>
<p>Test TwoBreath on iPhone & Apple Watch — free via TestFlight</p>
</div>
<div class="beta-banner-arrow">→</div>
</a>
<div class="contact-grid">
<a href="mailto:info@twobreath.com?subject=Support%20%7C%20TwoBreath" class="contact-card">
<div class="contact-card-icon">✉️</div>
<div class="contact-card-title">Support & Feedback</div>
<div class="contact-card-desc">Questions about the app, breathing programs, or the Apple Watch experience.</div>
<div class="contact-card-value">info@twobreath.com</div>
</a>
<a href="mailto:info@twobreath.com?subject=Press%20%7C%20TwoBreath" class="contact-card">
<div class="contact-card-icon">📰</div>
<div class="contact-card-title">Press & Media</div>
<div class="contact-card-desc">Interviews, partnership inquiries, and press assets.</div>
<div class="contact-card-value">info@twobreath.com</div>
</a>
<a href="https://github.com/ma3u" class="contact-card" target="_blank" rel="noopener">
<div class="contact-card-icon">⌨️</div>
<div class="contact-card-title">Developer</div>
<div class="contact-card-desc">Follow the project, open issues, or contribute on GitHub.</div>
<div class="contact-card-value">github.com/ma3u</div>
</a>
</div>
<h2>Response Time</h2>
<p>We typically respond within 1–3 business days. For urgent app support, please include your iOS version and device model in your message.</p>
</section>
<!-- ─── DEUTSCH ─── -->
<section id="lang-de" class="lang-section" lang="de">
<h1>Kontakt</h1>
<p class="subtitle">Wir freuen uns über Ihre Nachricht.</p>
<a href="https://testflight.apple.com/join/ChJc5vVx" class="beta-banner" target="_blank" rel="noopener">
<div class="beta-dot"></div>
<div class="beta-banner-text">
<strong>Public Beta ist jetzt live</strong>
<p>TwoBreath auf iPhone & Apple Watch testen — kostenlos über TestFlight</p>
</div>
<div class="beta-banner-arrow">→</div>
</a>
<div class="contact-grid">
<a href="mailto:info@twobreath.com?subject=Support%20%7C%20TwoBreath" class="contact-card">
<div class="contact-card-icon">✉️</div>
<div class="contact-card-title">Support & Feedback</div>
<div class="contact-card-desc">Fragen zur App, den Atemübungen oder der Apple Watch-Erfahrung.</div>
<div class="contact-card-value">info@twobreath.com</div>
</a>
<a href="mailto:info@twobreath.com?subject=Presse%20%7C%20TwoBreath" class="contact-card">
<div class="contact-card-icon">📰</div>
<div class="contact-card-title">Presse & Medien</div>
<div class="contact-card-desc">Interviews, Kooperationsanfragen und Pressematerialien.</div>
<div class="contact-card-value">info@twobreath.com</div>
</a>
<a href="https://github.com/ma3u" class="contact-card" target="_blank" rel="noopener">
<div class="contact-card-icon">⌨️</div>
<div class="contact-card-title">Entwickler</div>
<div class="contact-card-desc">Projekt verfolgen, Issues melden oder auf GitHub beitragen.</div>
<div class="contact-card-value">github.com/ma3u</div>
</a>
</div>
<h2>Antwortzeit</h2>
<p>Wir antworten in der Regel innerhalb von 1–3 Werktagen. Bitte geben Sie bei App-Support Ihre iOS-Version und Ihr Gerätemodell an.</p>
</section>
<!-- ─── 日本語 ─── -->
<section id="lang-ja" class="lang-section" lang="ja">
<h1>お問い合わせ</h1>
<p class="subtitle">ご連絡をお待ちしております。</p>
<a href="https://testflight.apple.com/join/ChJc5vVx" class="beta-banner" target="_blank" rel="noopener">
<div class="beta-dot"></div>
<div class="beta-banner-text">
<strong>パブリックベータ公開中</strong>
<p>iPhone & Apple Watch で TwoBreath を無料体験 — TestFlight より</p>
</div>
<div class="beta-banner-arrow">→</div>
</a>
<div class="contact-grid">
<a href="mailto:info@twobreath.com?subject=%E3%82%B5%E3%83%9D%E3%83%BC%E3%83%88%20%7C%20TwoBreath" class="contact-card">
<div class="contact-card-icon">✉️</div>
<div class="contact-card-title">サポート & フィードバック</div>
<div class="contact-card-desc">アプリ、呼吸プログラム、Apple Watch の体験についてのご質問。</div>
<div class="contact-card-value">info@twobreath.com</div>
</a>
<a href="mailto:info@twobreath.com?subject=%E3%83%97%E3%83%AC%E3%82%B9%20%7C%20TwoBreath" class="contact-card">
<div class="contact-card-icon">📰</div>
<div class="contact-card-title">プレス & メディア</div>
<div class="contact-card-desc">取材・提携のご依頼、プレス素材のご提供。</div>
<div class="contact-card-value">info@twobreath.com</div>
</a>
<a href="https://github.com/ma3u" class="contact-card" target="_blank" rel="noopener">
<div class="contact-card-icon">⌨️</div>
<div class="contact-card-title">開発者</div>
<div class="contact-card-desc">GitHub でプロジェクトをフォロー、Issue の報告、または貢献。</div>
<div class="contact-card-value">github.com/ma3u</div>
</a>
</div>
<h2>返信について</h2>
<p>通常 1〜3 営業日以内にご返信いたします。アプリのサポートをご依頼の際は、iOS バージョンとデバイスのモデルをお知らせください。</p>
</section>
</div>
<footer>
<div class="social-links" aria-label="Social links">
<a href="https://www.instagram.com/twobreathapp/" target="_blank" rel="noopener" aria-label="TwoBreath on Instagram">
<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M12 2.16c3.2 0 3.58.01 4.85.07 1.17.05 1.8.25 2.23.41.56.22.96.48 1.38.9.42.42.68.82.9 1.38.16.42.36 1.06.41 2.23.06 1.27.07 1.65.07 4.85s-.01 3.58-.07 4.85c-.05 1.17-.25 1.8-.41 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.16-1.06.36-2.23.41-1.27.06-1.65.07-4.85.07s-3.58-.01-4.85-.07c-1.17-.05-1.8-.25-2.23-.41-.56-.22-.96-.48-1.38-.9-.42-.42-.68-.82-.9-1.38-.16-.42-.36-1.06-.41-2.23C2.17 15.58 2.16 15.2 2.16 12s.01-3.58.07-4.85c.05-1.17.25-1.8.41-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.16 1.06-.36 2.23-.41C8.42 2.17 8.8 2.16 12 2.16zm0 1.95c-3.15 0-3.51.01-4.74.07-.95.04-1.46.2-1.81.34-.45.18-.78.39-1.12.74-.34.34-.55.67-.74 1.12-.13.34-.3.86-.34 1.8-.06 1.24-.07 1.6-.07 4.75s.01 3.51.07 4.74c.04.95.2 1.46.34 1.81.18.45.39.78.74 1.12.34.34.67.55 1.12.74.34.13.86.3 1.81.34 1.23.06 1.59.07 4.74.07s3.51-.01 4.74-.07c.95-.04 1.46-.2 1.81-.34.45-.18.78-.39 1.12-.74.34-.34.55-.67.74-1.12.13-.34.3-.86.34-1.81.06-1.23.07-1.59.07-4.74s-.01-3.51-.07-4.74c-.04-.95-.2-1.46-.34-1.81-.18-.45-.39-.78-.74-1.12-.34-.34-.67-.55-1.12-.74-.34-.13-.86-.3-1.81-.34-1.23-.06-1.59-.07-4.74-.07zm0 3.32a4.57 4.57 0 1 1 0 9.14 4.57 4.57 0 0 1 0-9.14zm0 7.54a2.97 2.97 0 1 0 0-5.94 2.97 2.97 0 0 0 0 5.94zm5.81-7.74a1.07 1.07 0 1 1-2.14 0 1.07 1.07 0 0 1 2.14 0z"/></svg>
</a>
<a href="https://www.youtube.com/@TwoBreath-z3q" target="_blank" rel="noopener" aria-label="TwoBreath on YouTube">
<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M23.5 6.5a3.02 3.02 0 0 0-2.13-2.13C19.45 4 12 4 12 4s-7.45 0-9.37.37A3.02 3.02 0 0 0 .5 6.5C.13 8.42.13 12 .13 12s0 3.58.37 5.5a3.02 3.02 0 0 0 2.13 2.13C4.55 20 12 20 12 20s7.45 0 9.37-.37a3.02 3.02 0 0 0 2.13-2.13c.37-1.92.37-5.5.37-5.5s0-3.58-.37-5.5zM9.6 15.6V8.4l6.4 3.6-6.4 3.6z"/></svg>
</a>
</div>
<p>© 2026 Matthias Buchhorn. TwoBreath. · <a href="index.html">Home</a> · <a href="privacy.html">Privacy Policy</a> · <a href="impressum.html">Impressum</a></p>
</footer>
<script>
function switchLang(lang, btn) {
document.querySelectorAll('.lang-section').forEach(s => s.classList.remove('active'));
document.querySelectorAll('.lang-tab').forEach(t => {
t.classList.remove('active');
t.setAttribute('aria-selected', 'false');
});
document.getElementById('lang-' + lang).classList.add('active');
btn.classList.add('active');
btn.setAttribute('aria-selected', 'true');
}
</script>
</body>
</html>