-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2514 lines (2274 loc) · 112 KB
/
Copy pathindex.html
File metadata and controls
2514 lines (2274 loc) · 112 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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The Great India Ride: 100 days, 18,000 km</title>
<meta name="description" content="100 days, 18,000 km, one motorcycle. Trivandrum to Kanyakumari, up to Ladakh, across to the Arunachal border and home again, told in the order it happened.">
<meta name="color-scheme" content="dark">
<meta name="theme-color" content="#100e0c">
<link rel="canonical" href="https://thegreatindiaride.prasanthsasikumar.com/">
<meta name="author" content="Prasanth Sasikumar">
<!-- No figures in any of this. Distances and counts live in the ld+json block below,
which build-seo.cjs generates from template.json; a number typed here would be
the one copy nothing rebuilds. -->
<meta property="og:type" content="website">
<meta property="og:site_name" content="The Great India Ride">
<meta property="og:url" content="https://thegreatindiaride.prasanthsasikumar.com/">
<meta property="og:title" content="The Great India Ride: a pan-India motorcycle loop, published as a route template">
<meta property="og:description" content="100 days around India on one motorcycle, told in the order it happened, and the loop behind it published as reusable route data anyone can fork.">
<meta property="og:image" content="https://thegreatindiaride.prasanthsasikumar.com/assets/hero.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="700">
<meta property="og:image:alt" content="A motorcycle rider in a helmet on a Himalayan road">
<meta name="twitter:card" content="summary_large_image">
<link rel="alternate" type="text/markdown" href="/llms.txt" title="Plain-text summary of this site and its data">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="apple-touch-icon" href="assets/apple-touch-icon.png">
<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=Archivo:wdth,wght@62..125,300..800&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">
<!-- BEGIN ld+json: generated by build-seo.cjs, do not edit by hand -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://thegreatindiaride.prasanthsasikumar.com/#website",
"url": "https://thegreatindiaride.prasanthsasikumar.com/",
"name": "The Great India Ride",
"description": "100 days and 18,181.3 km around India on one motorcycle, told in the order it happened and published as a route template anyone can fork.",
"inLanguage": "en",
"publisher": {
"@id": "https://thegreatindiaride.prasanthsasikumar.com/#author"
}
},
{
"@type": "Person",
"@id": "https://thegreatindiaride.prasanthsasikumar.com/#author",
"name": "Prasanth Sasikumar",
"url": "https://prasanthsasikumar.com",
"sameAs": [
"https://www.instagram.com/thegreatindiaride/"
]
},
{
"@type": "TouristTrip",
"@id": "https://thegreatindiaride.prasanthsasikumar.com/#loop",
"name": "The Great India Ride: a pan-India motorcycle loop",
"description": "A 18,181.3 km motorcycle loop of India in undefined sectors, drawn as a reusable route template. 97 hops across 3 countries, ridden over 93 nights.",
"url": "https://thegreatindiaride.prasanthsasikumar.com/",
"author": {
"@id": "https://thegreatindiaride.prasanthsasikumar.com/#author"
},
"provider": {
"@id": "https://thegreatindiaride.prasanthsasikumar.com/#author"
},
"touristType": [
"Motorcycle touring",
"Adventure motorcycling",
"Long-distance riding"
],
"distance": {
"@type": "Distance",
"name": "18,181.3 km"
},
"subjectOf": {
"@id": "https://thegreatindiaride.prasanthsasikumar.com/booklet.html#routebook"
},
"itinerary": {
"@type": "ItemList",
"numberOfItems": 5,
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "TouristTrip",
"name": "S0: Southern opener",
"description": "Trivandrum to Bengaluru, 1,130.1 km and 22 riding hours.",
"distance": {
"@type": "Distance",
"name": "1,130.1 km"
},
"itinerary": [
{
"@type": "Place",
"name": "Trivandrum"
},
{
"@type": "Place",
"name": "Bengaluru"
}
]
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@type": "TouristTrip",
"name": "S1: West coast & Kutch",
"description": "Bengaluru to Delhi, 3,643 km and 74 riding hours.",
"distance": {
"@type": "Distance",
"name": "3,643 km"
},
"itinerary": [
{
"@type": "Place",
"name": "Bengaluru"
},
{
"@type": "Place",
"name": "Delhi"
}
]
}
},
{
"@type": "ListItem",
"position": 3,
"item": {
"@type": "TouristTrip",
"name": "S2: Himalayan out-and-back",
"description": "Delhi to Delhi, 2,742 km and 62 riding hours.",
"distance": {
"@type": "Distance",
"name": "2,742 km"
},
"itinerary": [
{
"@type": "Place",
"name": "Delhi"
},
{
"@type": "Place",
"name": "Delhi"
}
]
}
},
{
"@type": "ListItem",
"position": 4,
"item": {
"@type": "TouristTrip",
"name": "S3: The long east",
"description": "Delhi to Bengaluru, 9,955.2 km and 237 riding hours.",
"distance": {
"@type": "Distance",
"name": "9,955.2 km"
},
"itinerary": [
{
"@type": "Place",
"name": "Delhi"
},
{
"@type": "Place",
"name": "Bengaluru"
}
]
}
},
{
"@type": "ListItem",
"position": 5,
"item": {
"@type": "TouristTrip",
"name": "S4: Closing run",
"description": "Bengaluru to Trivandrum, 711 km and 16 riding hours.",
"distance": {
"@type": "Distance",
"name": "711 km"
},
"itinerary": [
{
"@type": "Place",
"name": "Bengaluru"
},
{
"@type": "Place",
"name": "Trivandrum"
}
]
}
}
]
}
},
{
"@type": "Dataset",
"@id": "https://thegreatindiaride.prasanthsasikumar.com/#dataset",
"name": "Pan-India motorcycle route template and ride record",
"description": "Machine-readable route data for a 18,181.3 km motorcycle loop of India, Nepal and Bhutan: 94 waypoints with coordinates, 97 hops with distance and riding hours, the sectors they divide into, the nights and spend of the ride that was actually run, and transcribed field research from the xBhp forum archive.",
"url": "https://thegreatindiaride.prasanthsasikumar.com/",
"license": "https://github.com/prasanthsasikumar/thegreatindiaride",
"creator": {
"@id": "https://thegreatindiaride.prasanthsasikumar.com/#author"
},
"isAccessibleForFree": true,
"keywords": [
"motorcycle touring India",
"pan-India ride",
"all India motorcycle trip",
"route template",
"Kanyakumari to Kashmir",
"K2K",
"Ladakh",
"Northeast India Inner Line Permit",
"GPS waypoints",
"itinerary"
],
"spatialCoverage": [
{
"@type": "Place",
"name": "India"
},
{
"@type": "Place",
"name": "Nepal"
},
{
"@type": "Place",
"name": "Bhutan"
}
],
"distribution": [
{
"@type": "DataDownload",
"name": "data/template.json",
"description": "The planned loop: five sectors, 97 hops, every waypoint with coordinates, distance and riding hours. This is the file to fork if you want to plan your own route.",
"contentUrl": "https://thegreatindiaride.prasanthsasikumar.com/data/template.json",
"encodingFormat": "application/json"
},
{
"@type": "DataDownload",
"name": "data/template-notes.json",
"description": "The hand-written guidance: riding seasons, permits, points of interest. Entries reading TO WRITE are unwritten and render as a visible gap.",
"contentUrl": "https://thegreatindiaride.prasanthsasikumar.com/data/template-notes.json",
"encodingFormat": "application/json"
},
{
"@type": "DataDownload",
"name": "data/route.json",
"description": "The ride as actually run: 93 nights, every place slept, and what was spent.",
"contentUrl": "https://thegreatindiaride.prasanthsasikumar.com/data/route.json",
"encodingFormat": "application/json"
},
{
"@type": "DataDownload",
"name": "data/research.json",
"description": "Field research into the xBhp \"The Tourer\" archive, India's oldest motorcycling forum, transcribed with its own caveats attached.",
"contentUrl": "https://thegreatindiaride.prasanthsasikumar.com/data/research.json",
"encodingFormat": "application/json"
},
{
"@type": "DataDownload",
"name": "data/k2k.json",
"description": "Kanyakumari to Kashmir as two lines, one cited and one measured, with the provenance of every coordinate.",
"contentUrl": "https://thegreatindiaride.prasanthsasikumar.com/data/k2k.json",
"encodingFormat": "application/json"
},
{
"@type": "DataDownload",
"name": "data/basemap.json",
"description": "Country outlines for the maps, from Natural Earth's India point-of-view file.",
"contentUrl": "https://thegreatindiaride.prasanthsasikumar.com/data/basemap.json",
"encodingFormat": "application/json"
},
{
"@type": "DataDownload",
"name": "data/manifest.json",
"description": "The media library: 222 clips from the ride, with capture time, region and caption.",
"contentUrl": "https://thegreatindiaride.prasanthsasikumar.com/data/manifest.json",
"encodingFormat": "application/json"
}
]
}
]
}
</script>
<!-- END ld+json -->
<style>
/* Hallmark · macrostructure: Atlas Split (desktop) / Long Document (mobile)
* tone: modernist-editorial · anchor hue: vermilion
* theme: studied-DNA · "Great India Ride redesign", design system `modernist`
* (project 1e0800a2-c2e8-4968-b522-14d1c29aad8e). Desktop A - Atlas Split
* above 900px, Journey below it, one DOM and one data layer.
* paper: #f3f2f2 · ink: #201e1d · accent: #ec3013 · type: Archivo (single family)
* pre-emit critique: P5 H5 E4 S5 R4 V5
* reskin: "Great India Ride" canvas (project dae94c43), Aug 2026. Archivo and a
* warm dark ground with an amber accent; the macrostructure above stands.
*/
/* ─── tokens ───────────────────────────────────────────────────────────────
From the "Great India Ride" canvas: a warm near-black ground, warm off-white
text, and one amber accent that carries eyebrows, figures and active marks.
The second accent is the canvas's vermilion option and belongs to the ridden
line on the map, so the K2K overlay and the active marks stay tellable from
it. No gradients anywhere. */
:root {
--color-bg: #100e0c;
/* Same ink as --color-bg at zero and at just over half alpha. Gradients need
the colour spelled out: interpolating to the `transparent` keyword runs
through transparent BLACK, which greys the middle of the ramp. Keep these
in step with --color-bg above. */
--bg-0: rgba(16, 14, 12, 0);
--bg-half: rgba(16, 14, 12, 0.62);
--color-surface: #14110e;
--color-raise: #1b1712;
--color-text: #ece5da;
--color-head: #f5efe6;
--color-muted: #c9c1b4;
--color-dim: #a49b8d;
--color-faint: #837b6f;
--color-line: rgba(236, 229, 218, 0.12);
--color-line-strong: rgba(236, 229, 218, 0.30);
--color-accent: #e8a13c; /* amber: figures, eyebrows, active marks */
--color-accent-2: #d4643a; /* vermilion: the ridden line */
--color-accent-soft: rgba(232, 161, 60, 0.16);
/* Text set ON the amber accent. Warm near-black, never white: #fff on #e8a13c
is a 1.9:1 read and fails everything. */
--color-ink: #17110a;
--font-heading: "Archivo", system-ui, sans-serif;
--font-body: "Archivo", system-ui, sans-serif;
--font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
--fw-bold: 700;
--fw-black: 800;
--pad-x: clamp(20px, 5.6vw, 72px);
--space-1: 4px; --space-2: 8px; --space-3: 12px;
--space-4: 16px; --space-6: 24px; --space-8: 32px;
--radius: 4px;
--radius-sm: 3px;
--rule: 1px solid var(--color-line);
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
background: var(--color-bg);
color: var(--color-text);
font-family: var(--font-body);
font-size: 15px;
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading); font-weight: var(--fw-bold);
line-height: 1.12; letter-spacing: -0.015em; margin: 0;
font-style: normal; overflow-wrap: anywhere; min-width: 0;
color: var(--color-head);
}
/* Display headings only. Region names and card titles are spans and stay in
sentence case; the canvas sets its section heads as wide, black, upper-case
Archivo, and every h1/h2 on this page is one of those. */
h1, h2 {
font-weight: var(--fw-black); font-stretch: 115%;
text-transform: uppercase; letter-spacing: -0.01em;
}
p { margin: 0; }
a { color: var(--color-text); text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }
button { font: inherit; color: inherit; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: var(--color-accent); color: var(--color-bg); }
.sr-only {
position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.kicker {
font-family: var(--font-heading); font-weight: var(--fw-bold);
font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
/* ─── hero, from design 4a ─────────────────────────────────────────────── */
.hero {
position: relative; isolation: isolate; background: var(--color-bg);
min-height: clamp(300px, 42vh, 480px);
display: flex; flex-direction: column;
}
.hero__img {
position: absolute; inset: 0; width: 100%; height: 100%;
object-fit: cover; object-position: 50% 42%; z-index: -2;
/* On a phone the crop is tight enough that most of the frame never shows, so
the eye drifts across it instead. Only the part that overflows the box
moves, which means this is a no-op on wide screens rather than a wobble. */
animation: heropan 44s ease-in-out infinite alternate;
}
@keyframes heropan {
from { object-position: 16% 42%; }
to { object-position: 84% 42%; }
}
/* Flat scrims rather than a wash: enough to hold white type over the photo.
The last layer also runs the photo out into the page ground, so it dissolves
at the bottom instead of stopping on a cut edge. */
.hero__veil {
position: absolute; inset: 0; z-index: -1;
background:
linear-gradient(to bottom, var(--bg-0) 46%, var(--bg-half) 82%, var(--color-bg) 100%),
rgba(10, 10, 12, 0.44);
/* No bottom scrim any more: it painted over the ramp and left the hero's last
row darker than the page beneath it, which is the very step this removes.
The ramp doubles as the ground the title needs. */
box-shadow: inset 0 120px 90px -60px rgba(10, 10, 12, 0.70);
}
/* The wordmark and section links, laid over the top of the photo. Mono, like
every other label on the page, and quiet: the title below is the loud thing. */
.hero__top {
position: absolute; top: 0; left: 0; right: 0; z-index: 1;
display: flex; align-items: center; justify-content: space-between;
gap: var(--space-4); padding: 20px var(--pad-x);
font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
}
.hero__mark { color: var(--color-head); }
.hero__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__nav a { color: var(--color-text); text-decoration: none; }
.hero__nav a:hover { color: var(--color-accent); }
.hero__body { margin-top: auto; padding: var(--space-8) var(--pad-x) clamp(28px, 5vh, 52px); }
/* Amber over the photo holds up at this size where the old 12px pink did not:
the eyebrow is a step larger and sits on the darkest band of the scrim. */
.hero__eyebrow {
font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.2em;
color: var(--color-accent); text-transform: uppercase; margin: 0;
}
.hero h1 {
font-size: clamp(44px, 7.6vw, 104px); line-height: 0.94; font-stretch: 118%;
letter-spacing: -0.015em; margin: var(--space-3) 0 0;
text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.hero__foot {
display: flex; align-items: flex-end; justify-content: space-between;
gap: var(--space-8); flex-wrap: wrap; margin-top: var(--space-4);
}
.hero__blurb { font-size: 16px; line-height: 1.6; max-width: 56ch; color: var(--color-text); margin: 0; }
.hero__cta {
flex: 0 0 auto; text-decoration: none; white-space: nowrap;
font-family: var(--font-heading); font-weight: var(--fw-bold);
font-size: 14px; letter-spacing: 0.06em; color: var(--color-ink);
padding: 14px 26px; border-radius: var(--radius-sm);
/* The border is invisible on the filled block and load-bearing on the ghost one
below. Both carry it so the two sit at exactly the same height. */
border: 1px solid var(--color-accent);
background: var(--color-accent);
}
.hero__cta:hover { color: var(--color-ink); background: #f2b95e; border-color: #f2b95e; }
/* The route book is a second destination, not a lesser one, so it takes the same
block rather than a shape invented for it. Outlined instead of filled, because
two solid blocks side by side read as one wide slab and neither leads. */
.hero__cta--ghost { color: var(--color-text); background: transparent; border-color: rgba(236, 229, 218, 0.45); }
.hero__cta--ghost:hover { color: var(--color-head); background: transparent; border-color: var(--color-text); }
.hero__cta + .hero__cta { margin-left: var(--space-3); }
/* The CTA and its escape hatch travel together, or space-between in .hero__foot
would throw the quiet link to the far edge of the hero. */
.hero__acts { flex: 0 0 auto; display: flex; align-items: baseline; flex-wrap: wrap; }
.hero__alt {
display: inline-block; margin-left: var(--space-4);
font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
color: rgba(236, 229, 218, 0.75); text-decoration: none;
}
.hero__alt:hover { color: var(--color-accent); }
/* stats band: full-bleed surface strip, figures centred, per the canvas. */
.band {
display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
border-top: var(--rule); border-bottom: var(--rule);
margin: 0; padding: 0 var(--pad-x); position: relative;
background: var(--color-surface);
}
.band > div { padding: var(--space-6) var(--space-4); text-align: center; }
.band > div + div { border-left: var(--rule); }
.band__n {
font-family: var(--font-heading); font-weight: var(--fw-black); font-stretch: 112%;
font-size: clamp(26px, 3vw, 38px); line-height: 1; color: var(--color-head);
letter-spacing: -0.01em; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.band__l {
font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
text-transform: uppercase; color: var(--color-muted); margin-top: var(--space-2);
}
@media (max-width: 700px) {
.hero__body { padding-top: clamp(36px, 9vh, 80px); }
/* The wordmark stays; the section links go. The sticky strip and the stacked
CTAs already cover the same three destinations on a phone, and four mono
labels do not fit a 360px row. */
.hero__nav { display: none; }
.hero__acts { width: 100%; }
.hero__cta { width: 100%; text-align: center; justify-content: center; }
/* Stacked, not side by side: two full-width pills cannot share a row, and a
left margin on the second one would push it off the right edge. */
.hero__cta + .hero__cta { margin: var(--space-3) 0 0; }
/* The overview is a desktop reading: it drives a map that on a phone sits below
the fold and a legs column that is an accordion, so the player narrates a page
the reader cannot see. The route book leads here instead. Hidden, not deleted,
because the same markup serves both widths. */
#overview-cta { display: none; }
/* With the first pill gone the second one is no longer stacked under anything,
and the margin above would open a gap at the top of the actions. */
#overview-cta + .hero__cta { margin-top: 0; }
.hero__alt { margin: var(--space-3) auto 0; }
.band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.band > div { padding: var(--space-4) var(--space-4); }
.band > div:nth-child(3), .band > div:nth-child(4) { border-top: var(--rule); }
.band > div:nth-child(odd) { border-left: 0; }
}
/* ─── shell ────────────────────────────────────────────────────────────── */
.shell { min-height: 100vh; }
/* ─── the left pane (desktop) / hero stack (mobile) ─────────────────────── */
/* ─── map ──────────────────────────────────────────────────────────────── */
/* The canvas frames the map in a hairline box; the chips and the card sit
inside it. overflow keeps the tile layer square with the rounded corners. */
.mapwrap {
position: relative; width: 100%;
border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden;
}
.atlas { display: block; width: 100%; height: auto; }
.atlas .neighbour { fill: none; stroke: rgba(236,229,218,0.20); stroke-width: 1; }
/* On the dark ground a faint hairline loses the northern boundary entirely, so
Jammu and Kashmir reads as background rather than as part of the country. The
outline is the whole point of this view, so it stays near-white and the fill
sits far enough above #100e0c to hold its own shape. */
.atlas .india { fill: #2b251d; stroke: rgba(245,239,230,0.92); stroke-width: 1.4; }
.atlas .route { fill: none; stroke: var(--color-accent-2); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
/* 74 stops, not 29 regions: dots are small so a dense stretch still reads as a line. */
.atlas .stop { fill: #14100a; stroke: rgba(236,229,218,0.75); stroke-width: 1.1; }
.atlas .stop[data-active="true"] { fill: var(--color-accent); stroke: var(--color-accent); stroke-width: 1.4; }
.atlas .stop[data-sel="true"] { fill: var(--color-accent); stroke: var(--color-head); stroke-width: 1.6; }
.atlas .hit { fill: transparent; cursor: pointer; }
.map__badge {
position: absolute; left: 10px; top: 10px;
background: rgba(16, 14, 12, 0.82); color: var(--color-text); border: var(--rule);
font-family: var(--font-mono);
font-size: 11px; letter-spacing: 0.08em; padding: 4px 8px; text-transform: uppercase;
}
.map__badge[hidden] { display: none; }
/* The stop card sits over the foot of the map rather than floating beside its dot:
the SVG scales with the pane, so anchoring HTML to a dot would mean re-measuring
on every resize for no real gain. */
.map__card {
position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
background: var(--color-bg); border: 1px solid var(--color-text);
padding: 8px 26px 8px 10px;
}
.map__card[hidden] { display: none; }
/* Flipped when the chosen stop is low on the map, so the card never covers the dot
it is describing. The whole Kerala/Tamil Nadu run sits in the bottom third. */
.map__card[data-pos="top"] { bottom: auto; top: 26px; }
.map__card-x {
position: absolute; right: 2px; top: 2px;
background: none; border: 0; cursor: pointer; line-height: 1;
font-size: 16px; padding: 2px 5px; color: var(--color-dim);
}
.map__card-place {
font-family: var(--font-heading); font-weight: var(--fw-bold);
font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
color: var(--color-dim);
}
.map__card-list { list-style: none; margin: 3px 0 0; padding: 0; max-height: 152px; overflow-y: auto; }
.map__card-list li { display: flex; align-items: baseline; gap: var(--space-2); padding: 3px 0; }
.map__card-list li + li { border-top: 1px solid var(--color-line); }
.map__card-stay { font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: 14px; line-height: 1.2; }
.map__card-meta { font-size: 11px; color: var(--color-dim); font-variant-numeric: tabular-nums; margin-top: 1px; }
.map__card-acts { display: flex; gap: var(--space-2); margin-top: 6px; }
.map__card-link {
font-family: var(--font-heading); font-weight: var(--fw-bold);
font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
padding: 3px 7px; cursor: pointer; text-decoration: none;
border: 1px solid var(--color-line); background: var(--color-bg); color: var(--color-text);
}
.map__card-link[hidden] { display: none; }
.map__card-link:hover { border-color: var(--color-text); }
.map__toggle {
position: absolute; right: 10px; top: 10px; z-index: 2;
background: rgba(16, 14, 12, 0.82); color: var(--color-text);
border: 1px solid var(--color-line-strong); border-radius: 2px; cursor: pointer;
font-family: var(--font-mono); font-weight: 500;
font-size: 10px; letter-spacing: 0.08em; padding: 4px 8px; text-transform: uppercase;
}
.map__toggle:hover { border-color: var(--color-text); }
.map__toggle[aria-pressed="true"] { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-ink); }
.map__toggle--alt { top: auto; bottom: 10px; }
.map__toggle--k2k { top: auto; bottom: 40px; }
.map__toggle[hidden] { display: none; }
/* The planned loop, drawn under everything. Dashed and dimmed: it is the route that
was not ridden, and it must never read as equal in weight to the one that was. */
.atlas .route--planned {
fill: none; stroke: var(--color-dim); stroke-width: 1.4;
stroke-dasharray: 5 4; opacity: 0.75;
stroke-linejoin: round; stroke-linecap: round;
}
/* ─── K2K ──────────────────────────────────────────────────────────────────
Two more lines on a 420px map that already carries a solid ridden route and a
dashed planned loop. Four at once is a tangle, so K2K is off until asked for and
the other two step back while it is on:
- the planned loop goes out entirely, because the K2K west-coast line traces
the same template hops. Drawing both would be one route drawn twice.
- the ridden route dims to a ghost. It stays visible, because "the loop
already contains most of a K2K" is the whole point of the overlay and you
cannot see that if one of the two lines is gone.
Both K2K lines share one hue so they read as one route, and differ in dash so
the two directions stay apart from each other. Neither is the ridden pink. */
.atlas .route--k2k { display: none; fill: none; stroke: var(--color-accent); stroke-width: 2.2; }
.atlas .route--k2k-n { stroke-linejoin: round; stroke-linecap: round; }
/* Dash-dot rather than an even dash, so it is not the planned loop's pattern in a
different colour, and so the printed book's key can show one glyph for both media. */
.atlas .route--k2k-s { stroke-dasharray: 9 4 1.5 4; stroke-linejoin: round; stroke-linecap: round; }
.atlas[data-k2k="on"] .route--k2k { display: inline; }
/* The step back is carried by weight, not by opacity. A deep dim over #100e0c is
not a dimmed line, it is an absent one, and an absent line cannot be compared
with anything. #d4643a at 0.7 still composites past WCAG 1.4.11's 3:1 for a
meaningful graphic, and the hierarchy comes from 1.2px against K2K's 2.2px
instead. */
.atlas[data-k2k="on"] .route { opacity: 0.7; stroke-width: 1.2; }
.atlas[data-k2k="on"] .route--planned { display: none !important; }
.atlas[data-k2k="on"] .stop { opacity: 0.7; }
/* And when something else is driving the map, K2K stands down the same way the
planned loop does. The overview moves the viewBox a chapter at a time and a
country-length overlay it does not control would ride along on top of every
frame. These rules come after the ones above so they win the tie. */
.atlas[data-busy="yes"] .route--k2k { display: none; }
.atlas[data-busy="yes"] .route { opacity: 1; stroke-width: 2; }
.atlas[data-busy="yes"] .stop { opacity: 1; }
/* K2K takes the planned loop off the map, so its toggle is turned off with it rather
than left reading "Hide planned" over a line that is not there. */
.map__toggle:disabled { opacity: 0.4; cursor: default; }
.map__toggle:disabled:hover { border-color: var(--color-line); }
.map__attr {
font-size: 9px; color: var(--color-dim); margin-top: 2px; text-align: right;
}
.map__attr[hidden] { display: none; }
/* "Planned route" is a two-word label for a distinction that needs a sentence,
and the sentence used to live in a long section below the clips that is now a
single link to the route book. It sits under the map instead, beside the
button it explains, which is where a reader who presses that button is
looking anyway. */
.map__note { font-size: 11px; line-height: 1.5; color: var(--color-dim); margin-top: 6px; }
/* Over tiles the fills would hide the map, so the countries become outlines only.
India keeps its full stroke: OSM draws the Line of Control, and the official
boundary sitting on top is the point. */
.atlas[data-mode="map"] .india { fill: none; stroke-width: 1.5; }
.atlas[data-mode="map"] .neighbour { stroke: color-mix(in srgb, #201e1d 45%, transparent); }
.atlas .tile-img { image-rendering: auto; }
/* ─── the overview ─────────────────────────────────────────────────────── */
.ov { border-top: var(--rule); padding-top: var(--space-3); margin-top: var(--space-3); }
.ov[hidden] { display: none; }
.ov__leg {
font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
color: var(--color-accent);
}
.ov__where {
font-family: var(--font-heading); font-weight: var(--fw-bold);
font-size: 18px; margin-top: 2px;
}
.ov__text { font-size: 13px; color: var(--color-muted); margin: 6px 0 0; min-height: 3em; }
.ov__caption { transition: opacity 260ms ease; }
.ov__caption[data-fade="true"] { opacity: 0; }
.ov__bar { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-3); }
.ov__btn {
background: none; border: 1px solid var(--color-line-strong); border-radius: var(--radius);
color: var(--color-text); font: inherit; font-size: 12px; padding: 5px 10px; cursor: pointer;
}
.ov__btn:hover { border-color: var(--color-text); }
.ov__btn--x { margin-left: auto; font-family: var(--font-mono); letter-spacing: 0.08em; }
.ov__dots { display: flex; gap: 6px; flex: 1; }
.ov__dot {
flex: 1; height: 3px; border: 0; padding: 0; cursor: pointer;
background: var(--color-line-strong);
position: relative;
}
/* The bar carries play/pause, these dots, sound and exit, and no next button, so on
touch a dot is the ONLY way to jump a chapter. A 3px-tall target fails WCAG 2.5.8,
which wants 24x24. The hit area is a transparent pseudo-element centred on the
rule and overflowing it, rather than padding on the button itself: the dot's own
box stays 3px, so nothing in the bar moves and the visible rule is unchanged. The
6px gap keeps neighbouring hit areas from overlapping. */
.ov__dot::after {
content: ''; position: absolute; left: 0; right: 0;
top: 50%; height: 24px; transform: translateY(-50%);
}
.ov__dot[data-on="true"] { background: var(--color-accent); }
/* No reduced-motion rule for .ov__caption: the blanket transition-duration override
at the foot of this sheet is !important and already outranks anything written here.
The player drops the fade's delay to 0 in JS to match. */
/* ─── legs + regions ───────────────────────────────────────────────────── */
.leg__head { background: var(--color-surface); color: var(--color-text); border: var(--rule); border-radius: var(--radius); }
.leg__meta { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); }
.leg__meta span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.09em; color: var(--color-dim); }
/* The leg's own tag reads amber, the way every eyebrow on the canvas does; the
clip count across from it stays quiet. */
.leg__meta span:first-child { color: var(--color-accent); }
.leg__head h2 { color: inherit; margin: 10px 0 6px; }
.leg__sub { font-size: 14px; color: var(--color-muted); }
.region { border-bottom: var(--rule); }
.region__bar {
display: flex; align-items: baseline; gap: var(--space-4);
width: 100%; background: transparent; border: 0; text-align: left;
font-family: var(--font-body); color: var(--color-text);
}
.region__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--color-accent); min-width: 24px; }
.region__name { font-family: var(--font-heading); font-weight: var(--fw-bold); flex: 1; }
.region__meta { font-size: 12px; letter-spacing: 0.04em; color: var(--color-dim); text-align: right; }
.region__sign { font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: 18px; color: var(--color-muted); width: 18px; text-align: center; }
.region__rep {
display: inline-block; margin: 0 0 12px; text-decoration: none;
font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
color: var(--color-faint); border-bottom: 1px solid var(--color-line);
padding-bottom: 2px;
}
.region__rep:hover { color: var(--color-text); border-bottom-color: var(--color-line-strong); }
.region[data-expanded="false"] .region__rep { display: none; }
.clips { display: grid; gap: 2px; }
.clip {
position: relative; padding: 0; border: 0; cursor: pointer;
background: var(--color-surface); display: block; width: 100%;
}
.clip:hover, .clip:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -2px; }
.clip video, .clip img {
width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; background: var(--color-surface);
}
.clip__date {
position: absolute; left: 6px; bottom: 6px;
background: rgba(16, 14, 12, 0.78); color: var(--color-text);
font-family: var(--font-mono);
font-size: 10px; letter-spacing: 0.06em; padding: 2px 6px;
max-width: calc(100% - 12px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
/* ─── close ────────────────────────────────────────────────────────────── */
.close { background: var(--color-surface); color: var(--color-text); border: var(--rule); border-radius: var(--radius); }
.close h2 { color: inherit; margin: 0 0 10px; }
.close p { font-size: 14px; margin: 0 0 18px; color: var(--color-muted); }
.close a {
display: inline-flex; background: transparent; color: var(--color-text);
border: 1px solid var(--color-line-strong); border-radius: var(--radius-sm);
font-family: var(--font-heading); font-weight: var(--fw-bold);
font-size: 13px; letter-spacing: 0.06em; text-decoration: none; padding: 12px 18px;
}
.close a:hover { background: var(--color-accent-soft); border-color: var(--color-accent); color: var(--color-text); }
/* ─── the route book ────────────────────────────────────────────────────────
This block used to dress the route book itself, printed into this page: a
five-figure glance band, five expandable sectors with a waypoint table each,
and a projected cost table. booklet.html carries every one of those in fuller
form, and printing them here made the page a third longer than the story it
exists to tell, so what is left is the door to the book. */
.tpl { border-top: var(--rule); padding-top: var(--space-8); margin-top: var(--space-8); }
.tpl[hidden] { display: none; }
.tpl__eyebrow {
font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
color: var(--color-accent); margin: 0 0 var(--space-3);
}
.tpl__h { margin: 0 0 var(--space-4); }
.tpl__lede { font-size: 16px; line-height: 1.6; max-width: 62ch; color: var(--color-muted); }
/* One line of figures, read out of template.json rather than typed here, so the
page can never advertise a loop the book does not contain. Hidden outright
when template.json is missing: the door still opens, it just stops quoting. */
.tpl__figs {
font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
text-transform: uppercase; color: var(--color-dim);
font-variant-numeric: tabular-nums; margin-top: var(--space-4);
}
.tpl__figs[hidden] { display: none; }
/* The canvas sets this section as a full amber band: warm ink on the accent,
the one place on the page where the accent carries words. Every colour inside
is scoped here, because the same tpl__ classes read light-on-dark anywhere
else. Negative margins run the band out over the column's padding. */
.tpl--cta {
background: var(--color-accent); color: var(--color-ink);
border-top: 0; margin: var(--space-8) -20px 0; padding: 48px 20px 52px;
}
.tpl--cta .tpl__eyebrow { color: rgba(23, 17, 10, 0.75); }
.tpl--cta .tpl__h { color: inherit; font-size: clamp(30px, 5vw, 46px); line-height: 1.02; }
.tpl--cta .tpl__lede { color: rgba(23, 17, 10, 0.85); }
.tpl--cta .tpl__figs { color: rgba(23, 17, 10, 0.7); }
.tpl__cols { display: grid; gap: 40px; }
.tpl__cta {
display: inline-flex; align-items: center; margin-top: var(--space-6);
font-family: var(--font-heading); font-weight: var(--fw-bold);
font-size: 15px; letter-spacing: 0.06em; text-decoration: none;
color: #f0e7d8; background: var(--color-ink);
border: 1px solid var(--color-ink); border-radius: var(--radius-sm);
padding: 16px 28px;
}
.tpl__cta:hover { background: #2a2115; border-color: #2a2115; color: #fff; }
/* The five sectors, one row each, quoted from template.json at boot for the
same reason the figures are. Hidden when the file is missing, like them. */
.tpl__list { display: grid; gap: 10px; align-content: center; }
.tpl__list[hidden] { display: none; }
.tpl__row {
display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
border: 1px solid rgba(23, 17, 10, 0.3); border-radius: var(--radius-sm);
padding: 12px 16px;
}
.tpl__row-l { display: flex; align-items: center; gap: 12px; min-width: 0; }
.tpl__row-id { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: rgba(23, 17, 10, 0.6); }
.tpl__row-name { font-weight: var(--fw-bold); font-size: 15px; }
.tpl__row-dist {
font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
color: rgba(23, 17, 10, 0.7); text-align: right;
}
.state-msg { font-size: 13px; color: var(--color-dim); }
.state-msg[hidden] { display: none; }
/* ─── lightbox ─────────────────────────────────────────────────────────── */
.lb {
position: fixed; inset: 0; z-index: 50; border: 0; padding: 0; margin: 0;
width: 100vw; max-width: 100vw; height: 100vh; max-height: 100vh;
background: rgba(16, 14, 12, 0.97); color: var(--color-text);
}
.lb[open] { display: flex; flex-direction: column; }
.lb::backdrop { background: rgba(16, 14, 12, 0.92); }
.lb__top { display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); padding: 14px 16px; }
.lb__title { font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: 12px; letter-spacing: 0.08em; }
.lb__right { display: flex; align-items: center; gap: 14px; }
.lb__count { font-size: 12px; color: var(--color-faint); font-variant-numeric: tabular-nums; }
.lb__btn {
background: transparent; border: 1px solid var(--color-line-strong); color: var(--color-text);
font-family: var(--font-heading); font-weight: var(--fw-bold); cursor: pointer;
}
.lb__btn:hover { border-color: var(--color-text); }
.lb__btn[disabled] { opacity: 0.35; cursor: not-allowed; }
.lb__btn--close { font-size: 14px; width: 32px; height: 32px; }
.lb__btn--nav { font-size: 15px; width: 44px; height: 40px; }
.lb__stage { flex: 1; min-height: 0; width: 100%; display: flex; background: #000; }
.lb__stage video, .lb__stage img { width: 100%; height: 100%; object-fit: contain; }
.lb__foot { padding: 12px 16px 16px; }
.lb__cap { font-size: 13px; line-height: 1.5; margin: 0 0 12px; max-width: 60ch; white-space: pre-line; }
.lb__cap[hidden] { display: none; }
.lb__nav { display: flex; align-items: center; gap: 10px; }
.lb__nav a { color: var(--color-text); font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: 12px; letter-spacing: 0.06em; text-decoration: none; }
.lb__spacer { flex: 1; }
/* ══ MOBILE · "Journey" ══════════════════════════════════════════════════ */
.shell { max-width: 600px; margin: 0 auto; padding: 0 20px 64px; }
/* A sticky child only sticks inside its parent's box. Leaving the strip inside
.pane meant it unstuck as soon as the pane ended, right where the legs begin,
which is the whole stretch it exists for. display:contents dissolves the pane
on mobile so its children sit directly in .shell, which spans the page. */
.pane { display: contents; }
.pane__foot { display: none; }
.strip {
position: sticky; top: 0; z-index: 20;
background: var(--color-bg);
border-top: var(--rule); border-bottom: var(--rule);
margin: 16px -20px 0; padding: 0 12px;
overflow-x: auto; scrollbar-width: none; display: flex; gap: 2px;
}
.strip::-webkit-scrollbar { display: none; }
.strip__btn {
flex: 0 0 auto; background: transparent; color: var(--color-text); border: 0; cursor: pointer;
font-family: var(--font-heading); font-weight: var(--fw-bold);
font-size: 11px; letter-spacing: 0.06em; padding: 12px 10px;
white-space: nowrap; text-transform: uppercase;
}
.strip__btn:hover { background: var(--color-accent-soft); color: var(--color-muted); }
.strip__btn[aria-current="true"] { background: var(--color-accent); color: var(--color-ink); }
.mapsection { margin-top: 16px; }
.mapsection__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); }
.mapsection__head h2 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 10px; }
.mapsection__hint {
font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
text-transform: uppercase; color: var(--color-accent);
}
.legs { display: block; }
.leg { margin-top: 48px; }
.leg__head { padding: 22px 20px 24px; }
.leg__head h2 { font-size: clamp(26px, 7vw, 34px); line-height: 1.05; }
.leg__sub { font-size: 13px; }
.region { scroll-margin-top: 46px; } /* clears the sticky state strip */
.region__bar { min-height: 56px; padding: 12px 0; cursor: pointer; gap: 14px; align-items: center; }
.region__bar:hover { background: var(--color-accent-soft); }
.region__name { font-size: 16px; }
.region__meta { font-size: 11px; }
.region { border-bottom: 1px solid var(--color-line); }
/* auto-fill rather than a fixed count: tiles stay a consistent size and the
column count follows the width, so more of the ride is on screen at once. */
.clips { grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); padding: 0 0 20px; }
.region[data-expanded="false"] .clips { display: none; }
.close { margin-top: 56px; padding: 30px 22px 34px; }
.close h2 { font-size: clamp(28px, 8vw, 40px); line-height: 1.02; }
.pagefoot {
margin-top: 32px; border-top: var(--rule); padding: 14px 0 24px;
font-size: 11px; color: var(--color-dim);
display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
}
.totop {
flex: 0 0 auto; background: none; border: var(--rule); border-radius: var(--radius-sm);
font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
color: var(--color-muted); padding: 8px 16px; cursor: pointer;
}
.totop:hover { color: var(--color-text); border-color: var(--color-line-strong); }
.lb__auto {
background: none; border: var(--rule); border-radius: var(--radius-sm); cursor: pointer;
font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
color: var(--color-dim); padding: 7px 14px; white-space: nowrap;
}
.lb__auto[aria-pressed="true"] { color: var(--color-bg); background: var(--color-text); border-color: var(--color-text); }
/* ══ DESKTOP · "Atlas Split" ═════════════════════════════════════════════ */
@media (min-width: 1080px) {
.shell {
max-width: none; margin: 0; padding: 0;
/* The map is width-limited, not height-limited: India's aspect fixes its
height at ~1.12x whatever the column gives it, so a fixed 460px column
left ~440px of dead pane under the map at 1600x1000. Letting the column
grow with the window is the only thing that makes the map taller. */
display: grid; grid-template-columns: clamp(460px, 36vw, 640px) minmax(0, 1fr);
}
.pane {
position: sticky; top: 0; height: 100vh;
display: flex; flex-direction: column;
border-right: var(--rule); padding: 24px 28px; overflow: hidden;
}
/* The pane is exactly 100vh and clips whatever will not fit. The map alone always
did; the overview adds a caption and a control bar under it, and those are the
last things that should fall off the bottom of a short window. Let this section
scroll instead. When it fits, which is every ordinary laptop, nothing changes. */
.mapsection { flex: 1; min-height: 0; margin-top: 0; border-top: 0; padding-top: 16px; overflow-y: auto; }
.mapsection__head { display: none; }
.pane__foot {
display: block; border-top: var(--rule); padding-top: 10px;
font-size: 11px; color: var(--color-dim);
}
.strip { display: none; } /* the map itself is the desktop index */
/* The photo keeps the left 70% and the figures get a solid column beside it,
rather than the photo running the full width with the figures laid over it.