forked from NDR-DH/DHsite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
422 lines (369 loc) · 12.6 KB
/
contact.html
File metadata and controls
422 lines (369 loc) · 12.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact — Dawson House</title>
<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=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="shared.css">
<style>
.contact-page {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: calc(100vh - 89px);
margin-top: 89px;
}
.contact-left {
padding: 96px 72px 96px 56px;
border-right: 1px solid var(--light-grey);
display: flex;
flex-direction: column;
gap: 56px;
}
.contact-left h1 {
font-family: var(--font-display);
font-size: clamp(40px, 4.5vw, 64px);
font-weight: 300;
line-height: 1.05;
color: var(--charcoal);
margin-bottom: 24px;
}
.contact-left-opening p {
font-size: 16px;
font-weight: 300;
line-height: 1.85;
color: var(--soft-slate);
max-width: 400px;
}
.contact-expect {
padding-top: 44px;
border-top: 1px solid var(--light-grey);
}
.contact-expect-label {
font-size: 11px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--mist-teal);
margin-bottom: 24px;
display: flex;
align-items: center;
gap: 14px;
}
.contact-expect-label::before {
content: '';
display: block;
width: 22px;
height: 1px;
background: var(--mist-teal);
flex-shrink: 0;
}
.contact-expect-item {
display: flex;
gap: 16px;
margin-bottom: 18px;
align-items: baseline;
}
.contact-expect-item:last-child { margin-bottom: 0; }
.contact-expect-marker {
font-family: var(--font-display);
font-size: 13px;
color: var(--greige);
flex-shrink: 0;
width: 18px;
}
.contact-expect-text {
font-size: 15px;
font-weight: 300;
line-height: 1.75;
color: var(--soft-slate);
}
.contact-direct {
padding-top: 44px;
border-top: 1px solid var(--light-grey);
}
.contact-direct p {
font-size: 14px;
font-weight: 300;
line-height: 1.75;
color: var(--soft-slate);
}
.contact-direct a {
color: var(--deep-teal);
text-decoration: none;
transition: opacity 0.2s;
}
.contact-direct a:hover { opacity: 0.7; }
.contact-reassurance {
padding-top: 44px;
border-top: 1px solid var(--light-grey);
}
.contact-reassurance p {
font-family: var(--font-display);
font-size: 18px;
font-weight: 300;
font-style: italic;
line-height: 1.5;
color: var(--deep-slate);
opacity: 0.65;
max-width: 360px;
}
/* FORM */
.contact-right {
padding: 96px 56px 96px 72px;
}
.form-label {
display: block;
font-size: 11px;
font-weight: 400;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--deep-slate);
opacity: 0.55;
margin-bottom: 10px;
}
.form-label-optional {
opacity: 0.5;
font-size: 10px;
letter-spacing: 0.06em;
text-transform: none;
margin-left: 8px;
font-style: italic;
font-weight: 300;
}
.form-field { margin-bottom: 32px; }
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
}
input[type="text"],
input[type="email"],
select,
textarea {
width: 100%;
padding: 12px 0;
background: transparent;
border: none;
border-bottom: 1px solid var(--light-grey);
font-family: var(--font-body);
font-size: 15px;
font-weight: 300;
color: var(--deep-slate);
outline: none;
appearance: none;
-webkit-appearance: none;
border-radius: 0;
transition: border-color 0.25s;
}
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
border-color: var(--deep-teal);
}
input::placeholder,
textarea::placeholder { color: rgba(47,50,53,0.28); }
select {
cursor: pointer;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%238EA2B0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 4px center;
padding-right: 28px;
}
textarea {
resize: none;
min-height: 140px;
line-height: 1.75;
padding-top: 14px;
}
.form-divider {
height: 1px;
background: var(--light-grey);
margin: 4px 0 32px;
}
.form-section-heading {
font-size: 11px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--greige);
margin-bottom: 28px;
}
.form-submit-row {
display: flex;
align-items: center;
gap: 24px;
margin-top: 12px;
flex-wrap: wrap;
}
.form-submit {
display: inline-block;
padding: 17px 44px;
background: var(--deep-teal);
color: var(--warm-white);
font-family: var(--font-body);
font-size: 12px;
font-weight: 400;
letter-spacing: 0.08em;
text-transform: uppercase;
border: none;
cursor: pointer;
transition: background 0.25s, transform 0.2s;
flex-shrink: 0;
}
.form-submit:hover {
background: var(--soft-teal);
transform: translateY(-1px);
}
.form-privacy {
font-size: 12px;
font-weight: 300;
color: var(--soft-slate);
opacity: 0.55;
line-height: 1.6;
}
@media (max-width: 960px) {
.contact-page { grid-template-columns: 1fr; margin-top: 76px; }
.contact-left { padding: 60px 28px 48px; border-right: none; border-bottom: 1px solid var(--light-grey); gap: 40px; }
.contact-right { padding: 48px 28px 80px; }
.form-row { grid-template-columns: 1fr; gap: 0; }
}
</style>
</head>
<body>
<nav id="main-nav">
<a href="index.html" class="nav-logo" aria-label="Dawson House home">
<svg viewBox="0 0 835 1000" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill="#2F3235" d="M357.2,21.1H22v957.8h794V480C816,226.5,610.6,21.1,357.2,21.1z M92.3,91.5h264.8c214.2,0,388.5,174.3,388.5,388.5v87H414V308.9h-74.4v599.6H92.3V91.5z M414,908.5V636.5h331.6v272.1H414z"/></svg>
<span class="nav-wordmark">Dawson House</span>
</a>
<ul class="nav-links">
<li class="nav-hide"><a href="about.html">About</a></li>
<li class="nav-hide"><a href="deputy.html">Deputies</a></li>
<li class="nav-hide"><a href="mediation.html">Mediation</a></li>
<li><a href="contact.html" class="nav-contact active">Contact</a></li>
</ul>
</nav>
<div class="contact-page">
<div class="contact-left">
<div class="contact-left-opening">
<h1>Start with your situation.</h1>
<p>You do not need to have everything worked out before you contact us. A brief outline of what has happened is enough for us to understand whether and how we can help.</p>
</div>
<div class="contact-expect">
<p class="contact-expect-label">What to expect</p>
<div class="contact-expect-item">
<span class="contact-expect-marker">—</span>
<p class="contact-expect-text">We will review what you send and consider whether it is something we can assist with.</p>
</div>
<div class="contact-expect-item">
<span class="contact-expect-marker">—</span>
<p class="contact-expect-text">We may suggest a short initial call to understand the situation more clearly.</p>
</div>
<div class="contact-expect-item">
<span class="contact-expect-marker">—</span>
<p class="contact-expect-text">There is no commitment at this stage — on either side.</p>
</div>
</div>
<div class="contact-direct">
<p>If email is easier, you can also contact us directly at <a href="mailto:hello@dawsonhouse.org.uk">hello@dawsonhouse.org.uk</a>.</p>
</div>
<div class="contact-reassurance">
<p>We will be direct about whether we can help, and if we are not the right people, we will say so.</p>
</div>
</div>
<div class="contact-right">
<!-- Replace REPLACE_WITH_REAL_ID with your Formspree form ID -->
<!-- Thank-you redirect: add _next hidden input below with URL of thank-you page when ready -->
<form
method="POST"
action="https://formspree.io/f/xeernqoz"
accept-charset="UTF-8"
>
<input type="hidden" name="_subject" value="New Dawson House enquiry">
<!-- Uncomment and set URL to redirect after submission: -->
<!-- <input type="hidden" name="_next" value="https://dawsonhouse.org.uk/thankyou.html"> -->
<div class="form-row">
<div class="form-field">
<label class="form-label" for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your name" required>
</div>
<div class="form-field">
<label class="form-label" for="email">Email</label>
<input type="email" id="email" name="email" placeholder="your@email.com" required>
</div>
</div>
<div class="form-field">
<label class="form-label" for="role">Who are you in this situation?</label>
<select id="role" name="role" required>
<option value="" disabled selected></option>
<option value="Individual / family member / carer">Individual / family member / carer</option>
<option value="Professional deputy">Professional deputy</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-field">
<label class="form-label" for="situation">What is happening?</label>
<textarea id="situation" name="situation" placeholder="A short outline of the situation is enough — what has happened, who is involved, and what concerns you." required></textarea>
</div>
<div class="form-divider"></div>
<p class="form-section-heading">A few optional details</p>
<div class="form-row">
<div class="form-field">
<label class="form-label" for="stage">
Stage of situation
<span class="form-label-optional">optional</span>
</label>
<select id="stage" name="stage">
<option value="" disabled selected></option>
<option value="Trying to understand what is happening">Trying to understand what is happening</option>
<option value="Early dispute">Early dispute</option>
<option value="Ongoing dispute">Ongoing dispute</option>
<option value="Considering mediation">Considering mediation</option>
<option value="Not sure">Not sure</option>
</select>
</div>
<div class="form-field">
<label class="form-label" for="urgency">
Urgency
<span class="form-label-optional">optional</span>
</label>
<select id="urgency" name="urgency">
<option value="" disabled selected></option>
<option value="No immediate urgency">No immediate urgency</option>
<option value="Some time sensitivity">Some time sensitivity</option>
<option value="Urgent">Urgent</option>
</select>
</div>
</div>
<div class="form-submit-row">
<button type="submit" class="form-submit">Send enquiry</button>
<p class="form-privacy">Treated in confidence. Sending an enquiry does not create a legal relationship.</p>
</div>
</form>
</div>
</div>
<footer>
<div class="footer-main">
<a href="index.html" class="footer-logo" aria-label="Dawson House">
<svg viewBox="0 0 835 1000" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path fill="rgba(246,244,241,0.5)" d="M357.2,21.1H22v957.8h794V480C816,226.5,610.6,21.1,357.2,21.1z M92.3,91.5h264.8c214.2,0,388.5,174.3,388.5,388.5v87H414V308.9h-74.4v599.6H92.3V91.5z M414,908.5V636.5h331.6v272.1H414z"/></svg>
<span class="footer-name">Dawson House</span>
</a>
<ul class="footer-links">
<li><a href="about.html">About</a></li>
<li><a href="deputy.html">Deputies</a></li>
<li><a href="mediation.html">Mediation</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<p class="footer-copy">© 2026 Dawson House — dawsonhouse.org.uk</p>
</div>
<div class="footer-compliance">
<p>Dawson House is not a firm of solicitors. Our work encompasses advisory, mediation and consultancy services. Where matters require regulated legal representation, we will say so and can assist in identifying appropriate referrals.</p>
</div>
</footer>
<script>
const nav = document.getElementById('main-nav');
window.addEventListener('scroll', () => { nav.classList.toggle('scrolled', window.scrollY > 60); }, { passive: true });
</script>
</body>
</html>