@rubytech/create-realagent 1.0.843 → 1.0.844

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1451 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Property Brochure — Template</title>
7
- <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
8
- <style>
9
- /* ═══════════════════════════════════════════════════
10
- DESIGN TOKENS
11
- ═══════════════════════════════════════════════════ */
12
- :root {
13
- --primary: #7C8C72;
14
- --primary-hover: #6A7A62;
15
- --primary-subtle: rgba(124, 140, 114, 0.08);
16
- --primary-glow: rgba(124, 140, 114, 0.15);
17
- --accent: #C5A572;
18
- --accent-light: rgba(197, 165, 114, 0.12);
19
- --accent-bright: #D4B882;
20
- --background: #FAFAF8;
21
- --surface: #F0EDE8;
22
- --text: #2C2C2A;
23
- --text-secondary: #5A5A56;
24
- --text-tertiary: #8A8A84;
25
- --border: rgba(124, 140, 114, 0.18);
26
- --border-light: rgba(124, 140, 114, 0.08);
27
- --white: #FFFFFF;
28
- --display: 'Playfair Display', Georgia, serif;
29
- --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
30
- --glass-bg: rgba(250, 250, 248, 0.06);
31
- --glass-border: rgba(250, 250, 248, 0.12);
32
- --glass-bg-light: rgba(255, 255, 255, 0.55);
33
- --glass-border-light: rgba(124, 140, 114, 0.15);
34
- --dark-deep: #0a171c;
35
- --dark: #0d1f26;
36
- --teal: #2BBFD0;
37
- --teal-light: #5DD9E8;
38
- }
39
-
40
- * { margin: 0; padding: 0; box-sizing: border-box; }
41
-
42
- html {
43
- font-size: 16px;
44
- -webkit-font-smoothing: antialiased;
45
- -moz-osx-font-smoothing: grayscale;
46
- }
47
-
48
- body {
49
- font-family: var(--body);
50
- background: #e8e5e0;
51
- color: var(--text);
52
- line-height: 1.5;
53
- font-weight: 400;
54
- }
55
-
56
- /* ═══════════════════════════════════════════════════
57
- DOWNLOAD BUTTON
58
- ═══════════════════════════════════════════════════ */
59
- .download-bar {
60
- position: fixed;
61
- top: 20px;
62
- right: 20px;
63
- z-index: 1000;
64
- }
65
-
66
- .download-btn {
67
- font-family: var(--body);
68
- font-size: 0.72rem;
69
- font-weight: 600;
70
- letter-spacing: 0.1em;
71
- text-transform: uppercase;
72
- color: var(--background);
73
- background: rgba(44, 44, 42, 0.7);
74
- backdrop-filter: blur(12px);
75
- -webkit-backdrop-filter: blur(12px);
76
- border: 1px solid rgba(250, 250, 248, 0.12);
77
- padding: 10px 20px;
78
- border-radius: 4px;
79
- cursor: pointer;
80
- transition: all 0.2s;
81
- display: flex;
82
- align-items: center;
83
- gap: 8px;
84
- }
85
-
86
- .download-btn:hover {
87
- background: rgba(44, 44, 42, 0.95);
88
- border-color: var(--accent);
89
- color: var(--accent-bright);
90
- }
91
-
92
- .download-btn svg { width: 14px; height: 14px; }
93
-
94
- /* ═══════════════════════════════════════════════════
95
- COVER — Dark dramatic hero (biosymm pattern)
96
- ═══════════════════════════════════════════════════ */
97
- .cover {
98
- width: 210mm;
99
- min-height: 297mm;
100
- margin: 20px auto;
101
- display: flex;
102
- flex-direction: column;
103
- justify-content: flex-end;
104
- position: relative;
105
- overflow: hidden;
106
- background: #1a1c18;
107
- box-shadow: 0 2px 20px rgba(0,0,0,0.15);
108
- }
109
-
110
- .cover-bg {
111
- position: absolute;
112
- inset: 0;
113
- }
114
-
115
- .cover-bg img {
116
- width: 100%;
117
- height: 100%;
118
- object-fit: cover;
119
- }
120
-
121
- /* Lighter gradient vignette — house visible, text legible at bottom */
122
- .cover-bg::after {
123
- content: '';
124
- position: absolute;
125
- inset: 0;
126
- background:
127
- linear-gradient(to bottom, rgba(26,28,24,0.05) 0%, rgba(26,28,24,0.1) 30%, rgba(26,28,24,0.55) 65%, rgba(26,28,24,0.9) 100%),
128
- radial-gradient(ellipse 80% 50% at 75% 20%, rgba(197,165,114,0.04) 0%, transparent 60%);
129
- }
130
-
131
- .cover-inner {
132
- position: relative;
133
- z-index: 1;
134
- height: 100%;
135
- display: flex;
136
- flex-direction: column;
137
- justify-content: flex-end;
138
- padding: 40px;
139
- }
140
-
141
- .cover-label {
142
- font-family: var(--body);
143
- font-size: 0.55rem;
144
- font-weight: 600;
145
- letter-spacing: 0.3em;
146
- text-transform: uppercase;
147
- color: var(--accent);
148
- margin-bottom: 12px;
149
- display: flex;
150
- align-items: center;
151
- gap: 12px;
152
- }
153
-
154
- .cover-label::before {
155
- content: '';
156
- width: 28px;
157
- height: 1px;
158
- background: var(--accent);
159
- }
160
-
161
- .cover-title {
162
- font-family: var(--display);
163
- font-size: 3.2rem;
164
- font-weight: 400;
165
- line-height: 1.08;
166
- color: var(--background);
167
- letter-spacing: -0.02em;
168
- margin-bottom: 16px;
169
- }
170
-
171
- .cover-title em {
172
- font-style: italic;
173
- color: var(--accent-bright);
174
- }
175
-
176
- .cover-subtitle {
177
- font-size: 0.82rem;
178
- font-weight: 300;
179
- color: rgba(250, 250, 248, 0.7);
180
- max-width: 440px;
181
- line-height: 1.65;
182
- margin-bottom: 28px;
183
- }
184
-
185
- /* Glassmorphic stat cards — bottom of cover */
186
- .cover-stats {
187
- display: grid;
188
- grid-template-columns: repeat(5, 1fr);
189
- gap: 10px;
190
- }
191
-
192
- .cover-stat {
193
- background: var(--glass-bg);
194
- backdrop-filter: blur(16px);
195
- -webkit-backdrop-filter: blur(16px);
196
- border: 1px solid var(--glass-border);
197
- border-radius: 5px;
198
- padding: 14px 16px;
199
- }
200
-
201
- .cover-stat .stat-value {
202
- font-family: var(--display);
203
- font-size: 1.3rem;
204
- font-weight: 600;
205
- color: var(--accent-bright);
206
- line-height: 1;
207
- margin-bottom: 4px;
208
- }
209
-
210
- .cover-stat .stat-label {
211
- font-size: 0.48rem;
212
- font-weight: 500;
213
- letter-spacing: 0.05em;
214
- text-transform: uppercase;
215
- color: rgba(250, 250, 248, 0.55);
216
- line-height: 1.35;
217
- }
218
-
219
- /* ═══════════════════════════════════════════════════
220
- CONTENT PAGES — explicit A4 containers
221
- ═══════════════════════════════════════════════════ */
222
- .page {
223
- width: 210mm;
224
- min-height: 297mm;
225
- margin: 20px auto 0;
226
- background: var(--background);
227
- box-shadow: 0 4px 24px rgba(0,0,0,0.12);
228
- overflow: hidden;
229
- position: relative;
230
- }
231
-
232
- /* Page numbering on screen (cover = page 1, first .page = page 2) */
233
- body { counter-reset: page-number 1; }
234
- .page { counter-increment: page-number; }
235
- .page::after {
236
- content: counter(page-number);
237
- position: absolute;
238
- bottom: 16px;
239
- left: 0;
240
- right: 0;
241
- text-align: center;
242
- font-family: var(--display);
243
- font-size: 9px;
244
- color: var(--text-tertiary);
245
- }
246
-
247
- .content {
248
- padding: 28px 40px;
249
- }
250
-
251
- .section-label {
252
- font-family: var(--body);
253
- font-size: 0.55rem;
254
- font-weight: 600;
255
- letter-spacing: 0.25em;
256
- text-transform: uppercase;
257
- color: var(--accent);
258
- margin-bottom: 8px;
259
- display: flex;
260
- align-items: center;
261
- gap: 8px;
262
- }
263
-
264
- .section-label::before {
265
- content: '';
266
- width: 16px;
267
- height: 1px;
268
- background: var(--accent);
269
- }
270
-
271
- .section-heading {
272
- font-family: var(--display);
273
- font-size: 1.4rem;
274
- font-weight: 400;
275
- letter-spacing: 0.15em;
276
- text-transform: uppercase;
277
- color: var(--text);
278
- line-height: 1.25;
279
- margin-bottom: 14px;
280
- }
281
-
282
- .section-heading.small {
283
- font-size: 1.05rem;
284
- letter-spacing: 0.12em;
285
- }
286
-
287
- .body-text {
288
- font-size: 0.72rem;
289
- line-height: 1.7;
290
- color: var(--text-secondary);
291
- text-align: justify;
292
- hyphens: auto;
293
- }
294
-
295
- .body-text + .body-text { margin-top: 8px; }
296
- .body-text strong { color: var(--text); font-weight: 600; }
297
-
298
- .divider {
299
- height: 1px;
300
- background: var(--border);
301
- margin: 18px 0;
302
- }
303
-
304
- .divider.gold {
305
- background: linear-gradient(90deg, transparent, var(--accent), transparent);
306
- }
307
-
308
- /* ═══════════════════════════════════════════════════
309
- IMAGE LAYOUTS
310
- ═══════════════════════════════════════════════════ */
311
- .img-full {
312
- margin: 0 -40px;
313
- overflow: hidden;
314
- }
315
-
316
- .img-full img {
317
- width: 100%;
318
- height: 280px;
319
- object-fit: cover;
320
- }
321
-
322
- .img-grid-2 {
323
- display: grid;
324
- grid-template-columns: 1fr 1fr;
325
- gap: 8px;
326
- margin: 16px 0;
327
- }
328
-
329
- .img-grid-2 img {
330
- width: 100%;
331
- height: 260px;
332
- object-fit: cover;
333
- border-radius: 3px;
334
- }
335
-
336
- .img-grid-3 {
337
- display: grid;
338
- grid-template-columns: 1fr 1fr 1fr;
339
- gap: 8px;
340
- margin: 16px 0;
341
- }
342
-
343
- .img-grid-3 img {
344
- width: 100%;
345
- height: 220px;
346
- object-fit: cover;
347
- border-radius: 3px;
348
- }
349
-
350
- .img-banner {
351
- position: relative;
352
- margin: 0 -40px;
353
- height: 220px;
354
- overflow: hidden;
355
- }
356
-
357
- .img-banner img {
358
- width: 100%;
359
- height: 100%;
360
- object-fit: cover;
361
- }
362
-
363
- .img-banner .banner-overlay {
364
- position: absolute;
365
- inset: 0;
366
- background: linear-gradient(to right, rgba(10, 23, 28, 0.8) 0%, rgba(10, 23, 28, 0.4) 50%, transparent 100%);
367
- display: flex;
368
- align-items: center;
369
- padding: 0 80px;
370
- }
371
-
372
- .img-banner .banner-text {
373
- max-width: 50%;
374
- }
375
-
376
- .img-banner .banner-text h2 {
377
- font-family: var(--display);
378
- font-size: 1.4rem;
379
- font-weight: 400;
380
- letter-spacing: 0.15em;
381
- text-transform: uppercase;
382
- color: var(--background);
383
- margin-bottom: 8px;
384
- }
385
-
386
- .img-banner .banner-text p {
387
- font-size: 0.68rem;
388
- line-height: 1.6;
389
- color: rgba(250, 250, 248, 0.8);
390
- }
391
-
392
- /* ═══════════════════════════════════════════════════
393
- SPLIT LAYOUTS
394
- ═══════════════════════════════════════════════════ */
395
- .split {
396
- display: grid;
397
- grid-template-columns: 1fr 1fr;
398
- gap: 24px;
399
- align-items: start;
400
- }
401
-
402
- .split.text-right { direction: rtl; }
403
- .split.text-right > * { direction: ltr; }
404
-
405
- .split img {
406
- width: 100%;
407
- height: 100%;
408
- min-height: 280px;
409
- object-fit: cover;
410
- border-radius: 3px;
411
- }
412
-
413
- /* ═══════════════════════════════════════════════════
414
- CALLOUT / FEATURE LIST
415
- ═══════════════════════════════════════════════════ */
416
- .callout {
417
- background: var(--glass-bg-light);
418
- border: 1px solid var(--glass-border-light);
419
- border-left: 3px solid var(--accent);
420
- border-radius: 4px;
421
- padding: 12px 16px;
422
- margin: 12px 0;
423
- }
424
-
425
- .callout p {
426
- font-size: 0.68rem;
427
- line-height: 1.55;
428
- color: var(--text-secondary);
429
- font-style: italic;
430
- margin: 0;
431
- }
432
-
433
- .callout p strong {
434
- color: var(--text);
435
- font-weight: 600;
436
- font-style: normal;
437
- }
438
-
439
- .callout.primary {
440
- border-left-color: var(--primary);
441
- background: var(--primary-subtle);
442
- }
443
-
444
- .feature-list {
445
- list-style: none;
446
- margin: 10px 0;
447
- }
448
-
449
- .feature-list li {
450
- font-size: 0.68rem;
451
- line-height: 1.5;
452
- color: var(--text-secondary);
453
- padding: 4px 0;
454
- padding-left: 16px;
455
- position: relative;
456
- border-bottom: 1px solid var(--border-light);
457
- }
458
-
459
- .feature-list li:last-child { border-bottom: none; }
460
-
461
- .feature-list li::before {
462
- content: '';
463
- position: absolute;
464
- left: 0;
465
- top: 11px;
466
- width: 6px;
467
- height: 6px;
468
- border-radius: 50%;
469
- background: var(--primary);
470
- }
471
-
472
- .feature-list li strong {
473
- color: var(--text);
474
- font-weight: 600;
475
- }
476
-
477
- /* ═══════════════════════════════════════════════════
478
- ROOM DESCRIPTIONS
479
- ═══════════════════════════════════════════════════ */
480
- .room-name {
481
- font-family: var(--display);
482
- font-size: 0.9rem;
483
- font-weight: 400;
484
- color: var(--text);
485
- letter-spacing: 0.1em;
486
- text-transform: uppercase;
487
- margin-bottom: 6px;
488
- }
489
-
490
- /* ═══════════════════════════════════════════════════
491
- DARK BAND
492
- ═══════════════════════════════════════════════════ */
493
- .dark-band {
494
- background: var(--dark);
495
- margin: 0 -40px;
496
- padding: 24px 40px;
497
- color: var(--background);
498
- }
499
-
500
- .dark-band .section-label { color: var(--accent-bright); }
501
- .dark-band .section-label::before { background: var(--accent-bright); }
502
- .dark-band .section-heading { color: var(--background); }
503
- .dark-band .body-text { color: rgba(250, 250, 248, 0.75); }
504
- .dark-band .body-text strong { color: var(--background); }
505
- .dark-band .feature-list li {
506
- color: rgba(250, 250, 248, 0.7);
507
- border-bottom-color: rgba(250, 250, 248, 0.08);
508
- }
509
- .dark-band .feature-list li::before { background: var(--accent); }
510
- .dark-band .feature-list li strong { color: var(--background); }
511
-
512
- /* ═══════════════════════════════════════════════════
513
- ORNAMENTAL FRAME
514
- ═══════════════════════════════════════════════════ */
515
- .ornamental-frame {
516
- border: 1px solid var(--accent);
517
- padding: 28px;
518
- position: relative;
519
- margin: 16px 0;
520
- }
521
-
522
- .ornamental-frame::before {
523
- content: '';
524
- position: absolute;
525
- inset: 4px;
526
- border: 1px solid rgba(197, 165, 114, 0.3);
527
- pointer-events: none;
528
- }
529
-
530
- /* ═══════════════════════════════════════════════════
531
- EPC CHART
532
- ═══════════════════════════════════════════════════ */
533
- .epc-label {
534
- font-size: 0.55rem;
535
- font-weight: 600;
536
- letter-spacing: 0.1em;
537
- text-transform: uppercase;
538
- color: var(--text-tertiary);
539
- margin-bottom: 6px;
540
- }
541
-
542
- .epc-bar {
543
- display: flex;
544
- align-items: center;
545
- margin-bottom: 2px;
546
- height: 18px;
547
- font-size: 0.5rem;
548
- font-weight: 600;
549
- color: var(--white);
550
- position: relative;
551
- }
552
-
553
- .epc-bar span {
554
- padding: 0 6px;
555
- position: relative;
556
- z-index: 1;
557
- white-space: nowrap;
558
- line-height: 18px;
559
- }
560
-
561
- .epc-bar.a { background: #008054; width: 50%; }
562
- .epc-bar.b { background: #19b459; width: 57%; }
563
- .epc-bar.c { background: #8dce46; width: 64%; color: var(--text); }
564
- .epc-bar.d { background: #ffd500; width: 71%; color: var(--text); }
565
- .epc-bar.e { background: #fcaa65; width: 78%; color: var(--text); }
566
- .epc-bar.f { background: #ef8023; width: 85%; }
567
- .epc-bar.g { background: #e9153b; width: 92%; }
568
-
569
- .epc-bar.current {
570
- outline: 2px solid var(--text);
571
- outline-offset: -1px;
572
- z-index: 1;
573
- }
574
-
575
- /* ═══════════════════════════════════════════════════
576
- MATERIAL INFORMATION
577
- ═══════════════════════════════════════════════════ */
578
- .mi-section { margin-bottom: 18px; }
579
-
580
- .mi-part-label {
581
- font-family: var(--body);
582
- font-size: 0.52rem;
583
- font-weight: 700;
584
- letter-spacing: 0.2em;
585
- text-transform: uppercase;
586
- color: var(--primary);
587
- margin-bottom: 8px;
588
- padding-bottom: 4px;
589
- border-bottom: 1px solid var(--border-light);
590
- }
591
-
592
- .mi-grid {
593
- display: grid;
594
- grid-template-columns: 1fr 1fr;
595
- gap: 4px 20px;
596
- }
597
-
598
- .mi-row {
599
- display: flex;
600
- justify-content: space-between;
601
- align-items: baseline;
602
- padding: 4px 0;
603
- border-bottom: 1px solid var(--border-light);
604
- font-size: 0.62rem;
605
- }
606
-
607
- .mi-row:last-child { border-bottom: none; }
608
-
609
- .mi-field {
610
- color: var(--text-tertiary);
611
- font-weight: 500;
612
- flex-shrink: 0;
613
- }
614
-
615
- .mi-value {
616
- color: var(--text);
617
- font-weight: 400;
618
- text-align: right;
619
- margin-left: 8px;
620
- }
621
-
622
- .mi-note {
623
- font-size: 0.52rem;
624
- color: var(--text-tertiary);
625
- line-height: 1.5;
626
- margin-top: 6px;
627
- font-style: italic;
628
- }
629
-
630
- /* ═══════════════════════════════════════════════════
631
- BACK PAGE — Full-bleed glassmorphic
632
- ═══════════════════════════════════════════════════ */
633
- .backpage {
634
- width: 210mm;
635
- min-height: 297mm;
636
- margin: 20px auto 0;
637
- display: flex;
638
- flex-direction: column;
639
- align-items: center;
640
- justify-content: center;
641
- position: relative;
642
- overflow: hidden;
643
- background: #1a1c18;
644
- box-shadow: 0 2px 20px rgba(0,0,0,0.15);
645
- }
646
-
647
- .back-bg {
648
- position: absolute;
649
- inset: 0;
650
- }
651
-
652
- .back-bg img {
653
- width: 100%;
654
- height: 100%;
655
- object-fit: cover;
656
- opacity: 0.25;
657
- }
658
-
659
- .back-bg::before {
660
- content: '';
661
- position: absolute;
662
- inset: 0;
663
- background:
664
- linear-gradient(to bottom, rgba(26,28,24,0.6) 0%, rgba(26,28,24,0.4) 40%, rgba(26,28,24,0.6) 70%, rgba(26,28,24,0.9) 100%);
665
- }
666
-
667
- .back-bg::after {
668
- content: '';
669
- position: absolute;
670
- inset: 0;
671
- background:
672
- radial-gradient(ellipse 50% 50% at 50% 40%, rgba(197,165,114,0.04) 0%, transparent 60%);
673
- }
674
-
675
- .back-inner {
676
- position: relative;
677
- z-index: 1;
678
- min-height: 297mm;
679
- display: flex;
680
- flex-direction: column;
681
- align-items: center;
682
- justify-content: center;
683
- text-align: center;
684
- padding: 60px 40px;
685
- }
686
-
687
- .back-cta {
688
- font-family: var(--display);
689
- font-size: 2.2rem;
690
- font-weight: 400;
691
- line-height: 1.2;
692
- color: var(--background);
693
- margin-bottom: 28px;
694
- max-width: 460px;
695
- }
696
-
697
- .back-cta em {
698
- font-style: italic;
699
- color: var(--accent-bright);
700
- }
701
-
702
- .back-description {
703
- font-size: 0.85rem;
704
- font-weight: 300;
705
- color: rgba(250, 250, 248, 0.75);
706
- line-height: 1.7;
707
- max-width: 420px;
708
- margin-bottom: 40px;
709
- }
710
-
711
- .back-contact-label {
712
- font-size: 0.6rem;
713
- font-weight: 600;
714
- letter-spacing: 0.2em;
715
- text-transform: uppercase;
716
- color: rgba(250, 250, 248, 0.5);
717
- margin-bottom: 10px;
718
- }
719
-
720
- .back-contact {
721
- font-size: 0.78rem;
722
- color: rgba(250, 250, 248, 0.8);
723
- line-height: 1.8;
724
- }
725
-
726
- .back-disclaimer {
727
- position: absolute;
728
- bottom: 24px;
729
- left: 40px;
730
- right: 40px;
731
- z-index: 1;
732
- font-size: 0.58rem;
733
- color: rgba(250, 250, 248, 0.5);
734
- line-height: 1.65;
735
- text-align: center;
736
- }
737
-
738
- /* Print snapshot images — loaded but invisible on screen */
739
- .print-img {
740
- position: absolute;
741
- width: 1px;
742
- height: 1px;
743
- opacity: 0;
744
- pointer-events: none;
745
- overflow: hidden;
746
- }
747
-
748
- /* ═══════════════════════════════════════════════════
749
- PRINT STYLES — A4 Print Skill patterns
750
- ═══════════════════════════════════════════════════ */
751
- @page {
752
- size: A4 portrait;
753
- margin: 0;
754
- }
755
-
756
- @media print {
757
- html { font-size: 16px; }
758
- body { background: white; }
759
- .download-bar { display: none !important; }
760
-
761
- /* Every page becomes a full-page print snapshot */
762
- .cover, .page, .backpage {
763
- width: auto; margin: 0; box-shadow: none; min-height: 0;
764
- height: 100vh;
765
- page-break-after: always;
766
- position: relative;
767
- overflow: hidden;
768
- }
769
-
770
- .cover::after, .page::after { display: none; }
771
-
772
- /* Hide live content, show snapshot */
773
- .cover > *:not(.print-img),
774
- .page > *:not(.print-img),
775
- .backpage > *:not(.print-img) {
776
- display: none !important;
777
- }
778
-
779
- .print-img {
780
- position: absolute !important;
781
- inset: 0 !important;
782
- width: 100% !important;
783
- height: 100% !important;
784
- opacity: 1 !important;
785
- object-fit: cover !important;
786
- z-index: 9999 !important;
787
- }
788
- }
789
- </style>
790
- </head>
791
- <body>
792
-
793
- <!-- Download / Print Button -->
794
- <div class="download-bar">
795
- <button class="download-btn" onclick="window.print()">
796
- <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
797
- <path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/>
798
- <polyline points="7 10 12 15 17 10"/>
799
- <line x1="12" y1="15" x2="12" y2="3"/>
800
- </svg>
801
- Download PDF
802
- </button>
803
- </div>
804
-
805
-
806
- <!-- ════════════════════════════════════════════════════
807
- COVER
808
- ════════════════════════════════════════════════════ -->
809
- <div class="cover">
810
- <img class="print-img" src="cover-print.png" alt="">
811
-
812
- <!-- REPLACE: Cover hero image — main exterior or lifestyle shot -->
813
- <div class="cover-bg">
814
- <img src="images/FRONT-HERO.jpeg" alt="Property front hero image">
815
- </div>
816
-
817
- <div class="cover-inner">
818
- <!-- REPLACE: Location label — village, road, or area name -->
819
- <div class="cover-label">Location</div>
820
- <!-- REPLACE: Property name or address line -->
821
- <h1 class="cover-title">Property Name</h1>
822
-
823
- <!-- REPLACE: One-sentence property summary — key selling points and hook -->
824
- <p class="cover-subtitle">
825
- Replace with a compelling one-sentence summary of the property highlighting its key features, unique selling points, and lifestyle appeal.
826
- </p>
827
- <!-- REPLACE: Cover statistics — five key facts about the property -->
828
- <div class="cover-stats">
829
- <div class="cover-stat">
830
- <div class="stat-value">0</div>
831
- <div class="stat-label">Bedrooms<br>description</div>
832
- </div>
833
- <div class="cover-stat">
834
- <div class="stat-value">0</div>
835
- <div class="stat-label">Bathrooms<br>description</div>
836
- </div>
837
- <div class="cover-stat">
838
- <div class="stat-value">TBC</div>
839
- <div class="stat-label">Energy rating<br>description</div>
840
- </div>
841
- <div class="cover-stat">
842
- <div class="stat-value">TBC</div>
843
- <div class="stat-label">Notable stat<br>description</div>
844
- </div>
845
- <div class="cover-stat">
846
- <div class="stat-value">TBC</div>
847
- <div class="stat-label">Notable stat<br>description</div>
848
- </div>
849
- </div>
850
- </div>
851
- </div>
852
-
853
-
854
- <!-- ════════════════════════════════════════════════════
855
- PAGE 2 — PROPERTY OVERVIEW
856
- ════════════════════════════════════════════════════ -->
857
- <div class="page">
858
- <img class="print-img" src="page2-print.png" alt="">
859
- <div class="content">
860
- <!-- REPLACE: Section label for the property overview -->
861
- <div class="section-label">The Property</div>
862
- <!-- REPLACE: Section heading — aspirational two-line title -->
863
- <h2 class="section-heading">Section Heading,<br>Second Line</h2>
864
-
865
- <div class="split">
866
- <div>
867
- <!-- REPLACE: Property overview paragraph one — introduce the property, its character, and headline features -->
868
- <p class="body-text">
869
- Property description paragraph one. Introduce the property, its character, setting, and headline features. Mention key upgrades, energy credentials, or standout qualities that set it apart.
870
- </p>
871
- <!-- REPLACE: Property overview paragraph two — elaborate on condition, finishes, and recent work -->
872
- <p class="body-text">
873
- Property description paragraph two. Elaborate on the condition of the property, recent renovations, quality of finishes, flooring, and any bespoke details that contribute to the overall impression.
874
- </p>
875
- <!-- REPLACE: At-a-glance callout — bullet-style summary of the property's key facts -->
876
- <div class="callout">
877
- <p><strong>At a glance:</strong> A summary of the property's key facts — number of bedrooms, bathrooms, reception rooms, notable features, garden, parking, and any standout attributes.</p>
878
- </div>
879
- </div>
880
- <div>
881
- <!-- REPLACE: Hallway or entrance image -->
882
- <img src="images/HALLWAY.jpeg" alt="Entrance hallway" style="min-height:340px;">
883
- </div>
884
- </div>
885
-
886
- <div class="divider gold"></div>
887
-
888
- <!-- REPLACE: Two exterior images — front and rear -->
889
- <div class="img-grid-2">
890
- <img src="images/EXTERIOR-FRONT.jpeg" alt="Front exterior" style="height:380px;">
891
- <img src="images/EXTERIOR-REAR.jpeg" alt="Rear elevation" style="height:380px;">
892
- </div>
893
- </div>
894
- </div>
895
-
896
-
897
- <!-- ════════════════════════════════════════════════════
898
- PAGE 3 — KITCHEN & LIVING
899
- ════════════════════════════════════════════════════ -->
900
- <div class="page">
901
- <img class="print-img" src="page3-print.png" alt="">
902
- <div class="content">
903
- <!-- REPLACE: Kitchen hero banner image and overlay text -->
904
- <div class="img-banner">
905
- <img src="images/KITCHEN-HERO.jpeg" alt="Kitchen and dining area">
906
- <div class="banner-overlay">
907
- <div class="banner-text">
908
- <h2>Banner<br>Heading</h2>
909
- <p>Short description of the kitchen/dining/living space and how it connects to the outdoors.</p>
910
- </div>
911
- </div>
912
- </div>
913
- </div>
914
-
915
- <div class="content">
916
- <!-- REPLACE: Ground floor section label -->
917
- <div class="section-label">Ground Floor</div>
918
-
919
- <div class="split" style="margin-bottom: 20px;">
920
- <div>
921
- <!-- REPLACE: Kitchen / Dining room name and description -->
922
- <h3 class="room-name">Kitchen / Dining</h3>
923
- <p class="body-text">
924
- Kitchen and dining room description paragraph. Describe the layout, fitted appliances, worktops, island or breakfast bar, natural light, doors to garden, and any standout design features.
925
- </p>
926
- </div>
927
- <div>
928
- <!-- REPLACE: Kitchen detail image -->
929
- <img src="images/KITCHEN-DETAIL.jpeg" alt="Kitchen detail">
930
- </div>
931
- </div>
932
-
933
- <div class="divider"></div>
934
-
935
- <div class="split text-right">
936
- <div>
937
- <!-- REPLACE: Living room name and description -->
938
- <h3 class="room-name">Reception Room</h3>
939
- <p class="body-text">
940
- Living room or reception room description paragraph. Describe the proportions, outlook, flooring, lighting, and how the room is used — whether for relaxing, entertaining, or both.
941
- </p>
942
- </div>
943
- <div>
944
- <!-- REPLACE: Living room image -->
945
- <img src="images/LIVING-ROOM.jpeg" alt="Living room">
946
- </div>
947
- </div>
948
- </div>
949
- </div>
950
-
951
-
952
- <!-- ════════════════════════════════════════════════════
953
- PAGE 4 — STUDY, UTILITY & SUSTAINABILITY
954
- ════════════════════════════════════════════════════ -->
955
- <div class="page">
956
- <img class="print-img" src="page4-print.png" alt="">
957
- <div class="content">
958
- <!-- REPLACE: Three detail images — dining, kitchen, and living details -->
959
- <div class="img-grid-3">
960
- <img src="images/DETAIL-1.jpeg" alt="Interior detail one">
961
- <img src="images/DETAIL-2.jpeg" alt="Interior detail two">
962
- <img src="images/DETAIL-3.jpeg" alt="Interior detail three">
963
- </div>
964
-
965
- <div class="divider"></div>
966
-
967
- <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px;">
968
- <div>
969
- <!-- REPLACE: Additional ground-floor room name and description -->
970
- <h3 class="room-name">Study / Home Office</h3>
971
- <p class="body-text">
972
- Study or home office description paragraph. Describe the room's size, natural light, built-in furniture, and suitability for working from home.
973
- </p>
974
- </div>
975
- <div>
976
- <!-- REPLACE: Utility room or secondary ground-floor room name and description -->
977
- <h3 class="room-name">Utility Room</h3>
978
- <p class="body-text">
979
- Utility room description paragraph. Describe the fitted units, appliances, ventilation, and any additional systems housed in this room.
980
- </p>
981
- </div>
982
- </div>
983
-
984
- <!-- REPLACE: Two additional ground-floor room images -->
985
- <div class="img-grid-2">
986
- <img src="images/STUDY.jpeg" alt="Study">
987
- <img src="images/UTILITY.jpeg" alt="Utility room">
988
- </div>
989
- </div>
990
-
991
- <div class="content">
992
- <!-- REPLACE: Dark band section — sustainability, technology, or key selling point -->
993
- <div class="dark-band">
994
- <div class="section-label">Sustainability</div>
995
- <h2 class="section-heading small">Key Feature Heading</h2>
996
- <p class="body-text" style="margin-bottom: 10px;">
997
- Key feature description paragraph. Describe the property's standout technical or lifestyle feature — energy efficiency, smart home technology, or other notable system.
998
- </p>
999
- <ul class="feature-list">
1000
- <!-- REPLACE: Feature list items — six to eight key technical or lifestyle features -->
1001
- <li><strong>Notable feature</strong> — description of the feature and its benefit</li>
1002
- <li><strong>Notable feature</strong> — description of the feature and its benefit</li>
1003
- <li><strong>Notable feature</strong> — description of the feature and its benefit</li>
1004
- <li><strong>Notable feature</strong> — description of the feature and its benefit</li>
1005
- <li><strong>Notable feature</strong> — description of the feature and its benefit</li>
1006
- <li><strong>Notable feature</strong> — description of the feature and its benefit</li>
1007
- </ul>
1008
- </div>
1009
- </div>
1010
- </div>
1011
-
1012
-
1013
- <!-- ════════════════════════════════════════════════════
1014
- PAGE 5 — PRINCIPAL BEDROOM & ENSUITE
1015
- ════════════════════════════════════════════════════ -->
1016
- <div class="page">
1017
- <img class="print-img" src="page5-print.png" alt="">
1018
- <div class="content">
1019
- <!-- REPLACE: First floor section label and heading -->
1020
- <div class="section-label">First Floor</div>
1021
- <h2 class="section-heading">Rest &amp; Retreat</h2>
1022
-
1023
- <div class="split" style="margin-bottom: 20px;">
1024
- <div>
1025
- <!-- REPLACE: Principal bedroom image -->
1026
- <img src="images/BEDROOM-PRINCIPAL.jpeg" alt="Principal bedroom">
1027
- </div>
1028
- <div>
1029
- <div class="ornamental-frame" style="text-align:center;">
1030
- <!-- REPLACE: Principal bedroom name and description -->
1031
- <h3 class="room-name" style="text-align:center">Principal Bedroom</h3>
1032
- <p class="body-text" style="text-align:center; margin-top: 8px;">
1033
- Principal bedroom description paragraph. Describe the room's size, aspect, views, dressing area or wardrobes, and ensuite bathroom facilities.
1034
- </p>
1035
- </div>
1036
- </div>
1037
- </div>
1038
-
1039
- <!-- REPLACE: Three first-floor detail images — dressing room, ensuite, landing -->
1040
- <div class="img-grid-3">
1041
- <img src="images/DRESSING-ROOM.jpeg" alt="Dressing room">
1042
- <img src="images/ENSUITE.jpeg" alt="Ensuite bathroom">
1043
- <img src="images/LANDING.jpeg" alt="Landing">
1044
- </div>
1045
-
1046
- <div class="divider"></div>
1047
-
1048
- <div class="split">
1049
- <div>
1050
- <!-- REPLACE: Additional bedroom or flexible room name and description -->
1051
- <h3 class="room-name">Bedroom Four / Flexible Room</h3>
1052
- <p class="body-text">
1053
- Additional bedroom or flexible room description paragraph. Describe its current use, dimensions, natural light, and any notable features.
1054
- </p>
1055
- </div>
1056
- <div>
1057
- <!-- REPLACE: Additional bedroom image -->
1058
- <img src="images/BEDROOM-FLEXIBLE.jpeg" alt="Flexible room">
1059
- </div>
1060
- </div>
1061
- </div>
1062
- </div>
1063
-
1064
-
1065
- <!-- ════════════════════════════════════════════════════
1066
- PAGE 6 — BEDROOMS & BATHROOMS
1067
- ════════════════════════════════════════════════════ -->
1068
- <div class="page">
1069
- <img class="print-img" src="page6-print.png" alt="">
1070
- <div class="content">
1071
- <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px;">
1072
- <div>
1073
- <!-- REPLACE: Bedroom two name and description -->
1074
- <h3 class="room-name">Bedroom Two</h3>
1075
- <p class="body-text">Bedroom two description paragraph. Describe the room's size, outlook, fitted furniture, and current configuration.</p>
1076
- </div>
1077
- <div>
1078
- <!-- REPLACE: Bedroom three name and description -->
1079
- <h3 class="room-name">Bedroom Three</h3>
1080
- <p class="body-text">Bedroom three description paragraph. Describe the room's size, outlook, fitted furniture, and current configuration.</p>
1081
- </div>
1082
- </div>
1083
-
1084
- <!-- REPLACE: Two bedroom images -->
1085
- <div class="img-grid-2">
1086
- <img src="images/BEDROOM-TWO.jpeg" alt="Bedroom two">
1087
- <img src="images/BEDROOM-THREE.jpeg" alt="Bedroom three">
1088
- </div>
1089
-
1090
- <div class="divider"></div>
1091
-
1092
- <!-- REPLACE: Bathrooms section label -->
1093
- <div class="section-label">Bathrooms</div>
1094
-
1095
- <!-- REPLACE: Three bathroom images -->
1096
- <div class="img-grid-3">
1097
- <img src="images/BATHROOM-1.jpeg" alt="Family bathroom">
1098
- <img src="images/BATHROOM-2.jpeg" alt="Second bathroom">
1099
- <img src="images/CLOAKROOM.jpeg" alt="Ground floor cloakroom">
1100
- </div>
1101
-
1102
- <!-- REPLACE: Bathrooms summary paragraph -->
1103
- <p class="body-text" style="margin-top: 8px;">
1104
- Bathrooms description paragraph. Describe the number of bathrooms, their key fittings, tiling, underfloor heating, mirrors, and overall style.
1105
- </p>
1106
- </div>
1107
- </div>
1108
-
1109
-
1110
- <!-- ════════════════════════════════════════════════════
1111
- PAGE 7 — OUTSIDE / GARDEN
1112
- ════════════════════════════════════════════════════ -->
1113
- <div class="page">
1114
- <img class="print-img" src="page7-print.png" alt="">
1115
- <!-- ─── OUTSIDE ─── -->
1116
- <div class="content">
1117
- <!-- REPLACE: Full-width aerial or garden overview image -->
1118
- <div class="img-full">
1119
- <img src="images/AERIAL-PLAN.jpeg" alt="Aerial plan view of property" style="height:340px;">
1120
- </div>
1121
- </div>
1122
-
1123
- <div class="content">
1124
- <!-- REPLACE: Outside section label and heading -->
1125
- <div class="section-label">Outside</div>
1126
- <h2 class="section-heading">Garden &amp; Terrace</h2>
1127
-
1128
- <div class="split">
1129
- <div>
1130
- <!-- REPLACE: Garden description paragraph one — layout, planting, design -->
1131
- <p class="body-text">
1132
- Garden description paragraph one. Describe the overall layout, landscaping, lawn areas, planting, boundaries, and any design by a professional garden designer.
1133
- </p>
1134
- <!-- REPLACE: Garden description paragraph two — terraces, patios, parking -->
1135
- <p class="body-text">
1136
- Garden description paragraph two. Describe terraces, patios, seating areas, aspect, driveway, and parking arrangements.
1137
- </p>
1138
- </div>
1139
- <div>
1140
- <!-- REPLACE: Garden image -->
1141
- <img src="images/GARDEN-MAIN.jpeg" alt="Garden view">
1142
- </div>
1143
- </div>
1144
-
1145
- <!-- REPLACE: Three garden/outside detail images -->
1146
- <div class="img-grid-3" style="margin-top:16px;">
1147
- <img src="images/GARDEN-1.jpeg" alt="Garden detail one">
1148
- <img src="images/GARDEN-2.jpeg" alt="Garden detail two">
1149
- <img src="images/GARDEN-3.jpeg" alt="Garden detail three">
1150
- </div>
1151
- </div>
1152
- </div>
1153
-
1154
-
1155
- <!-- ════════════════════════════════════════════════════
1156
- PAGE 8 — FLOOR PLANS / KEY FEATURES / EPC
1157
- ════════════════════════════════════════════════════ -->
1158
- <div class="page">
1159
- <img class="print-img" src="page8-print.png" alt="">
1160
- <!-- ─── FLOOR PLAN ─── -->
1161
- <div class="content">
1162
- <div class="section-label">Floor Plans</div>
1163
- <h2 class="section-heading small">Specifications</h2>
1164
-
1165
- <!-- REPLACE: Floor plan image -->
1166
- <div style="text-align:center; margin: 12px 0;">
1167
- <img src="images/FLOORPLAN.jpeg" alt="Floor plans" style="width:85%; border-radius:3px;">
1168
- </div>
1169
-
1170
- <!-- REPLACE: Total floor area -->
1171
- <div style="font-family:var(--display); font-size:1.1rem; font-weight:400; color:var(--text); text-align:center; margin:12px 0;">
1172
- Total Floor Area: TBC sq.ft. (TBC sq.m.) approx.
1173
- </div>
1174
-
1175
- <div style="font-size:0.5rem; color:var(--text-tertiary); text-align:center; line-height:1.5; max-width:480px; margin:0 auto;">
1176
- Whilst every attempt has been made to ensure the accuracy of the floor plans contained here, all measurements (including the placement of windows and doors) are approximate and no responsibility is taken for any error, omission or mis-statement. The plans are for illustrative purposes only and should not be used as such by any prospective purchaser.
1177
- </div>
1178
-
1179
- <div class="divider gold" style="margin-top:20px;"></div>
1180
- </div>
1181
-
1182
-
1183
- <!-- ─── KEY FEATURES & EPC ─── -->
1184
- <div class="content">
1185
- <div class="section-label">Key Features</div>
1186
- <!-- REPLACE: Key features list — twelve headline selling points -->
1187
- <ul class="feature-list">
1188
- <li><strong>Number of bedrooms</strong> and configuration</li>
1189
- <li><strong>Number of bathrooms</strong> and additional WCs</li>
1190
- <li>Notable feature of the kitchen or dining space</li>
1191
- <li>Notable feature of the reception rooms</li>
1192
- <li>Notable feature of storage or dressing areas</li>
1193
- <li><strong>Energy or technology headline</strong></li>
1194
- <li>Notable feature of ventilation or insulation</li>
1195
- <li>Notable feature of recent renovation or condition</li>
1196
- <li>Notable feature of flooring or finishes</li>
1197
- <li>Notable feature of the garden or landscaping</li>
1198
- <li>Notable feature of parking or driveway</li>
1199
- <li>Notable feature of EPC or running costs</li>
1200
- </ul>
1201
-
1202
- <!-- EPC horizontal footer bar -->
1203
- <!-- REPLACE: EPC current band — move the "current" class to the correct band letter -->
1204
- <div style="margin-top: 24px;">
1205
- <div class="divider"></div>
1206
- <div style="display:flex; align-items:center; gap:20px; margin-top:12px;">
1207
- <div class="epc-label" style="margin-bottom:0; white-space:nowrap;">Energy Performance Certificate</div>
1208
- <div style="flex:1;">
1209
- <div style="display:flex; gap:3px;">
1210
- <div class="epc-bar a" style="flex:1;margin:0;"><span>A</span></div>
1211
- <div class="epc-bar b" style="flex:1;margin:0;"><span>B</span></div>
1212
- <div class="epc-bar c" style="flex:1;margin:0;"><span>C</span></div>
1213
- <div class="epc-bar d current" style="flex:1;margin:0;"><span>D</span></div>
1214
- <div class="epc-bar e" style="flex:1;margin:0;"><span>E</span></div>
1215
- <div class="epc-bar f" style="flex:1;margin:0;"><span>F</span></div>
1216
- <div class="epc-bar g" style="flex:1;margin:0;"><span>G</span></div>
1217
- </div>
1218
- </div>
1219
- </div>
1220
- </div>
1221
- </div>
1222
- </div>
1223
-
1224
-
1225
- <!-- ════════════════════════════════════════════════════
1226
- PAGE 9 — MATERIAL INFORMATION
1227
- ════════════════════════════════════════════════════ -->
1228
- <div class="page">
1229
- <img class="print-img" src="page9-print.png" alt="">
1230
- <!-- ─── MATERIAL INFORMATION ─── -->
1231
- <div class="content">
1232
- <div class="divider"></div>
1233
-
1234
- <div class="section-label">Material Information</div>
1235
- <h2 class="section-heading small">Property Information</h2>
1236
- <p class="body-text" style="margin-bottom: 16px;">
1237
- The following information is provided in accordance with the Consumer Protection from Unfair Trading Regulations 2008, the Digital Markets, Competition and Consumers Act 2024, and National Trading Standards guidance on material information in property listings.
1238
- </p>
1239
-
1240
- <div class="mi-section">
1241
- <div class="mi-part-label">Part A — Material to All Transactions</div>
1242
- <!-- REPLACE: Part A material information values — update each mi-value to match the property -->
1243
- <div class="mi-grid">
1244
- <div class="mi-row">
1245
- <span class="mi-field">Asking Price</span>
1246
- <span class="mi-value">TBC</span>
1247
- </div>
1248
- <div class="mi-row">
1249
- <span class="mi-field">Tenure</span>
1250
- <span class="mi-value">Freehold / Leasehold</span>
1251
- </div>
1252
- <div class="mi-row">
1253
- <span class="mi-field">Council Tax Band</span>
1254
- <span class="mi-value">TBC</span>
1255
- </div>
1256
- <div class="mi-row">
1257
- <span class="mi-field">Property Type</span>
1258
- <span class="mi-value">TBC</span>
1259
- </div>
1260
- <div class="mi-row">
1261
- <span class="mi-field">Bedrooms</span>
1262
- <span class="mi-value">TBC</span>
1263
- </div>
1264
- <div class="mi-row">
1265
- <span class="mi-field">Bathrooms</span>
1266
- <span class="mi-value">TBC</span>
1267
- </div>
1268
- <div class="mi-row">
1269
- <span class="mi-field">Reception Rooms</span>
1270
- <span class="mi-value">TBC</span>
1271
- </div>
1272
- <div class="mi-row">
1273
- <span class="mi-field">Total Floor Area</span>
1274
- <span class="mi-value">TBC sq.ft. / TBC sq.m.</span>
1275
- </div>
1276
- <div class="mi-row">
1277
- <span class="mi-field">Electricity Supply</span>
1278
- <span class="mi-value">TBC</span>
1279
- </div>
1280
- <div class="mi-row">
1281
- <span class="mi-field">Water Supply</span>
1282
- <span class="mi-value">TBC</span>
1283
- </div>
1284
- <div class="mi-row">
1285
- <span class="mi-field">Sewerage</span>
1286
- <span class="mi-value">TBC</span>
1287
- </div>
1288
- <div class="mi-row">
1289
- <span class="mi-field">Heating</span>
1290
- <span class="mi-value">TBC</span>
1291
- </div>
1292
- <div class="mi-row">
1293
- <span class="mi-field">Broadband</span>
1294
- <span class="mi-value">TBC</span>
1295
- </div>
1296
- <div class="mi-row">
1297
- <span class="mi-field">Mobile Signal</span>
1298
- <span class="mi-value">TBC</span>
1299
- </div>
1300
- <div class="mi-row">
1301
- <span class="mi-field">Parking</span>
1302
- <span class="mi-value">TBC</span>
1303
- </div>
1304
- <div class="mi-row">
1305
- <span class="mi-field">EPC Rating</span>
1306
- <span class="mi-value">TBC</span>
1307
- </div>
1308
- </div>
1309
- </div>
1310
-
1311
- <div class="divider"></div>
1312
-
1313
- <div class="mi-section">
1314
- <div class="mi-part-label">Part B — Material Where Applicable</div>
1315
- <!-- REPLACE: Part B material information values — update each mi-value to match the property -->
1316
- <div class="mi-grid">
1317
- <div class="mi-row">
1318
- <span class="mi-field">Building Safety</span>
1319
- <span class="mi-value">TBC</span>
1320
- </div>
1321
- <div class="mi-row">
1322
- <span class="mi-field">Restrictive Covenants</span>
1323
- <span class="mi-value">TBC</span>
1324
- </div>
1325
- <div class="mi-row">
1326
- <span class="mi-field">Rights of Way</span>
1327
- <span class="mi-value">TBC</span>
1328
- </div>
1329
- <div class="mi-row">
1330
- <span class="mi-field">Easements</span>
1331
- <span class="mi-value">TBC</span>
1332
- </div>
1333
- <div class="mi-row">
1334
- <span class="mi-field">Listed Building</span>
1335
- <span class="mi-value">TBC</span>
1336
- </div>
1337
- <div class="mi-row">
1338
- <span class="mi-field">Conservation Area</span>
1339
- <span class="mi-value">TBC</span>
1340
- </div>
1341
- <div class="mi-row">
1342
- <span class="mi-field">Tree Preservation Orders</span>
1343
- <span class="mi-value">TBC</span>
1344
- </div>
1345
- <div class="mi-row">
1346
- <span class="mi-field">Accessibility</span>
1347
- <span class="mi-value">TBC</span>
1348
- </div>
1349
- </div>
1350
- </div>
1351
-
1352
- <div class="divider"></div>
1353
-
1354
- <div class="mi-section">
1355
- <div class="mi-part-label">Part C — Additional Material Facts</div>
1356
- <!-- REPLACE: Part C material information values — update each mi-value to match the property -->
1357
- <div class="mi-grid">
1358
- <div class="mi-row">
1359
- <span class="mi-field">Flood Risk</span>
1360
- <span class="mi-value">TBC</span>
1361
- </div>
1362
- <div class="mi-row">
1363
- <span class="mi-field">Coastal Erosion</span>
1364
- <span class="mi-value">TBC</span>
1365
- </div>
1366
- <div class="mi-row">
1367
- <span class="mi-field">Planning Applications</span>
1368
- <span class="mi-value">TBC</span>
1369
- </div>
1370
- <div class="mi-row">
1371
- <span class="mi-field">Construction</span>
1372
- <span class="mi-value">TBC</span>
1373
- </div>
1374
- <div class="mi-row">
1375
- <span class="mi-field">Structural Issues</span>
1376
- <span class="mi-value">TBC</span>
1377
- </div>
1378
- <div class="mi-row">
1379
- <span class="mi-field">Subsidence</span>
1380
- <span class="mi-value">TBC</span>
1381
- </div>
1382
- <div class="mi-row">
1383
- <span class="mi-field">Damp</span>
1384
- <span class="mi-value">TBC</span>
1385
- </div>
1386
- <div class="mi-row">
1387
- <span class="mi-field">Asbestos</span>
1388
- <span class="mi-value">TBC</span>
1389
- </div>
1390
- <div class="mi-row">
1391
- <span class="mi-field">Japanese Knotweed</span>
1392
- <span class="mi-value">TBC</span>
1393
- </div>
1394
- <div class="mi-row">
1395
- <span class="mi-field">Mining Area</span>
1396
- <span class="mi-value">TBC</span>
1397
- </div>
1398
- </div>
1399
- </div>
1400
-
1401
- <div class="callout primary" style="margin-top: 16px;">
1402
- <p>
1403
- <strong>Regulatory note:</strong> This information is provided in line with National Trading Standards guidance and the requirements of the Digital Markets, Competition and Consumers Act 2024 (DMCCA). Material information is information that the average consumer needs to make an informed transactional decision. The agent has made reasonable enquiries to verify this information but prospective purchasers should satisfy themselves as to its accuracy through their own legal and survey processes.
1404
- </p>
1405
- </div>
1406
- </div>
1407
-
1408
-
1409
- </div><!-- .page 7 -->
1410
-
1411
-
1412
- <!-- ════════════════════════════════════════════════════
1413
- PAGE 10 — BACK PAGE
1414
- ════════════════════════════════════════════════════ -->
1415
- <div class="backpage">
1416
- <img class="print-img" src="backpage-print.png" alt="">
1417
-
1418
- <!-- REPLACE: Back page background image — aerial or exterior shot -->
1419
- <div class="back-bg">
1420
- <img src="images/AERIAL-REAR.jpeg" alt="Aerial view of property">
1421
- </div>
1422
-
1423
- <div class="back-inner">
1424
- <!-- REPLACE: Property logo — use property-specific logo or remove if not applicable -->
1425
- <img src="PROPERTY-LOGO-light.svg" alt="Property Name" style="width:160px; opacity:0.6; margin-bottom: 28px;">
1426
- <!-- REPLACE: Back page CTA heading -->
1427
- <div class="back-cta">Arrange a viewing of <em>Property Name</em></div>
1428
- <!-- REPLACE: Back page description — one paragraph encouraging a viewing -->
1429
- <p class="back-description">
1430
- Book a private viewing to experience this property for yourself. Replace with a short, inviting paragraph that highlights the key reasons to visit in person.
1431
- </p>
1432
- <div class="back-contact-label">Contact</div>
1433
- <div class="back-contact">
1434
- 01279 600567<br>
1435
- sales@muvin.co.uk
1436
- </div>
1437
- <div style="font-size: 0.65rem; color: rgba(250,250,248,0.55); margin-top: 16px; line-height: 1.5; letter-spacing: 0.03em;">
1438
- 25 Bell Street, Sawbridgeworth<br>
1439
- Hertfordshire CM21 9AR
1440
- </div>
1441
- <img src="muvin-light.png" alt="Muvin" style="width:90px; opacity:0.45; margin-top: 24px;">
1442
- </div>
1443
-
1444
- <div class="back-disclaimer">
1445
- These particulars, whilst believed to be accurate, are set out as a general outline only for guidance and do not constitute any part of an offer or contract. Intending purchasers should not rely on them as statements or representations of fact, but must satisfy themselves by inspection or otherwise as to their accuracy. No person in this firm's employment has the authority to make or give any representation or warranty in respect of the property. All measurements are approximate and for guidance only. Floor plans are not to scale and are for guidance only. Photographs may have been taken with wide-angle lenses — room dimensions should be checked with the floor plans. No services, fixtures, fittings or appliances, including central heating, have been tested by the agent and therefore no guarantee can be given that they are in working order.
1446
- </div>
1447
- </div>
1448
-
1449
-
1450
- </body>
1451
- </html>