/* assets/leaflet.css */
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(assets/images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(assets/images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(assets/images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

/* style.css */
:root{--bg:#191919;--surface:#222321;--line:#3b3d37;--gold:#d8ce51;--brand:#f5bc00;--text:#f4f4ee;--muted:#b1b4a9;color-scheme:dark;font-family:Arial,"Microsoft YaHei UI","PingFang TC",sans-serif;font-size:16px}*{box-sizing:border-box}body{margin:0;background:var(--bg);color:var(--text)}button,a{touch-action:manipulation}button{font:inherit;color:inherit;cursor:pointer;border:1px solid var(--line);background:transparent;padding:.65rem .85rem;border-radius:3px}button:hover{border-color:var(--gold);color:var(--gold)}button:focus-visible,a:focus-visible{outline:3px solid var(--gold);outline-offset:4px}a{color:var(--gold)}button:disabled{opacity:.4;cursor:default}header{height:84px;padding:0 30px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line)}.identity{display:flex;align-items:center;gap:22px}.divider{height:30px;width:1px;background:var(--line)}.identity strong{font-size:21px;letter-spacing:4px;font-weight:400}.identity small{display:block;color:var(--muted);font-size:10px;letter-spacing:1.6px;margin-top:6px}.header-right{display:flex;align-items:center;gap:26px;font-size:12px;letter-spacing:1px}.header-right button{font-size:14px;letter-spacing:0}main{display:grid;grid-template-columns:minmax(0,1fr) 410px;height:calc(100dvh - 180px);min-height:550px}.canvas{position:relative;overflow:hidden;background:#292e2c}#geoMap,#planMap,#photoView{position:absolute;inset:0;height:100%;width:100%;z-index:1}#planMap{background:#272926}#photoView{background:#20221f}#photoView>img{width:100%;height:100%;object-fit:contain}#geoMap .leaflet-tile-pane{filter:saturate(.58) brightness(.79)}.map-top{position:absolute;z-index:500;top:22px;left:24px;right:24px;display:flex;flex-wrap:wrap;gap:14px;justify-content:space-between;pointer-events:none}.location-label{font-size:13px;background:#191919dc;padding:12px 14px;color:#eee;letter-spacing:1px}.view-controls{display:flex;pointer-events:auto;background:#191919eb;padding:4px;box-shadow:0 3px 20px #0003;flex-wrap:wrap}.view-controls button{font-size:14px;border:0;padding:9px 12px}.view-controls button[aria-pressed=true]{background:var(--gold);color:var(--bg)}#mapHint{position:absolute;bottom:26px;left:24px;z-index:500;font-size:12px;background:#191919d9;padding:7px 10px;max-width:calc(100% - 90px);color:#ddd}.map-tools{position:absolute;z-index:500;right:22px;top:108px;display:grid;background:#191919ed}.map-tools button{width:42px;height:42px;padding:0;font-size:24px;border-radius:0}.map-tools button+button{border-top:0}.scene-caption{pointer-events:none;position:absolute;left:32px;bottom:75px;z-index:400;text-shadow:0 2px 16px #000}.scene-caption span{font-size:12px;color:var(--gold);letter-spacing:3px}.scene-caption h1{font-size:clamp(26px,3vw,46px);font-weight:400;letter-spacing:1px;margin:12px 0}.scene-caption p{font-size:16px;margin:0;color:#e1e2db}.canvas:after{content:"";position:absolute;inset:65% 0 0;z-index:350;pointer-events:none;background:linear-gradient(transparent,#0007)}.canvas.plan-scene:after,.canvas.photo-scene:after{display:none}.plan-scene .scene-caption,.photo-scene .scene-caption{display:none}aside{background:var(--bg);overflow-y:auto;scrollbar-width:thin;scrollbar-color:#5a5b50 transparent;border-left:1px solid var(--line)}#panelContent{padding:32px 28px 28px}.eyebrow{font-size:12px;letter-spacing:2px;color:var(--gold);margin:0 0 16px}.panel-title{font-size:30px;line-height:1.35;font-weight:400;margin:0 0 12px}.intro{font-size:16px;line-height:1.8;color:#c9cbc1;margin:0 0 24px}.metric-pair{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:24px 0}.metric{padding:16px 0;border-top:1px solid var(--line)}.metric strong{display:block;color:var(--gold);font-size:29px;font-weight:400;line-height:1.25}.metric span{display:block;font-size:14px;line-height:1.6;margin-top:6px}.metric small{display:block;font-size:12px;color:var(--muted);line-height:1.6;margin-top:4px}.panel-image{width:100%;border:0;padding:0;display:block;position:relative;overflow:hidden;margin:22px 0 6px}.panel-image img{width:100%;height:175px;object-fit:cover;display:block;transition:transform .3s}.panel-image:hover img{transform:scale(1.03)}.panel-image b{position:absolute;right:10px;bottom:10px;padding:6px 8px;background:#191919df;font-weight:400;font-size:12px}.caption,.source-line{font-size:12px;line-height:1.6;color:var(--muted)}.source-line{margin-top:22px;padding-top:14px;border-top:1px solid var(--line)}.subheading{font-size:16px;font-weight:400;color:var(--gold);margin:26px 0 12px}.item{padding:14px 0;border-bottom:1px solid var(--line);display:flex;justify-content:space-between;gap:16px;line-height:1.6}.item b{font-weight:400}.item small{display:block;color:var(--muted);font-size:13px}.item span{font-size:14px;text-align:right}.primary{width:100%;background:var(--gold);color:#191919;border:0;padding:15px 18px;text-align:left;margin-top:22px}.primary:hover{background:#e6dc65;color:#191919}.journey{height:96px;display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);background:#1d1e1c}.journey button{border:0;border-right:1px solid var(--line);border-radius:0;text-align:left;display:flex;gap:20px;align-items:center;padding:15px 28px;position:relative}.journey button>span{color:#787d70;font-size:24px;font-weight:400}.journey button div{font-size:16px}.journey small{display:block;font-size:11px;letter-spacing:1.5px;color:var(--muted);margin-top:7px}.journey .active:before{content:"";position:absolute;height:3px;top:0;left:0;right:0;background:var(--gold)}.journey .active>span,.journey .active div{color:var(--gold)}.pin{background:transparent;border:0}.pin-label{display:flex;align-items:center;gap:9px;background:#191919eb;color:white;padding:10px 13px;white-space:nowrap;border:1px solid #888c72;box-shadow:0 2px 18px #0005;font-family:Arial,"Microsoft YaHei UI",sans-serif;font-size:14px;line-height:1.3}.pin-label i{display:block;width:9px;height:9px;flex:none;background:var(--gold);border-radius:50%}.pin-label em{font-style:normal;font-size:10px;color:var(--muted);display:block;margin-top:3px}.pin-label.selected{border:1px solid var(--gold);box-shadow:0 0 0 4px #d8ce5126}.leaflet-control-attribution{font-size:10px!important;color:#ddd!important;background:#191919ca!important}.leaflet-control-attribution a{color:#ddd!important}.leaflet-control-scale-line{background:#191919ca;color:#eee;border-color:#eee;text-shadow:none}.leaflet-container{font:inherit}.leaflet-tooltip{background:#191919;border:1px solid var(--gold);color:white;font-size:14px}.leaflet-tooltip:before{display:none}[hidden]{display:none!important}dialog{border:1px solid var(--line);background:#20211e;color:var(--text);width:min(760px,94vw);max-height:88dvh;padding:28px}dialog::backdrop{background:#000b;backdrop-filter:blur(5px)}.dialog-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:20px}.dialog-head h2{font-size:23px;font-weight:400;margin:0}.dialog-head button{font-size:18px}.source-block{border-top:1px solid var(--line);padding:18px 0;font-size:14px;line-height:1.8}.source-block strong{color:var(--gold);display:block;font-weight:400;font-size:16px}.source-block p{margin:5px 0}.source-block small{color:var(--muted)}#imageDialog{width:min(1400px,96vw)}#fullImage{display:block;max-width:100%;max-height:70dvh;object-fit:contain;margin:auto}#imageCredit{font-size:13px;color:var(--muted);line-height:1.7}#mapError{position:absolute;z-index:600;left:25px;right:85px;top:160px;background:#191919ed;padding:18px;line-height:1.7}#mapError button{margin-left:14px}.skip{position:absolute;left:20px;top:-100px;z-index:9999;padding:16px;background:#191919}.skip:focus{top:5px}.pill{font-size:12px;border:1px solid #64674e;color:var(--gold);padding:4px 7px;white-space:nowrap}.tab-row{display:flex;gap:3px;margin:20px 0;border-bottom:1px solid var(--line)}.tab-row button{border:0;border-bottom:2px solid transparent;border-radius:0;font-size:14px;padding:10px 12px}.tab-row button.active{color:var(--gold);border-bottom-color:var(--gold)}.spec-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 18px}.spec-grid .item{display:block;font-size:15px}.building-list{display:flex;flex-wrap:wrap;gap:8px}.building-list button{min-width:39px;font-size:14px}.building-list button.active{background:var(--gold);color:var(--bg)}.building-pin{width:32px;height:32px;text-align:center;line-height:30px;border:1px solid var(--gold);color:var(--gold);background:#191919ec;border-radius:50%;font-size:15px;box-shadow:0 2px 8px #0006}.building-pin.active{background:var(--gold);color:#191919}.photo-thumbs{position:absolute;bottom:70px;left:24px;right:24px;display:flex;gap:10px;justify-content:center;z-index:10}.photo-thumbs button{background:#191919e8;padding:5px;width:110px;font-size:12px}.photo-thumbs img{display:block;width:100%;height:56px;object-fit:cover;margin-bottom:7px}.photo-thumbs .active{border-color:var(--gold);color:var(--gold)}.photo-title{position:absolute;top:95px;left:25px;background:#191919da;padding:12px 16px;line-height:1.6;font-size:14px}.timeline{padding:0;list-style:none;border-left:1px solid #64674e;margin:26px 0 26px 5px}.timeline li{padding:0 0 24px 22px;position:relative;font-size:15px;line-height:1.7}.timeline li:before{content:"";width:7px;height:7px;background:var(--gold);position:absolute;left:-4px;top:9px}.timeline strong{display:block;color:var(--gold);font-size:17px;font-weight:400}.timeline small{display:block;color:var(--muted);font-size:13px}.note{font-size:13px;line-height:1.8;color:var(--muted);border-left:2px solid #747852;padding-left:13px;margin:20px 0}.capital-bar{display:flex;height:12px;margin:16px 0}.capital-bar span:first-child{width:59%;background:var(--gold)}.capital-bar span:last-child{width:41%;background:#7b806b}.legend{display:flex;justify-content:space-between;font-size:13px;color:var(--muted)}.map-style{position:absolute;right:22px;bottom:29px;z-index:500;background:#191919e9;font-size:13px}.poi-links{display:flex;flex-direction:column;gap:8px}.poi-links button{text-align:left;font-size:14px;padding:12px}.poi-links button span{float:right;color:var(--muted)}@media(min-width:1600px){main{grid-template-columns:minmax(0,1fr) 470px}#panelContent{padding:38px}}@media(max-width:1100px){main{grid-template-columns:minmax(0,1fr) 350px}.map-top{left:16px;right:16px;top:16px}.location-label{display:none}.journey button{padding:15px 18px;gap:14px}.scene-caption{left:24px}.view-controls button{padding:8px;font-size:13px}}@media(max-width:760px){header{height:72px;padding:0 18px}.identity{gap:14px}.identity strong{font-size:17px;letter-spacing:2px}.identity small{font-size:8px}.header-right>span{display:none}.header-right button{padding:8px;font-size:12px}main{display:flex;flex-direction:column;height:auto;min-height:0;padding-bottom:78px}.canvas{height:52dvh;min-height:380px}aside{border-left:0;overflow:visible}#panelContent{padding:26px 22px}.journey{position:fixed;bottom:0;left:0;right:0;z-index:800;height:78px}.journey button{display:block;padding:10px 7px;text-align:center}.journey button>span{display:block;font-size:14px;margin-bottom:5px}.journey button div{font-size:12px;line-height:1.4}.journey small{display:none}.view-controls button{font-size:12px;padding:8px 7px}.scene-caption h1{font-size:26px}.scene-caption{bottom:62px}.scene-caption p{font-size:14px}.map-tools{right:15px;top:75px}.map-tools button{width:36px;height:36px;font-size:20px}#mapHint{left:14px;bottom:22px;font-size:10px;max-width:78%}.metric-pair{margin:20px 0}.panel-image img{height:220px}.photo-thumbs{bottom:58px;left:10px;right:10px;gap:6px}.photo-thumbs button{width:90px}.photo-title{top:65px;left:16px;font-size:12px}.map-style{bottom:50px;right:15px;font-size:12px}.panel-title{font-size:27px}dialog{padding:20px}.dialog-head h2{font-size:20px}}@media(prefers-reduced-motion:reduce){*,*:before,*:after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}
.scenario-buttons{display:flex;gap:6px;flex-wrap:wrap}.scenario-buttons button{font-size:13px;padding:10px 9px}.scenario-buttons button.active{background:var(--gold);color:#191919;border-color:var(--gold)}.scenario-result{padding:24px 0 18px;display:flex;flex-direction:column;gap:8px}.scenario-result strong{font-size:36px;color:var(--gold);font-weight:400}.scenario-result>span{font-size:15px}.scenario-result small{font-size:13px;color:var(--muted)}.photo-scene #mapHint{max-width:80%;font-size:11px}.map-style{bottom:52px}.leaflet-image-layer{max-width:none!important}#geoMap .leaflet-marker-icon{transition:opacity .2s}
@media(max-width:760px){.pin-label{font-size:12px;padding:9px 10px;width:max-content;max-width:145px}.pin-label em{display:none}.pin-label i{width:7px;height:7px}.scene-caption{display:none}.photo-scene .map-tools{display:none}}
/* Source-backed exploration */
.explore-section{border-top:1px solid #ffffff24;margin-top:28px;padding-top:18px}.explore-section h3{font-size:17px;color:#D8CE51}.explore-action{display:flex;width:100%;text-align:left;justify-content:space-between;align-items:center;gap:12px;padding:15px 2px;border:0;border-bottom:1px solid #ffffff24;background:none;color:#eee;font:inherit;font-size:14px;cursor:pointer}.explore-action:hover{color:#D8CE51}.explore-action span{color:#D8CE51}.fab-selector{display:flex;gap:8px;margin:22px 0}.fab-selector button{flex:1;padding:14px 3px;background:#262626;color:#ddd;border:1px solid #ffffff2b;font-size:16px;cursor:pointer}.fab-selector small{display:block;font-size:10px;margin-top:6px}.fab-selector .active{border-color:#D8CE51;color:#D8CE51}.district-list{display:grid;grid-template-columns:1fr 1fr;gap:0 16px}.district-list button{display:flex;gap:9px;align-items:flex-start;text-align:left;padding:14px 0;background:none;color:#eee;border:0;border-bottom:1px solid #ffffff20;cursor:pointer;font-size:12px}.district-list i{width:9px;height:9px;flex-shrink:0;margin-top:3px}.district-list small{display:block;margin-top:6px;color:#aaa;line-height:1.6}.district-list [aria-pressed=true]{color:#D8CE51}.explore-pin{display:inline-flex;white-space:nowrap;align-items:center;justify-content:center;min-width:64px;height:30px;padding:0 9px;border:1px solid #D8CE51;border-radius:3px;background:#191919ed;color:#eee;box-shadow:0 3px 10px #0005;font:600 11px Arial,sans-serif}.explore-pin.fab{background:#D8CE51;color:#191919;border-color:#191919}.scene-dock{position:absolute;top:114px;left:24px;z-index:420;display:flex;gap:6px;flex-wrap:wrap;max-width:80%}.scene-dock:empty{display:none}.scene-dock button{padding:9px 12px;background:#191919e8;border:1px solid #ffffff50;color:#eee;font-size:12px;cursor:pointer}.scene-dock button:hover{border-color:#D8CE51;color:#D8CE51}.tour-bar{position:absolute;right:24px;bottom:44px;z-index:425;display:flex;align-items:center;gap:12px;padding:6px 8px;background:#191919ef;border:1px solid #D8CE5160;border-radius:3px;color:#eee;font-size:12px}.tour-bar button{border:0;background:none;color:#D8CE51;cursor:pointer;padding:8px;font:inherit}.tour-bar button:disabled{opacity:.3;cursor:default}.tour-bar span{white-space:nowrap}.tour-bar #startTour span{margin-left:20px;color:#bbb}.plan-scene .scene-caption{pointer-events:none}.plan-scene .scene-dock{top:105px}.plan-scene .tour-bar{bottom:42px}@media(max-width:760px){.scene-dock,.plan-scene .scene-dock{left:12px;top:102px;max-width:90%}.scene-dock button{padding:6px 8px;font-size:10px}.tour-bar,.plan-scene .tour-bar{right:12px;bottom:33px;padding:2px 5px;gap:5px;font-size:10px}.district-list{gap:0 12px}.explore-pin{font-size:10px;min-width:55px;height:26px}}

.icm-logo{display:block;width:110px;height:auto;flex-shrink:0;object-fit:contain}@media(max-width:760px){.icm-logo{width:84px}}
/* Clear hierarchy, anchored markers, generous touch targets. */
.breadcrumbs{position:sticky;top:0;z-index:20;display:flex;align-items:center;flex-wrap:wrap;gap:4px 8px;padding:14px 22px;background:#191919f5;border-bottom:1px solid var(--line);font-size:13px;backdrop-filter:blur(12px)}.breadcrumbs button{font-size:13px;padding:6px 2px;border:0;min-height:34px}.breadcrumbs>span{color:var(--muted)}.breadcrumbs .current-crumb{color:var(--gold);line-height:1.6}.breadcrumbs .back-level{flex-basis:100%;text-align:left;color:var(--gold)}.marker-touch{background:none;border:0}.ux-marker{position:absolute;left:0;top:0;min-width:44px;height:44px;display:flex;align-items:center;gap:7px;white-space:nowrap;filter:drop-shadow(0 2px 5px #0008);cursor:pointer;font-size:14px}.marker-dot{width:14px;height:14px;flex:none;margin-left:15px;border:3px solid white;background:#333;border-radius:50%;box-shadow:0 0 0 2px #191919}.marker-name{padding:8px 10px;background:#191919f2;border:1px solid #fff9;border-radius:4px;color:white;line-height:1.25}.marker-check{background:var(--gold);color:#191919;padding:6px;margin-left:-8px;border-radius:0 4px 4px 0}.is-selected .marker-name{background:var(--gold);border-color:var(--gold);color:#191919;font-weight:700}.is-selected .marker-dot,.project-marker .marker-dot{background:var(--gold)}.ux-marker:hover .marker-name{border-color:var(--gold);box-shadow:0 0 0 2px #d8ce5144}.marker-touch:focus-visible{outline:3px solid var(--gold);outline-offset:3px}.region-marker .pin-label{min-height:52px;gap:10px;border-radius:5px}.region-marker .pin-label>span{margin-left:auto;color:var(--gold);font-size:24px}.region-marker .pin-label em{font-size:12px;display:block}.map-top{top:16px;left:18px;right:18px}.location-label{display:none}.view-controls{flex-wrap:nowrap;max-width:100%;overflow-x:auto}.view-controls button{min-height:44px;white-space:nowrap}.scene-dock,.plan-scene .scene-dock{top:80px;left:18px;right:74px;max-width:none;flex-wrap:nowrap;overflow-x:auto;scrollbar-width:thin}.scene-dock button{flex-shrink:0;min-height:42px;font-size:13px;border-radius:4px}.map-tools{top:142px;right:18px}.map-tools button{width:44px;height:44px}.tour-bar,.plan-scene .tour-bar{bottom:52px;left:18px;right:auto;max-width:calc(100% - 95px);min-height:44px;gap:8px;font-size:13px}.tour-bar button{min-height:36px}.map-style{right:18px;bottom:54px;min-height:44px;font-size:13px}.scene-caption{bottom:120px}.deep-scene .scene-caption{display:none}#mapHint{bottom:20px;left:18px;right:18px;max-width:none;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mobile-info{display:none}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fab-selector button{min-height:58px}.fab-selector small{font-size:12px}.district-list button{font-size:14px;min-height:64px}.district-list small{font-size:12px}.building-list button{min-width:44px;min-height:44px}.building-pin{width:38px;height:38px;line-height:36px;font-size:16px}.building-pin.active{box-shadow:0 0 0 4px #d8ce5144}.photo-thumbs{overflow-x:auto;justify-content:flex-start;padding:5px 0;bottom:110px}.photo-thumbs button{flex:0 0 112px;min-height:84px}.photo-title{top:80px}.photo-scene .tour-bar{bottom:52px}.tab-row button{min-height:44px}.explore-action{min-height:48px}.leaflet-control-attribution{max-width:100%;font-size:10px!important}.canvas.deep-scene:after{display:none}
@media(max-width:760px){header{padding:0 12px}.identity{gap:10px}.identity strong{font-size:15px}.identity small{font-size:8px;letter-spacing:.5px}.icm-logo{width:72px}.canvas{height:62dvh;min-height:470px}.map-top{top:12px;left:12px;right:12px}.view-controls{width:100%}.view-controls button{flex:1;padding:8px;font-size:12px;min-height:44px}.scene-dock,.plan-scene .scene-dock{top:72px;left:12px;right:12px}.scene-dock button{font-size:12px;min-height:40px}.map-tools{top:130px;right:12px}.map-style{right:12px;bottom:108px;min-height:40px;font-size:12px}.tour-bar,.plan-scene .tour-bar{left:12px;right:12px;bottom:59px;max-width:none;justify-content:space-between;min-height:42px;font-size:12px}.tour-bar #startTour{width:100%;display:flex;justify-content:space-between}.tour-bar #startTour span{margin-left:0}.mobile-info{display:block;position:absolute;z-index:510;bottom:13px;right:12px;background:var(--gold);color:#191919;border:0;min-height:40px;font-size:13px}#mapHint{left:12px;right:165px;bottom:18px;font-size:12px;padding:4px 0;background:#191919d9}.breadcrumbs{position:relative;padding:12px 20px;scroll-margin-top:10px}#panel{scroll-margin-top:8px}.pin-label{max-width:170px!important;font-size:13px}.region-marker .pin-label em{display:block;font-size:11px}.ux-marker{font-size:13px}.marker-name{padding:8px}.photo-thumbs{bottom:110px}.photo-thumbs button{flex-basis:105px}.photo-title{top:72px}.journey button{min-height:64px}.district-list{grid-template-columns:1fr 1fr}.header-right button{font-size:12px}.tour-bar span{white-space:normal}.panel-title{font-size:26px}}
.label-left{flex-direction:row-reverse;transform:translateX(calc(-100% + 44px))}.label-left .marker-dot{margin-left:0;margin-right:15px}.label-left .marker-check{margin:0 -8px 0 0;border-radius:4px 0 0 4px}
#masterMap{position:absolute;inset:0;height:100%;width:100%;z-index:1;background:#272926}
.cached-plan{position:absolute;inset:0;height:100%;width:100%;z-index:1;background:#272926}
#metroToggle{border-left:1px solid #62727c;color:#b9cbd6;margin-left:5px}#metroToggle[aria-pressed=true]{background:#354b5a;color:#f0f5f9}.metro-marker{background:none;border:0}.metro-number{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:#273d4ceb;border:1px solid #9eb4c1;color:#edf5f9;font-size:16px;border-radius:50%;box-shadow:0 2px 8px #0006}.metro-number.chosen{background:#c1d7e3;color:#15232d;border:2px solid white}.metro-label{position:absolute;left:45px;top:1px;padding:10px 12px;border-radius:4px;background:#253b4cf5;border:1px solid #a0b4c4;white-space:nowrap;color:#edf5f9;font-size:14px}.metro-primary{display:block;background:#d8ce51;color:#191919;padding:10px 14px;border:2px solid #fff5;border-radius:4px;font-size:14px;font-weight:700;white-space:nowrap;box-shadow:0 3px 18px #0007}.metro-primary b{display:block;font-size:12px;font-weight:400;margin-top:4px}.metro-list button{display:flex;width:100%;gap:12px;align-items:center;min-height:64px;text-align:left;border:0;border-bottom:1px solid var(--line);border-radius:0;padding:12px 0;font-size:14px}.metro-list button>span{border:1px solid #829aa8;color:#bdd3e0;border-radius:50%;min-width:28px;height:28px;text-align:center;line-height:26px}.metro-list small{display:block;font-size:12px;color:var(--muted);line-height:1.6;margin-top:5px}.metro-list b{margin-left:auto;color:#a3bbc8;font-weight:400}.metro-list [aria-pressed=true]{color:#c1d7e3}.metro-key{display:grid;gap:10px;margin:22px 0;font-size:12px;color:#bdc5c9}.metro-key i{display:inline-block;width:9px;height:9px;border-radius:50%;margin-right:7px;background:#94afc0}.metro-key .gold-key{background:var(--gold)}.optional-eyebrow{color:#aec8d7}@media(max-width:760px){.view-controls button{flex:0 0 auto}.metro-label{font-size:12px;max-width:180px;white-space:normal}.metro-primary{font-size:12px}}
.drive-panel{margin:20px 0 28px;padding:18px 0;border-top:1px solid #6d8798;border-bottom:1px solid #6d8798}.drive-panel h3{font-weight:400;font-size:18px;margin:0 0 18px;color:#c1d7e3}.drive-panel label{display:block;font-size:13px;margin:10px 0 7px;color:#becbd2}.drive-panel select{width:100%;min-height:44px;font:inherit;font-size:14px;background:#252c30;color:#f2f5f7;border:1px solid #647a88;border-radius:3px;padding:9px 10px}.drive-between{text-align:right}.drive-between button{font-size:12px;min-height:36px;margin-top:7px;border:0;color:#c1d7e3}.drive-result{display:flex;flex-wrap:wrap;gap:12px;align-items:baseline;margin:22px 0 12px;color:#d0e4ee}.drive-result strong{font-weight:400;font-size:30px}.drive-result small{font-size:14px}.drive-result>span{font-size:18px}.drive-actions{display:flex;flex-wrap:wrap;align-items:center;gap:14px;margin:16px 0;font-size:13px}.drive-actions button{min-height:44px;font-size:13px}.drive-panel details{font-size:12px;line-height:1.8;color:#b9c2c7}.drive-panel summary{cursor:pointer;min-height:36px}.drive-row{color:#bcd6e5!important;font-size:13px!important}.drive-panel select:focus-visible{outline:3px solid var(--gold);outline-offset:3px}
/* 2026-09-11 · metro labels always visible, Agoda-style drive table, tour hints */
.metro-marker{overflow:visible}.metro-label{display:block;font-size:12px;padding:7px 10px;line-height:1.3;max-width:none;white-space:nowrap}.metro-label.left{left:auto;right:45px}.metro-label.below{left:50%;top:44px;transform:translateX(-50%)}.metro-label.above{left:50%;top:auto;bottom:44px;transform:translateX(-50%)}.metro-label.chosen{background:#c1d7e3;color:#15232d;border-color:#fff}
.drive-head{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:12px}.drive-head h3{margin:0}.drive-head button{font-size:12px;min-height:34px;padding:6px 10px}
.drive-table{width:100%;border-collapse:collapse;font-size:12px;line-height:1.4}.drive-table th{text-align:left;font-weight:400;color:var(--muted);font-size:11px;letter-spacing:1px;padding:4px 6px 8px 0;border-bottom:1px solid #6d8798}.drive-table td{padding:7px 6px 7px 0;border-bottom:1px solid var(--line);vertical-align:top;white-space:nowrap}.drive-table td:first-child{white-space:normal;width:100%}.drive-table td:nth-child(2),.drive-table td:nth-child(3){text-align:right;color:#d0e4ee}.drive-table td:nth-child(3){font-size:14px}.drive-table td button{border:0;padding:0;font-size:13px;text-align:left;color:#f2f5f7;min-height:0}.drive-table td button:hover{color:var(--gold)}.drive-table td small{display:block;color:var(--muted);font-size:11px;margin-top:2px}.drive-table td a{text-decoration:none;font-size:14px;padding:0 4px}.drive-table tr.is-primary td button{color:var(--gold)}
.tour-bar span small{display:block;font-size:11px;color:var(--muted);margin-top:3px;white-space:normal}
@media(max-width:760px){.metro-label{font-size:11px;padding:5px 8px}.drive-table td:nth-child(3){font-size:13px}}
/* 2026-09-11 · single-page metro explorer */
.metro-dot{display:block;width:14px;height:14px;margin:3px;border-radius:50%;background:#94afc0;border:2px solid #191919;box-shadow:0 0 0 1px #94afc0,0 2px 8px #0006}.metro-dot.chosen{background:#d8ce51;box-shadow:0 0 0 1px #d8ce51,0 0 0 6px #d8ce5133}
.metro-marker .metro-label{top:-9px;left:28px}.metro-marker .metro-label.left{left:auto;right:28px}.metro-marker .metro-label.below{left:50%;top:26px;transform:translateX(-50%)}.metro-marker .metro-label.above{left:50%;top:auto;bottom:26px;transform:translateX(-50%)}.metro-label.chosen{background:#d8ce51;color:#191919;border-color:#d8ce51}
.metro-card{border:1px solid #6d8798;background:#20262a;padding:0 0 18px;margin:20px 0 6px}.metro-card figure{margin:0 0 14px}.metro-card img{display:block;width:100%;height:190px;object-fit:cover;background:#151a1d}.metro-card figcaption{font-size:11px;color:var(--muted);padding:6px 16px 0}.metro-card-body{padding:0 16px}.metro-card-body>.eyebrow{margin-bottom:6px;color:#c1d7e3}.metro-card h3{font-size:22px;font-weight:400;margin:0 0 4px}.metro-sub{color:var(--muted);font-size:13px;margin:0 0 12px}.metro-card-body>.intro{font-size:14px;margin-bottom:12px}.metro-card.empty{padding:16px;font-size:13px;color:var(--muted);line-height:1.7}.metro-card.empty p{margin:0}
.drive-line{margin-top:16px;padding-top:14px;border-top:1px solid #6d8798;color:#d0e4ee;font-size:13px}.drive-line strong{display:block;font-weight:400;font-size:26px;line-height:1.2}.drive-line strong small{font-size:13px}.drive-line span{display:block;margin-top:4px;color:var(--muted)}.drive-line a{display:inline-block;margin-top:6px;font-size:13px}.drive-line-actions{margin-top:12px}.drive-line-actions button{font-size:12px;min-height:34px;padding:6px 10px}
.drive-origin{font-size:12px;color:var(--muted);line-height:1.7;margin:22px 0 -8px;padding-top:14px;border-top:1px solid var(--line)}.drive-origin b{font-weight:400;color:#d0e4ee}
.metro-list button>i{display:block;width:10px;height:10px;border-radius:50%;background:#94afc0;flex:none;margin:0 6px}.metro-list [aria-pressed=true]>i{background:var(--gold)}
.scene-dock button[aria-pressed=true]{background:var(--gold);color:#191919;border-color:var(--gold)}.metro-primary{pointer-events:none}
/* 2026-09-11 · chapter 04 article mode */
main.article-mode{grid-template-columns:1fr}main.article-mode .canvas{display:none}main.article-mode aside{border-left:0}main.article-mode #panelContent{max-width:1180px;margin:0 auto;padding:40px 48px 60px;font-size:17px}
main.article-mode .panel-title{font-size:clamp(30px,3.2vw,44px);max-width:900px}main.article-mode .art-lead{font-size:18px;max-width:900px}
.article-nav{display:flex;flex-wrap:wrap;gap:8px;margin:26px 0 10px;position:sticky;top:0;z-index:5;background:var(--bg);padding:10px 0;border-bottom:1px solid var(--line)}.article-nav button{font-size:14px;padding:8px 14px}
.art-section{padding:38px 0 28px;border-top:1px solid var(--line);scroll-margin-top:70px}.art-section:first-of-type{border-top:0}
.art-title{font-size:clamp(24px,2.4vw,32px);font-weight:400;margin:0 0 20px;line-height:1.35}.art-sub{font-size:18px;font-weight:400;color:var(--gold);margin:22px 0 10px}
.art-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px 48px;align-items:start}
main.article-mode .intro{font-size:17px}main.article-mode .item{font-size:16px}main.article-mode .metric strong{font-size:34px}main.article-mode .note{font-size:14px}
.art-figure{margin:0 0 18px}.art-figure .panel-image{margin:0}.art-figure .panel-image img{height:260px}.art-figure figcaption{font-size:12px;color:var(--muted);margin-top:8px;line-height:1.6}
.art-timeline li{font-size:16px}.art-timeline strong{font-size:20px}
.tr-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:22px 0}.tr-card{margin:0;border:1px solid var(--line);background:var(--surface)}.tr-card img{display:block;width:100%;height:170px;object-fit:cover}.tr-card figcaption{padding:14px 16px 16px}.tr-card b{display:block;font-weight:400;font-size:17px;color:var(--gold)}.tr-card span{display:block;font-size:13px;color:var(--muted);margin-top:3px}.tr-card strong{display:block;font-weight:400;font-size:20px;margin-top:8px}.tr-card small{display:block;font-size:12px;color:var(--muted);margin-top:4px}
main.article-mode .scenario-buttons{display:flex;flex-wrap:wrap;gap:8px}main.article-mode .scenario-buttons button{font-size:14px}
main.article-mode .primary{max-width:480px}
@media(max-width:900px){.art-grid{grid-template-columns:1fr}.tr-grid{grid-template-columns:1fr}main.article-mode #panelContent{padding:28px 22px 90px;font-size:16px}.article-nav{position:static}}
.exit-table{width:100%;border-collapse:collapse;font-size:15px;margin:6px 0 10px}.exit-table th{text-align:left;font-weight:400;color:var(--muted);font-size:12px;letter-spacing:1px;padding:6px 10px 8px 0;border-bottom:1px solid var(--line)}.exit-table td{padding:10px 10px 10px 0;border-bottom:1px solid var(--line)}.exit-table td:last-child{font-size:18px}.exit-table tr.is-base td{color:var(--gold)}.exit-table tr.is-base td:first-child{font-weight:700}
main.article-mode .breadcrumbs{position:sticky;top:0;z-index:6;background:var(--bg)}main.article-mode .article-nav{top:63px}
.ext-link{display:inline-block;margin:6px 0 4px;font-size:14px}
.model-link{display:block;text-decoration:none;max-width:560px;margin:8px 0 6px}
/* 2026-09-12 · development stage (bare land to exit) */
#stageView{position:absolute;inset:0;z-index:2;background:#1a1b18;display:flex;flex-direction:column}
.stage-frame{position:relative;flex:1;min-height:0;cursor:pointer;overflow:hidden}
.stage-img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;transition:filter .6s,opacity .6s}
.stage-frame.is-plan .stage-img{object-fit:contain;padding:48px 40px 60px;box-sizing:border-box;filter:saturate(.6) brightness(.8)}
.stage-frame.is-outline .stage-img{filter:grayscale(1) brightness(.55)}
.stage-frame.is-dim .stage-img{filter:brightness(.45) saturate(.6)}
.stage-frame:not(.is-plan) .stage-img{filter:brightness(.82)}
.stage-frame:after{content:"";position:absolute;inset:60% 0 0;pointer-events:none;background:linear-gradient(transparent,#0009)}
.stage-plan{position:absolute;inset:48px 40px 60px;pointer-events:none}
.stage-b{position:absolute;transform:translate(-50%,-50%) scale(.4);opacity:0;transition:opacity .45s,transform .45s;text-align:center}
.stage-b span{display:block;width:40px;height:40px;line-height:38px;border-radius:50%;border:1px solid var(--gold);background:#191919ec;color:var(--gold);font-size:16px;margin:0 auto}
.stage-b.outline{opacity:1;transform:translate(-50%,-50%) scale(1)}.stage-b.outline span{background:transparent;border-style:dashed;color:#c9cbc1;border-color:#9a9c8c}
.stage-b.on{opacity:1;transform:translate(-50%,-50%) scale(1)}
.stage-b.build.on span{background:var(--gold);color:#191919;box-shadow:0 0 0 6px #d8ce5133}
.stage-b.lease.on span{background:#191919ec;color:var(--gold)}.stage-b em{display:block;margin-top:4px;font-style:normal;font-size:11px;padding:2px 7px;background:var(--gold);color:#191919;border-radius:2px;white-space:nowrap}
.stage-callouts{position:absolute;inset:0;pointer-events:none}
.callout{position:absolute;transform:translate(-50%,-50%) translateY(10px);opacity:0;transition:opacity .5s,transform .5s;background:#191919ee;border:1px solid var(--gold);padding:10px 14px;text-align:center;box-shadow:0 8px 30px #000a;white-space:nowrap}
.callout.on{opacity:1;transform:translate(-50%,-50%)}
.callout strong{display:block;font-weight:400;font-size:24px;color:var(--gold);line-height:1.1}.callout small{display:block;font-size:11px;color:#d6d8cf;margin-top:4px;letter-spacing:.3px}
.stage-bar{display:flex;align-items:center;gap:12px;padding:10px 24px;background:#191919;border-top:1px solid var(--line);font-size:12px;color:var(--muted)}
.stage-bar button{min-height:36px;font-size:13px}.stage-bar button:disabled{opacity:.35}
.stage-steps{display:flex;gap:6px;flex:1}.stage-steps button{flex:1;height:6px;min-height:0;padding:0;border:0;border-radius:3px;background:#4a4c44}.stage-steps button.done{background:#8d8748}.stage-steps button.on{background:var(--gold)}
.stage-hint{position:absolute;top:104px;left:24px;margin:0;font-size:12px;color:#ddd;background:#191919d9;padding:6px 10px;pointer-events:none}
.stage-scene .scene-caption{display:block;bottom:88px;z-index:3}.stage-scene .map-tools,.stage-scene #mapHint,.stage-scene .mobile-info{display:none}
.stack{display:flex;height:56px;margin:14px 0 8px;border:1px solid var(--line)}.stack>div{display:flex;flex-direction:column;justify-content:center;padding:0 12px;font-size:12px;line-height:1.3}.stack .debt{background:#7b806b;color:#191919}.stack .eq{background:var(--gold);color:#191919}.stack b{font-weight:700;font-size:14px}
.band{display:flex;gap:6px;margin:14px 0;flex-wrap:wrap}.band button{flex:1;font-size:12px;padding:8px 6px;white-space:nowrap}.band button.active{background:var(--gold);color:#191919;border-color:var(--gold)}
.slider-row{margin:14px 0 6px}.slider-row label{display:flex;justify-content:space-between;font-size:13px;color:var(--muted);margin-bottom:6px}.slider-row label b{font-weight:400;color:var(--gold);font-size:16px}.slider-row input{width:100%;accent-color:#d8ce51}
@media(max-width:760px){.callout strong{font-size:18px}.callout{padding:7px 10px}.stage-bar{padding:8px 12px}.stage-hint{top:72px;left:12px}.stage-frame.is-plan .stage-img,.stage-plan{padding:20px 16px 40px;inset:20px 16px 40px}.stage-scene .scene-caption{bottom:70px}}
/* HALO VISTA soft boundary + massing stage + metro as chapter-1 tab */
.leaflet-halo-pane{filter:blur(10px);opacity:.9}
.halo-area-label span{position:absolute;transform:translate(-50%,-140%);font-size:11px;letter-spacing:2px;color:var(--gold);text-shadow:0 1px 6px #000;white-space:nowrap}
.stage-frame.is-plan .stage-plan{inset:28px 30px 40px}
.massing{width:100%;height:100%;display:block}
.massing .ground{fill:#1f211c}.massing .rd{fill:#33352f}.massing .rd2{fill:#2c2e29}.massing .pk{fill:#272923}
.massing .road-lab{fill:#8a8d80;font-size:15px;letter-spacing:3px;font-family:Arial,sans-serif}
.massing .foot{fill:#2a2c25;stroke:#8a8d80;stroke-width:1.5;stroke-dasharray:8 6}
.massing .side,.massing .top,.massing .roof{opacity:0;transform-box:fill-box;transform-origin:bottom;transition:opacity .45s,transform .6s;transition-delay:calc(var(--i)*260ms + .2s)}
.massing .side{fill:#6b6a3a}.massing .top{fill:#a89c3e}.massing .roof{fill:#d8ce51}
.massing .lab{fill:#191919;font-size:26px;font-family:Arial,sans-serif;text-anchor:middle;opacity:0;transition:opacity .4s;transition-delay:calc(var(--i)*260ms + .6s)}
.massing .tag{fill:#191919;font-size:16px;font-family:Arial,sans-serif;text-anchor:middle;opacity:0;transition:opacity .4s;transition-delay:calc(var(--i)*260ms + .9s)}
.massing .bld.outline .lab{fill:#c9cbc1;opacity:1}
.massing .bld.build.on .side,.massing .bld.build.on .top,.massing .bld.build.on .roof,.massing .bld.lease.on .side,.massing .bld.lease.on .top,.massing .bld.lease.on .roof{opacity:1}
.massing .bld.build .roof,.massing .bld.lease .roof{transform:scaleY(.2)}.massing .bld.build.on .roof,.massing .bld.lease.on .roof{transform:scaleY(1)}
.massing .bld.build.on .lab,.massing .bld.lease.on .lab,.massing .bld.lease.on .tag{opacity:1}
.massing .bld.lease .roof{fill:#efe7a0}
/* flow bar */
.flow-bar{position:sticky;bottom:0;z-index:6;display:flex;align-items:center;gap:10px;padding:12px 22px;background:#191919f2;border-top:1px solid var(--line);backdrop-filter:blur(10px)}
.flow-bar button{font-size:13px;min-height:40px;padding:8px 12px;white-space:nowrap}
@media(max-width:1100px){.flow-pos{display:none}.flow-bar{padding:10px 16px;gap:8px}.flow-bar button{font-size:12px;padding:8px 10px}}
.flow-bar .flow-next{margin-left:auto;background:var(--gold);color:#191919;border-color:var(--gold)}
.flow-bar .flow-next:hover{background:#e6dc65;color:#191919}
.flow-pos{font-size:11px;letter-spacing:1.5px;color:var(--muted);white-space:nowrap}
main.article-mode .flow-bar{max-width:1180px;margin:0 auto}
@media(max-width:760px){.flow-bar{position:fixed;left:0;right:0;bottom:78px;padding:10px 12px}.flow-pos{display:none}}
/* one-screen panel: progressive compaction */
#panelContent{padding:24px 24px 20px}
.panel-title{font-size:26px;margin-bottom:10px}.intro{font-size:15px;line-height:1.7;margin-bottom:16px}.metric-pair{margin:16px 0;gap:14px}.metric{padding:12px 0}.metric strong{font-size:26px}.item{padding:10px 0;line-height:1.5;font-size:15px}.subheading{margin:18px 0 10px;font-size:15px}.panel-image img{height:140px}.panel-image{margin:14px 0 4px}.tab-row{margin:14px 0}.eyebrow{margin-bottom:10px}.note{font-size:13px;margin:12px 0;line-height:1.6}
#panel.fit1 #panelContent{padding:18px 22px 14px;font-size:14px}
#panel.fit1 .panel-title{font-size:22px;margin-bottom:6px}#panel.fit1 .panel-title br{display:none}#panel.fit1 .intro{font-size:13.5px;line-height:1.55;margin-bottom:10px}#panel.fit1 .metric-pair{margin:10px 0;gap:10px}#panel.fit1 .metric{padding:8px 0}#panel.fit1 .metric strong{font-size:22px}#panel.fit1 .metric span{font-size:12.5px;margin-top:3px}#panel.fit1 .item{padding:7px 0;line-height:1.4;font-size:13.5px}#panel.fit1 .item span{font-size:13px}#panel.fit1 .subheading{margin:12px 0 6px;font-size:13.5px}#panel.fit1 .panel-image img{height:110px}#panel.fit1 .tab-row{margin:10px 0}#panel.fit1 .tab-row button{padding:7px 9px;font-size:13px}#panel.fit1 .eyebrow{margin-bottom:6px;font-size:11px}#panel.fit1 .note{font-size:12px;margin:8px 0;line-height:1.5}#panel.fit1 .timeline li{padding-bottom:10px;font-size:13.5px}#panel.fit1 .timeline{margin:14px 0 14px 5px}
#panel.fit1 .metro-card figure img{height:120px}#panel.fit1 .metro-card h3{font-size:18px}#panel.fit1 .metro-list button{min-height:44px;padding:7px 0;font-size:13px}#panel.fit1 .metro-list small{font-size:11px;margin-top:2px}#panel.fit1 .drive-row{font-size:11.5px!important}#panel.fit1 .drive-line{margin-top:10px;padding-top:8px}#panel.fit1 .drive-line strong{font-size:20px}
#panel.fit1 .district-list button,#panel.fit1 .fab-selector button{padding:8px;font-size:13px}#panel.fit1 .building-list button{min-width:34px;padding:6px}#panel.fit1 .spec-grid .item{font-size:13px}#panel.fit1 .explore-action{padding:9px 12px;font-size:13px}#panel.fit1 .stack{height:46px}#panel.fit1 .band button{font-size:11px;padding:6px 4px}
#panel.fit2 .note,#panel.fit2 .caption,#panel.fit2 .panel-image,#panel.fit2 .metric small,#panel.fit2 .item small,#panel.fit2 .metro-list small,#panel.fit2 .metro-card figure,#panel.fit2 .metro-card .metro-sub,#panel.fit2 .drive-origin,#panel.fit2 .timeline small,#panel.fit2 .facts1 dd small,#panel.fit2 .project-detail .summary{display:none}
#panel.fit3 .intro:not(:first-of-type),#panel.fit3 .explore-section,#panel.fit3 .metro-card .intro,#panel.fit3 .subheading+.item+.item+.item+.item,#panel.fit3 .retail-selector,#panel.fit3 .metro-key{display:none}#panel.fit3 .panel-title{font-size:19px}#panel.fit3 .metric strong{font-size:20px}#panel.fit3 .metro-list button{min-height:38px;padding:5px 0}
/* compact metro panel */
.metro-card-body{padding:0 14px}.metro-card{padding:0 0 12px}.metro-card figure{margin:0 0 10px}.metro-card img{height:120px}.metro-card figcaption{padding:4px 14px 0;font-size:10.5px}
.metro-card-body .eyebrow{margin:0 0 4px;color:#c1d7e3;font-size:11px}.metro-card-body h3{font-size:19px;font-weight:400;margin:0 0 6px}.metro-card-body .intro{font-size:13px;line-height:1.55;margin:0 0 6px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.metro-card-body .drive-line{margin-top:8px;padding-top:8px;display:flex;align-items:center;gap:12px;flex-wrap:wrap}.metro-card-body .drive-line strong{font-size:18px}.metro-card-body .drive-line span{margin:0;font-size:12px}.metro-card-body .drive-line button{margin-left:auto;font-size:11px;min-height:30px;padding:4px 8px}
.drive-table td{padding:5px 6px 5px 0;font-size:12px}.drive-table td button{font-size:12.5px}.drive-table td small{font-size:10.5px;margin-top:0;display:inline;margin-left:6px}.drive-table td:nth-child(3){font-size:13px}.drive-table tr.is-on td button{color:var(--gold)}
#panel.fit1 .drive-table td{padding:4px 6px 4px 0}#panel.fit2 .drive-table td small{display:none}#panel.fit2 .metro-card-body .intro{display:none}
/* fit3 extra squeeze */
#panel.fit3 #panelContent{padding:12px 18px 8px}#panel.fit3 .tab-row{margin:6px 0}#panel.fit3 .tab-row button{padding:6px 8px;font-size:12px}#panel.fit3 .panel-title{margin-bottom:4px}#panel.fit3 .intro{margin-bottom:6px;font-size:13px}#panel.fit3 .subheading{margin:8px 0 4px;font-size:12.5px}#panel.fit3 .eyebrow{margin-bottom:4px}
#panel.fit3 .drive-table td{padding:2px 4px 2px 0;font-size:11px}#panel.fit3 .drive-table td button{font-size:11.5px}#panel.fit3 .drive-table td:nth-child(3){font-size:12px}#panel.fit3 .drive-table+.caption{display:none}
#panel.fit3 .metro-card figcaption,#panel.fit3 .metro-card-body .eyebrow,#panel.fit3 .metro-card .ext-link{display:none}#panel.fit3 .metro-card{padding-bottom:8px}#panel.fit3 .metro-card-body h3{font-size:16px;margin-bottom:2px}#panel.fit3 .metro-card-body .drive-line{margin-top:4px;padding-top:6px}#panel.fit3 .metro-card-body .drive-line strong{font-size:16px}
#panel.fit3 .flow-bar{padding:8px 16px}#panel.fit3 .flow-bar button{min-height:34px;padding:6px 10px}
#panel.fit3 .metric-pair{margin:8px 0}#panel.fit3 .metric{padding:6px 0}#panel.fit3 .item{padding:5px 0;font-size:13px}

/* portfolio.css */
.fund-strip{display:grid;grid-template-columns:repeat(3,1fr) 410px;border-bottom:1px solid var(--line);background:#1d1e1c}
@media(min-width:1600px){.fund-strip{grid-template-columns:repeat(3,1fr) 470px}}
@media(max-width:1100px){.fund-strip{grid-template-columns:repeat(3,1fr) 350px}}
.fund-strip>div{padding:16px 30px;border-right:1px solid var(--line)}
.fund-strip>div:last-child{border-right:0}
.fund-strip strong{display:block;color:var(--gold);font-size:28px;font-weight:400;line-height:1.2}
.fund-strip span{display:block;font-size:14px;margin-top:6px}
.fund-strip small{display:block;color:var(--muted);font-size:12px;margin-top:3px}
main.portfolio{height:calc(100dvh - 84px - 101px);min-height:560px}
#usMap{position:absolute;inset:0;height:100%;width:100%;z-index:1;background:#20221f}
#usMap.satellite .leaflet-tile-pane{filter:saturate(.58) brightness(.79)}
#usMap.dark .leaflet-tile-pane{filter:brightness(.92) contrast(1.05)}
#projectList{padding:26px 24px 30px}
.list-eyebrow{font-size:12px;letter-spacing:2px;color:var(--gold);margin:0 0 6px}
.list-title{font-size:24px;font-weight:400;margin:0 0 18px;line-height:1.4}
.project{border:1px solid var(--line);background:var(--surface);margin-bottom:16px;scroll-margin-top:16px;transition:border-color .2s}
.project.selected{border-color:var(--gold);box-shadow:0 0 0 3px #d8ce5120}
.project-head{width:100%;display:flex;gap:16px;align-items:center;text-align:left;border:0;border-radius:0;padding:16px 18px 12px}
.project-head:hover{color:inherit}
.project-head .num{color:var(--gold);font-size:22px;flex:none;width:34px}
.project-head strong{display:block;font-size:18px;font-weight:400;letter-spacing:1px}
.project-head small{display:block;color:var(--muted);font-size:12px;letter-spacing:1px;margin-top:4px}
.project-head .arrow{margin-left:auto;color:var(--muted);font-size:13px;white-space:nowrap;flex:none}
.project-body{padding:0 18px 18px}
.project-img{position:relative;margin:0 0 12px}
.project-img img{display:block;width:100%;height:150px;object-fit:cover}
.project-img b{position:absolute;right:8px;bottom:8px;padding:5px 7px;background:#191919df;font-weight:400;font-size:11px}
.project .summary{font-size:14px;line-height:1.75;color:#c9cbc1;margin:0 0 12px}
.facts{margin:0;display:grid;grid-template-columns:auto 1fr;gap:0}
.facts>div{display:contents}
.facts dt{color:var(--muted);font-size:12px;padding:8px 14px 8px 0;border-top:1px solid var(--line);white-space:nowrap;letter-spacing:1px}
.facts dd{margin:0;font-size:14px;line-height:1.6;padding:8px 0;border-top:1px solid var(--line)}
.facts dd.capital{color:var(--gold);font-size:17px}
.facts dd small{display:block;color:var(--muted);font-size:12px;margin-top:2px}
.market-line{font-size:12px;color:var(--muted);line-height:1.6;margin:12px 0 0;padding-top:10px;border-top:1px solid var(--line)}
.project .primary{display:block;text-decoration:none;font-size:15px;margin-top:16px}
.project .primary.soon{background:transparent;color:var(--muted);border:1px solid var(--line);cursor:default}
.project .primary.soon:hover{background:transparent;color:var(--muted)}
.list-note{font-size:12px;line-height:1.8;color:var(--muted);margin:22px 0 0;padding-top:14px;border-top:1px solid var(--line)}
.logo-link{display:block;line-height:0;flex-shrink:0}.logo-link:hover{opacity:.8}
.back-link{font-size:13px;letter-spacing:1px;text-decoration:none;padding:9px 12px;border:1px solid var(--line);border-radius:3px;color:var(--text)}
.back-link:hover{border-color:var(--gold);color:var(--gold)}
@media(max-width:1100px){.fund-strip>div{padding:14px 18px}.fund-strip strong{font-size:22px}}
@media(max-width:760px){.fund-strip{grid-template-columns:1fr 1fr}.fund-strip>div{padding:12px 16px;border-bottom:1px solid var(--line)}.fund-strip>div:nth-child(2n){border-right:0}.fund-strip strong{font-size:20px}main.portfolio{display:flex;flex-direction:column;height:auto;min-height:0;padding-bottom:0}main.portfolio .canvas{height:52dvh;min-height:360px}#projectList{padding:22px 16px 30px}.project-head{padding:14px}.project-body{padding:0 14px 14px}.header-right .back-link{padding:7px 9px;font-size:12px}}


/* editorial map labels */
#usMap .us-pin{background:transparent;border:0;width:0!important;height:0!important;overflow:visible}
.pin-anchor{position:relative;width:0;height:0}
.us-dot{position:absolute;left:-5px;top:-5px;width:10px;height:10px;border-radius:50%;background:var(--gold);box-shadow:0 0 0 3px #191919cc,0 0 0 4px #d8ce5166,0 0 16px #d8ce5199;transition:box-shadow .2s}
.us-pin.selected .us-dot,.us-pin:hover .us-dot{box-shadow:0 0 0 3px #191919cc,0 0 0 5px #d8ce51,0 0 24px #d8ce51cc}
.leader{position:absolute;overflow:visible;pointer-events:none}.leader line{stroke:var(--gold);stroke-opacity:.6;stroke-width:1}
.pin-inner{position:absolute;transform:translateY(-100%);padding:0 2px 7px;border-bottom:1px solid #d8ce51b3;white-space:nowrap;color:#f4f4ee;text-shadow:0 1px 2px #000,0 0 10px #000,0 0 18px #000c;line-height:1.25;cursor:pointer;transition:color .15s}
.pin-inner.to-left{transform:translate(-100%,-100%);text-align:right}
.pin-inner .us-num{display:inline-block;font-size:14px;letter-spacing:1.6px;color:var(--gold);margin-right:6px}
.pin-inner.to-left .us-num{margin:0 6px 0 0}
.pin-inner b{font-weight:400;font-size:14px;letter-spacing:1.6px}
.pin-inner em{display:block;font-style:normal;font-size:11.5px;color:#c9cbc1;letter-spacing:.4px;margin-top:3px}
.us-pin.selected .pin-inner b,.us-pin:hover .pin-inner b{color:var(--gold)}
.us-pin.selected .pin-inner{border-bottom-color:var(--gold)}
#usMap.compact .pin-inner b{font-size:13px}#usMap.compact .pin-inner em{font-size:11px}
#usMap.dark .leaflet-tile-pane{filter:brightness(.85) contrast(1.05) saturate(.6)}
.leaflet-sunbelt-pane{filter:blur(18px);pointer-events:none}

/* map-side detail arrow */
.us-go,.us-soon{display:none;position:absolute;top:100%;margin-top:7px;right:0;left:auto}
.us-soon{font-size:11px;letter-spacing:1.6px;color:var(--muted);white-space:nowrap;text-shadow:0 1px 2px #000}
.pin-inner.to-left .us-go,.pin-inner.to-left .us-soon{right:0;left:auto}
.us-go{display:none;align-items:center;gap:6px;padding:0;background:none;border:0;box-shadow:none;color:var(--gold)!important;text-decoration:none;font-size:11px;letter-spacing:1.6px;line-height:1;white-space:nowrap;text-shadow:0 1px 2px #000}.us-go:visited,.us-go:focus,.us-go:active{color:var(--gold)!important;outline:none}.us-go i{font-style:normal;font-size:12px;transition:transform .15s}
.us-go:hover{text-decoration:underline;text-underline-offset:4px;transform:none;box-shadow:none}.us-go:hover i{transform:translateX(3px)}
.us-soon{font-size:10px;letter-spacing:1px;color:var(--muted);border:1px solid #5c5f57;padding:2px 6px;border-radius:2px}
.us-pin.selected .us-go,.us-pin:hover .us-go{display:inline-flex}.us-pin.selected .us-soon,.us-pin:hover .us-soon{display:inline-block}

/* single-project detail panel (fits one screen) */
#projectList{padding:18px 22px 20px;display:flex;flex-direction:column;height:100%;box-sizing:border-box}
.list-eyebrow{font-size:11px;letter-spacing:2px;color:var(--gold);margin:0 0 10px}
.proj-switch{display:flex;gap:6px;flex-wrap:wrap;margin:0 0 12px}
.proj-chip{font-size:11px;letter-spacing:.5px;padding:6px 9px;border-color:var(--line);color:#c9cbc1;display:flex;gap:6px;align-items:center}
.proj-chip span{color:var(--gold);font-size:10px;letter-spacing:1px}.proj-chip.on{border-color:var(--gold);color:#fff;background:#25261f}
.project-detail{border:1px solid var(--gold);background:var(--surface);flex:1;min-height:0;display:flex;flex-direction:column;overflow:hidden}
.pd-head{display:flex;align-items:center;gap:12px;padding:12px 16px;border-bottom:1px solid var(--line)}
.pd-head .num{color:var(--gold);font-size:20px;flex:none}.pd-head strong{display:block;font-size:17px;font-weight:400;letter-spacing:1px}.pd-head small{display:block;color:var(--muted);font-size:12px;margin-top:2px}
.pd-go{margin-left:auto;font-size:11px;letter-spacing:1.6px;color:var(--gold);text-decoration:none;white-space:nowrap}.pd-go:hover{text-decoration:underline;text-underline-offset:4px}
.pd-soon{margin-left:auto;font-size:11px;letter-spacing:1px;color:var(--muted);white-space:nowrap}
.project-detail .project-img{margin:0;flex:none}.project-detail .project-img img{height:clamp(110px,18vh,170px)}
.project-detail .summary{font-size:13px;line-height:1.6;margin:10px 16px 6px;color:#c9cbc1}
.facts2{margin:0 16px;display:grid;grid-template-columns:1fr 1fr;gap:0 16px}
.facts2 .fact{display:flex;flex-direction:column;padding:6px 0;border-top:1px solid var(--line)}
.facts2 dt{color:var(--muted);font-size:10px;letter-spacing:1px}.facts2 dd{margin:2px 0 0;font-size:12.5px;line-height:1.45}.facts2 dd b{font-weight:400;color:var(--gold);font-size:15px}.facts2 dd small{display:block;color:var(--muted);font-size:10.5px;margin-top:1px}
.project-detail .market-line{margin:6px 16px 12px;padding-top:8px;font-size:11px}
@media(max-height:820px){.project-detail .summary{display:none}.facts2 dd small{display:none}}
@media(max-width:760px){#projectList{height:auto}.project-detail{overflow:visible}}

/* single column facts, one screen */
.facts1{margin:0 16px 10px;display:block}
.facts1 .fact{display:grid;grid-template-columns:92px 1fr;gap:10px;align-items:baseline;padding:7px 0;border-top:1px solid var(--line)}
.facts1 dt{color:var(--muted);font-size:11px;letter-spacing:1px}
.facts1 dd{margin:0;font-size:13px;line-height:1.5}.facts1 dd b{font-weight:400;color:var(--gold);font-size:16px}.facts1 dd small{display:inline;color:var(--muted);font-size:11px;margin-left:6px}
.project-detail .project-img img{height:clamp(110px,16vh,160px)}
.project-detail .summary{margin:10px 16px 8px}
@media(max-height:820px){.project-detail .summary{display:none}.facts1 dd small{display:none}.facts1 .fact{padding:5px 0}}
.pin-inner b[role=button]:focus-visible{outline:2px solid var(--gold);outline-offset:5px}
.project-detail .pd-head{height:auto;min-height:78px;justify-content:flex-start;text-align:left;gap:16px}

/* Fund is the default editorial state; selection belongs to the map. */
.fund-overview{display:flex;flex-direction:column;min-height:0;height:100%;padding:8px 2px;color:var(--text)}
.fund-eyebrow{color:var(--gold);font-size:10px;letter-spacing:2px;margin:0 0 12px}
.fund-overview h2{font-size:clamp(21px,2vw,29px);font-weight:400;line-height:1.45;margin:0 0 10px}
.fund-intro{font-size:13px;line-height:1.7;color:#bfc1b7;margin:0 0 14px}
.fund-thesis{display:flex;gap:14px;padding:12px 0;border-top:1px solid var(--line)}
.fund-thesis>span{font-size:12px;color:var(--gold);padding-top:3px}
.fund-thesis h3{font-size:14px;font-weight:400;margin:0 0 4px}.fund-thesis p{font-size:12px;line-height:1.65;color:var(--muted);margin:0}
.fund-terms{margin:auto 0 10px;padding-top:8px}.fund-terms>div{display:flex;justify-content:space-between;gap:12px;font-size:12px;padding:7px 0;border-top:1px solid var(--line)}.fund-terms dt{color:var(--muted)}.fund-terms dd{margin:0}
.fund-summary-link{color:var(--gold);font-size:12px;text-align:right;text-decoration:none;padding:8px 0}
@media(min-width:761px) and (max-height:820px){.fund-overview{padding:0}.fund-overview h2{font-size:23px}.fund-intro{font-size:12px;margin-bottom:8px}.fund-thesis{padding:8px 0}.fund-thesis p{font-size:11px}.fund-terms>div{padding:5px 0}.fund-eyebrow{margin-bottom:8px}}

@media(min-width:761px){main.portfolio{height:calc(100dvh - var(--portfolio-top,196px));min-height:0}}

.fund-links{display:flex;justify-content:space-between;gap:16px}

/* Lighter top: slimmer fund strip, compact industry chips, base-map toggle in the same row. */
.fund-strip>div{padding:12px 30px}.fund-strip strong{font-size:24px}.fund-strip span{font-size:13px;margin-top:4px}
body.industry-exploration .industry-nav{right:auto;padding:4px 6px 4px 14px;gap:12px;background:#1d1e1ce6;border-color:#adb08a2b;box-shadow:none}
body.industry-exploration .industry-nav>div{flex:none;gap:2px}
body.industry-exploration .industry-nav button{flex:none;min-height:32px;padding:5px 14px;font-size:13px;border-bottom:0;border-radius:2px}
body.industry-exploration .industry-nav button[aria-pressed=true]{background:var(--gold);color:#191919}
body.industry-exploration .map-top{top:16px;left:auto;right:24px;justify-content:flex-end}body.industry-exploration .map-top .location-label{display:none}
body.industry-exploration .view-controls button{min-height:32px;padding:5px 10px}
@media(max-width:760px){body.industry-exploration .industry-nav{left:12px;right:12px;padding:4px;overflow-x:auto}body.industry-exploration .industry-eyebrow{display:none}body.industry-exploration .map-top{top:58px;right:12px}.fund-strip>div{padding:10px 16px}}

/* Before the first choice, pins breathe to show they can be picked. */
body:not(.has-picked) .us-dot{animation:usPulse 2.4s ease-out infinite}@keyframes usPulse{0%{box-shadow:0 0 0 0 #d8ce5188}70%,100%{box-shadow:0 0 0 16px #d8ce5100}}@media(prefers-reduced-motion:reduce){body:not(.has-picked) .us-dot{animation:none}}

/* Same gold next-step button as the project pages. */
.enter-project{flex:none;align-self:flex-end;margin:auto 16px 14px;display:block;text-align:right;text-decoration:none;background:var(--gold);color:#191919;padding:9px 20px;border-radius:2px;line-height:1.3}.enter-project small{display:block;font-size:11px;letter-spacing:1px;color:#3d3a12}.enter-project b{font-weight:400;font-size:17px}.enter-project:hover{filter:brightness(1.08);color:#191919}
#projects.fit2 .enter-project,#projects.fit1 .enter-project{margin-top:8px;padding:7px 16px}
.project-detail.fitA .project-img img{height:clamp(80px,11vh,110px)}.project-detail.fitA .enter-project{margin-bottom:10px;padding:7px 16px}.project-detail.fitB .summary{display:none}.project-detail.fitB .fact.opt2{display:none}.project-detail.fitC .fact.opt{display:none}

/* First step on the overview */
.start-block{margin-top:auto;padding-top:14px;border-top:1px solid var(--line);display:flex;flex-direction:column;gap:8px}.start-block .enter-project.start{align-self:stretch;margin:0;text-align:left;padding:12px 18px}.start-block .enter-project.start b{font-size:19px}.start-block p{margin:0;font-size:13px;color:var(--muted)}
.resume-link{font-size:13px;color:var(--gold);text-decoration:none}.resume-link:hover{text-decoration:underline;text-underline-offset:4px}
body:not(.has-picked) .us-pin.lead .us-dot{box-shadow:0 0 0 4px #d8ce5144}

/* investment-actions.css */
#shareSceneDialog{width:min(550px,calc(100vw - 32px));padding:24px;border:1px solid #676647;background:#191919;color:#eeeede}#shareSceneDialog::backdrop{background:#0009}#shareSceneDialog .dialog-head{padding:0;margin:0 0 18px}#shareSceneDialog h2{font-size:22px;font-weight:400}#shareSceneDialog p{font-size:13px;line-height:1.7;color:#b8beaa}#shareSceneDialog label{display:block;font-size:11px;color:#b8beaa;margin:18px 0 8px}#shareSceneDialog input{box-sizing:border-box;width:100%;background:#24271f;border:1px solid #666e56;color:#f0edde;padding:13px;font:12px monospace}#shareSceneDialog .investment-actions{display:flex;gap:18px;margin-top:14px}#shareSceneDialog .investment-actions>*{color:#d8ce51;font-size:13px;padding:7px 0;background:none;border:0;text-decoration:none}#shareSceneDialog .share-status{min-height:22px;font-size:12px}
@media(max-width:760px){.header-right>span{display:none}.header-right button{font-size:11px;padding:7px}}

.header-right>button[data-share-scene]{white-space:nowrap;flex-shrink:0}@media(max-width:760px){.header-right>.back-link{display:none}}

/* reading.css */
/* Shared reading scale. Preserve readable type; compact spacing and imagery first. */
:root{--reading-body:15px;--reading-detail:14px;--reading-caption:12px}
@media(min-width:761px){main.exploration-mode,main.exhibit-mode{grid-template-columns:minmax(0,1fr) clamp(400px,33vw,490px)}}
body .journey-panel,body .exhibit-panel,body .context-panel{padding:18px 24px}
body .journey-panel h2,body .exhibit-panel h2,body .context-panel h2{font-size:26px;line-height:1.35;margin:10px 0 14px}
body .journey-body>p,body .journey-insight p,body .exhibit-body>p,body .tenant-fit p,body .context-panel>p:not(.eyebrow):not(.context-footnote),body .context-summary-line span{font-size:var(--reading-body);line-height:1.7;margin-top:8px;margin-bottom:12px;color:#d0d3c6}
body .journey-facts>div,body .exhibit-facts>div{font-size:var(--reading-detail);line-height:1.55;padding:9px 0}
body .journey-facts dt,body .exhibit-facts dt{flex:0 1 43%}
body .journey-facts dd,body .exhibit-facts dd{max-width:60%;overflow-wrap:anywhere}
body .journey-insight{margin-top:12px;padding-top:10px}
body .journey-insight span,body .journey-figure figcaption,body .exhibit-photo figcaption,body .journey-note,body .exhibit-note,body .context-footnote,body .context-photo figcaption,body .exhibit-link-note{font-size:var(--reading-caption);line-height:1.6;color:#b9c0ac}
body .journey-note,body .exhibit-note{padding-top:10px;margin-top:8px}
body .eyebrow,body .exhibit-time,body .exhibit-panel-top,body .exhibit-panel-top button{font-size:12px;line-height:1.5}
body .exhibit-time{margin:12px 0 8px}
body .journey-related button,body .context-detail-tabs button,body .context-drive,body .context-link{font-size:14px}
body .context-summary-line b,body .tenant-fit b{font-size:16px}
body .context-panel .drive-table{font-size:14px;line-height:1.5}
body .context-panel .drive-table td,body .context-panel .drive-table th{padding:7px 0}
body .tenant-fit>div{padding:10px 0}
body .tenant-fit small,body .capital-journey span,body .exhibit-capital span{font-size:12px}
body .capital-journey b{font-size:16px}
body .exhibit-milestones b{font-size:15px}body .exhibit-milestones span{font-size:14px}
body .comparable-pair span,body .comparable-track{font-size:12px}
body .comparable-insight{font-size:14px;line-height:1.6}
body .comparable-track b{font-size:15px}
body .equity-bridge>div,body .return-target{font-size:14px}
body .exhibit-body .bridge-note{font-size:12px!important;line-height:1.6!important;margin:8px 0!important}
body .distribution-flow li,body .distribution-flow span{font-size:14px;line-height:1.5}
body .distribution-flow span{margin-top:2px}
body .investment-actions a,body .investment-actions button{font-size:14px}
body .exhibit-scenarios button{font-size:14px}body .exhibit-scenarios small,body .scenario-head{font-size:12px}
body nav.primary-exploration button,body nav.primary-exploration .exploration-back span{font-size:14px}
body .exploration-heading p,body .exploration-views button,body .exploration-views .exploration-overview{font-size:12px}
body #stageView .exhibit-narration p{font-size:15px;line-height:1.65}
body #stageView .exhibit-stats span{font-size:12px;line-height:1.55}
body #stageView .exhibit-chapters button{font-size:13px}body #stageView .exhibit-chapters button span{font-size:11px}
body #stageView .scene-action-label{font-size:14px}body #stageView .scene-action-index{font-size:12px}
body .fund-intro,body .project-detail .summary{font-size:15px;line-height:1.65}
body .fund-thesis p{font-size:14px;line-height:1.55}body .fund-thesis h3{font-size:16px}
body .fund-terms>div,body .facts1 dd{font-size:14px}body .facts1 dt,body .facts1 dd small,body .fund-summary-link{font-size:12px}
@media(min-width:761px) and (max-height:820px){
 body .journey-panel,body .exhibit-panel,body .context-panel{padding:12px 22px}
 body .journey-panel h2,body .exhibit-panel h2,body .context-panel h2{font-size:24px;margin:8px 0 10px}
 body .journey-figure,body .exhibit-photo{margin:8px 0}body .journey-figure img,body .exhibit-photo img{height:78px}
 body .journey-facts>div,body .exhibit-facts>div{padding:7px 0}
 body .journey-body>p,body .exhibit-body>p{margin:8px 0}
 body .journey-insight{margin-top:8px;padding-top:8px}body .journey-insight p{margin:4px 0}
 body .comparable-panel .exhibit-photo img{height:65px}body .comparable-panel .exhibit-facts>div{padding:5px 0}
 body .comparable-panel .exhibit-body>p{margin:6px 0}body .comparable-track{margin-top:6px}
 body .exhibit-panel:has(.equity-bridge) .distribution-flow li{padding:3px 0}
 body .exhibit-panel:has(.equity-bridge) .exhibit-note{padding-top:6px;line-height:1.5}
 body .exhibit-panel:has(.equity-bridge) .return-target{padding-top:6px;margin-top:6px}
 body .fund-thesis{padding:7px 0}body .fund-intro{margin-bottom:6px}body .fund-terms>div{padding:4px 0}
}
@media(max-width:1100px) and (min-width:761px){
 body .exploration-head{display:block}body .exploration-heading{padding:14px 20px 8px}
 body .exploration-views{position:absolute;left:20px;right:20px;bottom:5px;padding:0;gap:16px;justify-content:flex-end}
 body #stageView .exhibit-heading{padding-left:20px;padding-right:20px}
 body #stageView .exhibit-title{font-size:25px}
 body #stageView .exhibit-navigation{padding-left:20px;padding-right:20px;gap:8px}
 body #stageView .exhibit-chapters button span{display:none}
}
@media(max-width:760px){
 body nav.primary-exploration{padding:0 8px}body nav.primary-exploration button,body nav.primary-exploration .exploration-back span{font-size:13px}
 body nav.primary-exploration .exploration-back{padding:6px 7px;margin-right:4px;gap:5px}
 body .exploration-nav-divider{margin-right:4px}
 body .exhibit-mobile-info .exhibit-panel,body .journey-panel,body .context-panel{padding:14px 20px}
 body .exhibit-mobile-info .exhibit-panel h2{font-size:25px}
 body .exhibit-mobile-info .exhibit-body>p{font-size:15px;line-height:1.7}
 body .exhibit-mobile-info .exhibit-facts>div{font-size:14px;padding:7px 0}
 body .exhibit-mobile-info .exhibit-note{font-size:12px;line-height:1.6}
 body .exhibit-mobile-info .exhibit-photo img{height:100px}
 body #stageView .exhibit-stats strong{font-size:26px}
 body #stageView .exhibit-stats span{font-size:12px}
 body #stageView .exhibit-chapters button{font-size:12px}
 body #stageView .exhibit-chapters button span{font-size:10px}
 body .exhibit-navigation .exhibit-nav-actions button{font-size:12px}
}
/* Keep the distribution sequence in one column, with a clear label on each row. */
body .distribution-flow{list-style:none;padding-left:0}
body .distribution-flow li{display:grid;grid-template-columns:65px minmax(0,1fr);gap:8px}
body .distribution-flow span{margin:0}
body .exhibit-scenarios em{display:none} /* The baseline row already says 基準. */
body .exhibit-scenarios small{display:inline;margin-left:6px}
body .exhibit-scenarios button{min-height:48px;padding:12px 10px}
@media(min-width:761px) and (max-height:820px){
 body .exhibit-panel .exhibit-time{margin:6px 0 0}
 body .exhibit-panel h2{margin:6px 0 8px}
 body .capital-journey>div{padding:8px 0}
 body .exhibit-panel .exhibit-scenarios{margin:10px 0}
}
body #stageView .spatial-narrative p{font-size:15px;line-height:1.65}
body .context-panel figcaption,body .context-distance span,body .context-distance a{font-size:12px;line-height:1.6}
@media(max-width:1100px){
 body #stageView .spatial-annotations{grid-template-columns:minmax(0,1fr);gap:10px}
 body #stageView .spatial-narrative{padding-bottom:8px}
 body #stageView .exhibit-stats{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;padding-bottom:8px}
 body #stageView .exhibit-stats strong{font-size:26px;white-space:nowrap}
 body #stageView .exhibit-stats span{max-width:none}
}
body .journey-panel .journey-note{font-size:12px;line-height:1.6}
body main .context-summary-line span{font-size:15px;line-height:1.65}
body main .context-panel .drive-table td{font-size:14px}
body .fund-eyebrow{font-size:12px;letter-spacing:1.5px}
body main #panel .context-panel .drive-table td{font-size:14px;line-height:1.45;padding:4px 0}
body main #panel .context-panel .drive-table th{font-size:12px;padding:5px 0}
body main #panel .context-panel .context-footnote{font-size:12px;line-height:1.5;margin-top:8px}

/* interface-icons.css */
/* Quiet, consistent line icons. No font glyphs, glow or moving click targets. */
body .ui-icon{display:inline-block;width:16px;height:16px;flex:0 0 auto;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;vertical-align:-3px;overflow:visible;pointer-events:none}
body .ui-icon path{vector-effect:non-scaling-stroke}
body .scene-action i,body .exploration-action i,body .us-go i{display:inline-flex;align-items:center;justify-content:center;font-size:0;font-style:normal;line-height:1;transform:none;transition:none}
body .scene-action i .ui-icon,body .exploration-back .ui-icon{width:18px;height:18px}
body .scene-action{box-shadow:none}
body .us-go:hover i{transform:none}
body .evidence-trail i .ui-icon{width:12px;height:12px;vertical-align:0}
body .exhibit-stage-back{display:flex;align-items:center;justify-content:center}
body .exhibit-stage-back .ui-icon{width:18px;height:18px}
body .exploration-back svg{stroke-width:1.6}
body .share-scope{display:flex;gap:20px;border-bottom:1px solid var(--line);margin:16px 0}
body .share-scope button{padding:8px 0;font-size:14px;border:0;border-bottom:1px solid transparent;border-radius:0;color:var(--muted)}
body .share-scope button[aria-pressed=true]{border-color:var(--gold);color:var(--gold)}
@media(max-width:760px){body .header-right [data-share-site]{font-size:12px;padding:7px 8px}}
body .header-right button,body .header-right .back-link{display:inline-flex;align-items:center;justify-content:center;gap:7px;white-space:nowrap;flex-shrink:0}
@media(min-width:761px) and (max-width:1100px){body .header-right>span{display:none}body .header-right{gap:12px}}
@media(max-width:760px){body:has(.primary-exploration) .header-right .back-link{display:none}}

/* presentation.css */
/* Shared presentation hierarchy: primary topics, scene choices, then contextual detail. */
:root{--explorer-rail:clamp(360px,31vw,430px)}
@media(min-width:761px){
 body main.exploration-mode,body main.exhibit-mode{grid-template-columns:minmax(0,1fr) var(--explorer-rail)}
 body main.portfolio{grid-template-columns:minmax(0,1fr) var(--explorer-rail)}
 body .fund-strip{grid-template-columns:repeat(3,minmax(0,1fr)) var(--explorer-rail)}
 body main.exploration-mode #panel,body main.exhibit-mode #panel{grid-template-rows:36px minmax(0,1fr)}
 body main .breadcrumbs{min-height:36px;height:36px;padding:6px 22px;font-size:12px}
 body:has(.primary-exploration) .exploration-mode:not(.phase-entry-mode) .canvas{--explore-top:94px}
 body:has(.primary-exploration) main.phase-entry-mode .canvas{--entry-head:94px;--entry-height:98px}
 .phase-entry-mode .development-entry button{padding-top:10px;padding-bottom:10px}
 .phase-entry-mode .development-entry .entry-frames,.phase-entry-mode .entry-frames img{height:64px}
}
body .journey-panel,body .exhibit-panel,body .context-panel{padding-left:22px;padding-right:22px}
body .journey-panel h2,body .exhibit-panel h2,body .context-panel h2{font-size:25px;line-height:1.35;font-weight:400;letter-spacing:0;overflow-wrap:normal}
body .journey-panel .eyebrow{margin-bottom:6px}
body .journey-insight{border-left:0;border-top:1px solid var(--line);padding:12px 0 0}
body .journey-insight p{margin:6px 0 0}
body .journey-facts dt,body .exhibit-facts dt{flex-basis:40%}
body .journey-facts dd,body .exhibit-facts dd{max-width:60%}
body .exploration-views button{font-size:13px;min-height:36px}
body .exploration-heading h1{font-size:26px;line-height:1.25;letter-spacing:.4px}
body .exploration-heading p{font-size:12px;line-height:1.5;margin-top:5px}
body .context-detail-tabs{gap:20px;justify-content:flex-start;border-bottom:1px solid var(--line);margin-bottom:14px}
body .context-detail-tabs button{min-height:40px;border:0;border-bottom:2px solid transparent;border-radius:0;background:transparent;padding:8px 0;font-size:14px}
body .context-detail-tabs button[aria-pressed=true]{border-bottom-color:var(--gold);color:var(--gold)}
/* The stage rail is the only row of steps. The related investment terms remain in the prose. */
body #stageView .investment-logic{display:none}
body #stageView .exhibit-heading{padding:20px 24px 14px;align-items:flex-start}
body #stageView .exhibit-title{font-size:clamp(23px,2.2vw,30px);line-height:1.35;letter-spacing:0}
body #stageView .exhibit-kicker{font-size:12px;letter-spacing:1.5px;margin-bottom:7px}
body #stageView .exhibit-navigation{padding:0 24px;gap:0}
body #stageView .exhibit-chapters{width:100%;display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:0}
body #stageView .exhibit-chapters button{font-size:14px;min-height:44px;padding:10px 4px;white-space:nowrap}
body #stageView .exhibit-chapters button span{display:none}
body #stageView .exhibit-header-actions button{font-size:12px;min-height:36px;padding:6px}
body #stageView .exhibit-edition{display:none}
body #stageView .exhibit-footer{position:absolute;left:24px;right:24px;bottom:18px;height:64px;z-index:6;display:flex;justify-content:space-between;align-items:center;gap:14px;border-top:1px solid #8e9b762d;padding-top:10px;background:#20271e}
body #stageView .exhibit-footer .scene-action{position:static;width:230px;height:54px;min-height:54px;max-width:none;margin:0;box-shadow:none;padding:7px 12px;grid-template-columns:1fr 24px;gap:2px 12px}
body #stageView .exhibit-footer .scene-action-index{font-size:12px;line-height:1.4;letter-spacing:.5px}
body #stageView .exhibit-footer .scene-action-label{font-size:14px;line-height:1.5}
body #stageView .exhibit-footer .exhibit-stage-back{display:flex;align-items:center;gap:9px;min-height:44px;padding:8px 0;font-size:14px;line-height:1.4;white-space:nowrap;color:#c6ceba}
body #stageView .exhibit-model-host,body #stageView.regional-mode .exhibit-model-host,body #stageView[data-evidence=returns] .exhibit-model-host{bottom:100px}
body #stageView .model-caption{bottom:86px;left:24px;font-size:12px;line-height:1.4}
body #stageView .model-spec:empty{display:none}
body #stageView .evidence-footnote{display:none} /* Assumptions remain alongside the selected scene. */
body #stageView .spatial-narrative{padding-bottom:10px}
/* Homepage: selection stays on the map; the panel summarizes the investment. */
.clear-project{position:absolute;z-index:500;bottom:54px;left:24px;min-height:40px;padding:8px 12px;background:#1c211ced;border:1px solid #979c7955;border-radius:0;color:var(--gold);font-size:14px}
.clear-project[hidden]{display:none}
body .project-detail{border:0;border-top:1px solid var(--gold);background:transparent}
body .project-detail .pd-head{min-height:64px;padding:10px 0;gap:12px}
body .project-detail .pd-head .num{font-size:17px}
body .project-detail .pd-head strong{font-size:21px;line-height:1.3;letter-spacing:.3px}
body .project-detail .project-img{margin:12px 0 0}
body .project-detail .summary{display:block;margin:12px 0;font-size:15px;line-height:1.6}
body .facts1{margin:0}
body .facts1 .fact{grid-template-columns:88px minmax(0,1fr);padding:8px 0;gap:12px}
body .facts1 dt{font-size:12px;letter-spacing:0}
body .facts1 dd{font-size:14px;line-height:1.5}
body .facts1 dd b{font-size:20px;font-variant-numeric:tabular-nums}
body .fund-overview h2{font-size:25px;line-height:1.4}
body .fund-thesis{gap:12px;padding:10px 0}
body .fund-thesis h3{font-size:16px}
body .fund-thesis p{font-size:14px;line-height:1.55}
body .fund-terms>div{font-size:14px;line-height:1.5;gap:10px}
body .fund-terms dd{text-align:right}
body .fund-summary-link{font-size:14px}
body .us-go{min-height:34px;font-size:13px;letter-spacing:.5px;margin-top:2px}
body .us-go:focus-visible,body button:focus-visible,body a:focus-visible{outline:2px solid var(--gold);outline-offset:3px}
@media(min-width:761px) and (max-height:780px){
 body .fund-overview h2{font-size:23px}
 body .fund-thesis{padding:6px 0}
 body .fund-intro{margin-bottom:8px}
 body .fund-terms{margin-top:10px;padding-top:0;margin-bottom:2px}
 body .fund-terms>div{padding:4px 0}
 body .project-detail .project-img img{height:90px}
 body .project-detail .summary{margin:9px 0}
 body .facts1 .fact{padding:6px 0}
 body .journey-panel h2,body .exhibit-panel h2,body .context-panel h2{font-size:23px;margin:6px 0 10px}
 body #stageView .exhibit-heading{padding-top:14px;padding-bottom:10px}
}
@media(max-width:760px){
 body nav.primary-exploration .exploration-back{max-width:138px;padding:6px;gap:4px}
 body nav.primary-exploration .exploration-back span{font-size:12px;overflow:hidden;text-overflow:ellipsis}
 body nav.primary-exploration{gap:0;padding:0 8px}
 body nav.primary-exploration [data-explore-route]{font-size:13px;padding:0 5px}
 body .exploration-heading h1{font-size:24px}
 body #stageView .exhibit-heading{padding:14px 16px 10px;gap:8px}
 body #stageView .exhibit-title{font-size:23px}
 body #stageView .exhibit-kicker{font-size:12px}
 body #stageView .exhibit-navigation{padding:0 12px}
 body #stageView .exhibit-chapters button{font-size:13px;padding:8px 2px;min-height:42px}
 body #stageView .exhibit-footer{left:16px;right:16px;bottom:12px;gap:8px}
 body #stageView .exhibit-footer .scene-action{width:220px;max-width:70%}
 body #stageView .exhibit-footer .scene-action-label{font-size:13px;white-space:normal}
 body #stageView .exhibit-footer .exhibit-stage-back{font-size:13px;gap:5px}
 body #stageView .exhibit-model-host,body #stageView.regional-mode .exhibit-model-host{bottom:94px}
 body #stageView .model-caption{bottom:82px;left:16px;font-size:12px}
 body .clear-project{bottom:42px;left:16px;font-size:13px}
 body .project-detail{overflow:visible}
 body #projectList{padding:18px 20px}
 body .fund-thesis{padding:12px 0}
 body .project-detail .project-img img{height:150px}
 body .exhibit-mobile-info main.exhibit-mode #panel{overflow-y:auto}
}

body #stageView .exhibit-footer [hidden]{display:none!important}
body #stageView .exhibit-footer .scene-action{margin-left:auto}

body .context-panel .context-distance{margin-top:18px;padding-top:16px}
body .exhibit-panel:has(.distribution-flow) .exhibit-facts dt{flex-basis:58%}
body .exhibit-panel:has(.distribution-flow) .exhibit-facts dd{max-width:42%}
@media(min-width:761px){body main.article-mode .article-nav{top:36px}body main.article-mode #panelContent{padding-top:28px}}

@media(max-width:760px){body main.portfolio .canvas{height:560px;min-height:560px}}

body .fund-intro{font-size:15px;line-height:1.6}

@media(min-width:761px) and (max-height:780px){body .project-detail[data-id=kratos] .project-img img{height:76px}body .project-detail[data-id=kratos] .facts1 .fact{padding:5px 0}}

/* explore-evidence.css */
/* Theme selection and contextual evidence keep the existing three-topic navigation. */
.industry-nav{position:absolute;z-index:600;top:16px;left:24px;right:24px;background:#20241fee;border:1px solid #adb08a38;padding:10px 14px;display:flex;align-items:center;gap:18px;box-shadow:0 6px 20px #0002}
.industry-eyebrow{font-size:12px;color:#b7b99f;white-space:nowrap;letter-spacing:1px}
.industry-nav>div{display:flex;flex:1;gap:4px}
.industry-nav button{flex:1;min-height:40px;white-space:nowrap;border:0;border-bottom:2px solid transparent;background:transparent;color:#c6c8bd;font:inherit;font-size:14px;padding:8px}
.industry-nav button[aria-pressed=true]{color:var(--gold);border-bottom-color:var(--gold);background:#d8ce510b}
body.industry-exploration .map-top{top:90px}
body.industry-exploration .map-top .view-controls{padding:0;background:#20241fe6}
body.industry-exploration .view-controls button{padding:8px 10px;min-height:34px;font-size:12px}
.industry-anchor{display:block;color:#d8ce51;margin:6px 0 0;font-size:12px;letter-spacing:0;line-height:1.4}
.industry-reading section{padding:14px 0;border-top:1px solid var(--line)}
.industry-reading small{font-size:12px;color:var(--muted)}
.industry-reading h3{font-size:17px;line-height:1.5;font-weight:400;margin:5px 0}
.industry-reading p{font-size:14px;line-height:1.6;color:#bcbfb3;margin:0}
.industry-count{margin-top:auto;display:flex;gap:14px;align-items:center;padding:12px 0;border-top:1px solid var(--line)}
.industry-count strong{font-size:36px;line-height:1;color:var(--gold);font-weight:400}
.industry-count span{font-size:12px;line-height:1.7;color:#bcbfb3}
body .proof-link{display:flex;width:100%;align-items:center;justify-content:space-between;gap:12px;text-align:left;background:transparent;border:0;border-bottom:1px solid #d8ce514d;color:var(--gold);font:inherit;font-size:14px;line-height:1.5;min-height:42px;padding:9px 0;margin:6px 0 0;cursor:pointer}
.proof-link i{font-style:normal;flex:none}
dialog.proof-exhibit{width:min(1100px,calc(100vw - 48px));max-width:none;max-height:calc(100dvh - 48px);margin:auto;padding:0;border:1px solid #a6ad8155;background:#20261f;color:#e8e9e0;box-shadow:0 28px 90px #0008;overflow:auto}
dialog.proof-exhibit::backdrop{background:#101510ce;backdrop-filter:blur(5px)}
.proof-heading{position:sticky;top:0;z-index:2;background:#20261ff7;display:flex;align-items:flex-start;justify-content:space-between;gap:24px;padding:25px 30px;border-bottom:1px solid #a6ad8133;height:auto;min-height:0}
.proof-label{display:block;font-size:12px;letter-spacing:1px;line-height:1.6;color:#c8caad}
.proof-heading h2{font-size:28px;font-weight:400;line-height:1.45;margin:7px 0 0;letter-spacing:0}
.proof-close{border:1px solid #a6ad8144;background:transparent;color:#e3e5d6;font-size:14px;min-height:42px;white-space:nowrap;padding:8px 15px}
.proof-content{padding:28px 30px 30px}
.proof-content p{font-size:15px;line-height:1.75;color:#c7cbbd;margin:12px 0}
.proof-content h3{font-size:22px;line-height:1.45;font-weight:400;margin:8px 0 14px}
.proof-content small{font-size:12px;line-height:1.65;color:#afb7a3;display:block}
.proof-text-action{font:inherit;font-size:14px;line-height:1.5;min-height:44px;text-align:left;border:0;border-bottom:1px solid #d8ce514d;color:var(--gold);background:none;padding:9px 0;display:block;margin-top:14px}
.proof-demand{display:grid;grid-template-columns:.85fr 1.2fr 1fr;gap:26px}
.proof-origin{padding:20px;background:#141c1570;border-top:2px solid #a9ad8a}
.proof-origin>strong{font-size:37px;line-height:1.25;font-weight:400;display:block;margin:25px 0;color:#e2e5d3}
.proof-location{border-top:1px solid #a6ad8133;padding-top:18px;margin-top:22px}
.proof-location b{display:block;font-size:15px;font-weight:400;color:var(--gold)}
.proof-location span{display:block;font-size:12px;color:#b3bba5;margin-top:6px}
.proof-use{padding-top:20px}
.proof-role-options{display:flex;gap:6px;margin:14px 0 24px}
.proof-role-options button{flex:1;font-size:14px;min-height:42px;padding:8px 5px;border:1px solid #a6ad8144;background:transparent;color:#cbd0c1;white-space:nowrap}
.proof-role-options button[aria-pressed=true]{border-color:var(--gold);color:var(--gold);background:#d8ce5110}
.proof-role-description b{display:block;font-size:14px;line-height:1.8;color:#d8ce51;border-top:1px solid #a6ad8144;margin-top:24px;padding-top:18px;font-weight:400}
.proof-building{border-top:2px solid var(--gold);background:#283026}
.proof-building>img{width:100%;height:195px;object-fit:cover;display:block}
.proof-building>div{padding:18px 20px 0}.proof-building>.proof-text-action{margin:10px 20px 18px}
.proof-partnership{display:grid;grid-template-columns:1fr 1.25fr;gap:35px}
.proof-partner-intro>h3{font-size:26px}
.proof-case-options{display:grid;gap:10px;margin:24px 0}
.proof-case-options button{padding:14px 17px;text-align:left;background:none;color:#e3e6d9;border:1px solid #a6ad8144}
.proof-case-options button[aria-pressed=true]{border-color:var(--gold);background:#d8ce5109}
.proof-case-options span{font-size:17px;display:block;margin-bottom:4px}
.proof-current{border-top:1px solid #a6ad8133;padding-top:18px}
.proof-current>b{font-size:17px;font-weight:400;display:block;margin-top:8px}
.proof-case{background:#293027}.proof-case>img{height:200px;width:100%;object-fit:cover;display:block}
.proof-case-copy{padding:18px 24px}.proof-case-metrics{display:flex;gap:36px;padding-bottom:15px;border-bottom:1px solid #a6ad8133}
.proof-case-metrics span{font-size:12px;color:#b7bea9}.proof-case-metrics b{display:block;font-size:32px;font-weight:400;color:#e1e5d1;margin-bottom:5px}
.proof-lease,.proof-buyers{display:grid;grid-template-columns:1fr 1fr;gap:32px}
.proof-lease>img{height:100%;max-height:410px;min-height:270px;object-fit:cover;width:100%}
.proof-lease dl{margin:22px 0}.proof-lease dl>div{padding:13px 0;border-top:1px solid #a6ad8133}.proof-lease dt{font-size:12px;color:#b5bba9}.proof-lease dd{font-size:21px;margin:6px 0 0;color:#e0e3ce}
.buyer-reasons article{border-top:1px solid #a6ad8133;padding-top:16px;margin-top:16px}.buyer-reasons b{font-size:17px;font-weight:400}.buyer-reasons p{margin:7px 0 12px}
.proof-transaction{background:#293027;padding:0 24px 20px}.proof-transaction>img{height:180px;width:calc(100% + 48px);max-width:none;object-fit:cover;margin:0 -24px 20px;display:block}.proof-transaction>strong{font-size:38px;font-weight:400;color:var(--gold)}
@media(min-width:761px) and (max-height:780px){.industry-reading section{padding:8px 0}.industry-reading h3{font-size:16px;margin:4px 0}.industry-count{padding:8px 0}.proof-content{padding:22px 28px}.proof-heading{padding:18px 28px}.proof-building>img{height:160px}.proof-case>img{height:165px}.proof-case-options{margin:18px 0}.proof-content p{margin:8px 0}.proof-current{padding-top:12px}.proof-case-copy{padding:14px 20px}}
@media(max-width:1000px){.industry-nav{gap:10px;left:18px;right:18px;padding:8px}.industry-eyebrow{display:none}.proof-demand{grid-template-columns:.85fr 1.2fr;gap:22px}.proof-building{grid-column:1 / -1;display:grid;grid-template-columns:200px 1fr}.proof-building>img{height:180px;grid-row:1/3}.proof-building>.proof-text-action{margin:0 20px 14px}.proof-origin>strong{font-size:32px}}
@media(max-width:760px){body.industry-exploration .map-top{top:83px}.industry-nav{top:14px;left:14px;right:14px}.industry-nav button{font-size:13px;padding:8px 4px}.industry-anchor{font-size:12px}.industry-count{margin-top:18px}dialog.proof-exhibit{width:calc(100vw - 20px);max-height:calc(100dvh - 24px)}.proof-heading{padding:16px 18px;gap:12px}.proof-heading h2{font-size:22px}.proof-close{padding:7px 10px;min-height:40px}.proof-content{padding:20px 18px}.proof-demand,.proof-partnership,.proof-lease,.proof-buyers{grid-template-columns:1fr;gap:22px}.proof-origin>strong{font-size:30px;margin:12px 0}.proof-origin>strong br{display:none}.proof-location{margin-top:12px;padding-top:12px}.proof-use{padding-top:0}.proof-role-options{margin-bottom:16px}.proof-building{display:block}.proof-building>img{height:180px}.proof-building>.proof-text-action{margin:10px 20px 18px}.proof-case>img{height:190px}.proof-lease>img{height:180px;min-height:0}.proof-case-copy{padding:18px}.proof-current{margin-bottom:0}}
@media(prefers-reduced-motion:reduce){dialog.proof-exhibit::backdrop{backdrop-filter:none}}

body.industry-exploration .scene-caption{bottom:70px;left:30px;right:75px;max-width:none}
body.industry-exploration .scene-caption h1{font-size:clamp(23px,2.4vw,34px);margin:8px 0}
body.industry-exploration .scene-caption span{font-size:11px;letter-spacing:1.5px}
body.industry-exploration .scene-caption p{font-size:15px;line-height:1.5}
@media(max-width:760px){body.industry-exploration .scene-caption{left:18px;right:25px;bottom:65px}body.industry-exploration .scene-caption h1{font-size:23px}}

@media(max-width:760px){.proof-heading>div{width:100%}.proof-heading .proof-label{padding-right:80px;min-height:32px}.proof-heading .proof-close{position:absolute;top:14px;right:18px}.proof-heading h2{font-size:22px;margin-top:8px}}

/* site-nav.css */
/* Site-level navigation in the header. */
.site-nav{display:flex;align-items:stretch;gap:clamp(14px,2.2vw,34px);height:100%;margin:0 auto 0 clamp(20px,4vw,64px)}
.site-nav a{display:flex;align-items:center;font-size:14px;letter-spacing:1px;color:#c9cbc1;text-decoration:none;border-bottom:2px solid transparent;border-top:2px solid transparent;white-space:nowrap}
.site-nav a:hover{color:var(--gold)}.site-nav a.on{color:var(--gold);border-bottom-color:var(--gold)}
@media(max-width:1100px){.site-nav{margin-left:18px;gap:14px}.site-nav a{font-size:13px;letter-spacing:0}.header-right>span{display:none}}
@media(max-width:760px){header{flex-wrap:wrap;height:auto!important;min-height:64px;row-gap:0}.site-nav{order:3;width:100%;height:40px;margin:0;gap:18px;overflow-x:auto;border-top:1px solid var(--line)}}

/* Main line first, reference pages quieter, the destination as a button. */
.site-nav a.main{font-size:15px;color:#f2f5f7}.site-nav a.side{font-size:13px;color:#a9ab9c}.site-nav a.side:first-of-type{margin-left:0}.site-nav a.main+a.side{padding-left:clamp(14px,2.2vw,34px);border-left:0;position:relative}.site-nav a.main+a.side:before{content:"";position:absolute;left:0;top:34%;bottom:34%;width:1px;background:#4a4c44}
.site-nav a.cta{align-self:center;height:auto;padding:6px 14px;border:1px solid var(--gold);border-radius:2px;color:var(--gold);font-size:13px}.site-nav a.cta:hover,.site-nav a.cta.on{background:var(--gold);color:#191919}
@media(max-width:760px){.site-nav a.cta{padding:4px 10px}}
.header-right>span{white-space:nowrap}@media(max-width:1500px){.header-right>span{display:none}}

