/* 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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* 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;
		}
	}
:root {
  --paper: #f8f6f1;
  --paper-2: #efede6;
  --ink: #101114;
  --muted: #62666e;
  --line: rgba(16, 17, 20, 0.13);
  --line-strong: rgba(16, 17, 20, 0.22);
  --brass: #b1853f;
  --brass-dark: #7d5b23;
  --blue: #dce5ea;
  --dark: #13171c;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(18, 22, 28, 0.11);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header brand tagline: visible and consistent on every page. */
.site-header .brand,
.home-route .site-header .brand {
  display: inline-flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
  min-width: 0 !important;
}

.site-header .brand span {
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
}

.site-header .brand em {
  display: block !important;
  margin: 0 !important;
  color: rgba(18, 29, 38, 0.72) !important;
  font-family: var(--display) !important;
  font-size: clamp(9px, 0.66vw, 11px) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.home-route .site-header .brand em {
  color: rgba(18, 29, 38, 0.68) !important;
}

@media (max-width: 820px) {
  .site-header .brand strong {
    font-size: 22px !important;
  }

  .site-header .brand em {
    font-size: 9px !important;
    letter-spacing: 0.045em !important;
  }
}


/* Homepage-specific correction: keep nav/menu, hide duplicate small brand, align CTAs. */
.home-route .site-header .brand {
  display: inline-flex !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (min-width: 1181px) {
  .home-route .desktop-nav {
    display: flex !important;
  }
}

@media (max-width: 1180px) {
  .home-route .menu-toggle,
  .site-header .menu-toggle {
    display: inline-flex !important;
  }
}

.home-route .hero-actions.action-first {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(10px, 2vw, 14px) !important;
}

.home-route .hero-actions.action-first .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  width: 100% !important;
  white-space: nowrap !important;
}

.home-route .hero-actions.action-first .btn svg {
  flex: 0 0 auto !important;
}

@media (max-width: 520px) {
  .home-route .hero-actions.action-first {
    width: 100% !important;
    gap: 8px !important;
  }

  .home-route .hero-actions.action-first .btn {
    min-height: 64px !important;
    padding-inline: 8px !important;
    font-size: clamp(14px, 4.05vw, 16px) !important;
    letter-spacing: 0.035em !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 246, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0;
}

.brand strong,
.brand em {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.nav-group {
  position: relative;
}

.nav-group > button {
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.nav-group:hover > button,
.nav-group:focus-within > button {
  background: var(--paper-2);
}

.nav-menu {
  position: absolute;
  top: 42px;
  left: 0;
  display: none;
  min-width: 238px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  display: grid;
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.nav-menu a:hover {
  color: var(--ink);
  background: var(--paper-2);
}

.header-cta,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  padding: 0;
  background: var(--white);
  color: var(--ink);
}

.mobile-nav {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 10px;
}

.mobile-nav a {
  padding: 11px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 750;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) 46px;
}

.hero-copy {
  max-width: 760px;
}

.hero h1,
.page-hero h1,
.section h2,
.form-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(50px, 8vw, 106px);
  line-height: 0.92;
}

.hero p {
  max-width: 710px;
  margin: 28px 0 0;
  color: #333840;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions,
.inline-actions,
.direct-actions,
.form-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
}

.btn.primary {
  background: var(--brass);
  border-color: var(--brass);
  color: #101114;
}

.btn.secondary {
  background: var(--white);
  color: var(--ink);
}

.btn.inverse {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

.direct-actions {
  margin-top: 22px;
}

.direct-actions a,
.rail-actions a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.04);
}

.hero-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  width: min(360px, calc(100% - 36px));
  padding: 16px;
  background: rgba(248, 246, 241, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  backdrop-filter: blur(16px);
}

.hero-caption span,
.page-hero span,
.intake-rail > span,
.form-eyebrow {
  color: var(--brass-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-family: Georgia, serif;
  font-size: 23px;
}

.cred-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.cred-strip div {
  min-height: 126px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.cred-strip div:last-child {
  border-right: 0;
}

.cred-strip strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.9;
}

.cred-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section,
.page-shell {
  padding: clamp(56px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.section h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
}

.section p,
.page-hero p,
.prose p,
.form-card p,
.band-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--brass-dark);
  font-weight: 900;
}

.list-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(18, 22, 28, 0.06);
}

.list-panel.compact {
  box-shadow: none;
}

.list-panel h3,
.contact-card h3,
.contact-form h3 {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-size: 25px;
}

.list-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333840;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.list-panel li svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--brass-dark);
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  padding-top: 0;
  padding-bottom: 0;
}

.band-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 390px;
  padding: clamp(32px, 5vw, 72px);
}

.band-card.dark {
  background: var(--dark);
  color: var(--white);
}

.band-card.light {
  background: var(--blue);
}

.band-card h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(35px, 5vw, 68px);
  line-height: 0.95;
}

.band-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
}

.section-head p {
  max-width: 500px;
  margin: 0;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-proof {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin: 0 0 28px;
  padding: 28px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
}

.brand-proof > div:first-child {
  display: grid;
  gap: 10px;
}

.brand-proof > div:first-child > span {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.brand-proof h2 {
  margin: 0;
  max-width: 300px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-cloud span {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credit-card {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.credit-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-2);
}

.credit-card div {
  padding: 16px;
}

.credit-card h3 {
  margin: 0;
  font-size: 16px;
}

.credit-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.page-hero {
  max-width: 980px;
  margin-bottom: 32px;
}

.page-hero h1 {
  margin-top: 12px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
}

.compact-hero h1 {
  max-width: 850px;
}

.prose {
  max-width: 860px;
  padding: 32px 0;
}

.prose p {
  margin: 0 0 18px;
}

.service-matrix,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.embed-frame {
  height: min(780px, 78vh);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.resume-frame {
  display: grid;
  gap: clamp(10px, 1.2vw, 14px);
  padding: clamp(14px, 1.8vw, 24px);
  max-width: 1040px;
  margin: 0 auto;
  border-color: rgba(22, 38, 49, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.98), rgba(240, 246, 249, 0.88)),
    #fffefa;
  box-shadow:
    0 28px 80px rgba(16, 30, 40, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.resume-frame-topline {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px;
  color: #17232b;
}

.resume-frame-topline span,
.resume-frame-topline em {
  font-family: var(--display);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resume-frame-topline span {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 900;
}

.resume-frame-topline em {
  color: #5f7f91;
  font-size: clamp(10px, 0.78vw, 12px);
  font-style: normal;
}

.resume-pages {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
  max-height: min(980px, 82vh);
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(10px, 1.4vw, 18px);
  border: 1px solid rgba(19, 33, 43, 0.14);
  border-radius: 4px;
  background: linear-gradient(180deg, #e8eef2, #f7f9fa);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 48px rgba(19, 33, 43, 0.12);
  -webkit-overflow-scrolling: touch;
}

.resume-page {
  display: grid;
  gap: 8px;
  margin: 0 auto;
  width: min(100%, 820px);
}

.resume-page img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(19, 33, 43, 0.16);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(19, 33, 43, 0.14);
}

.resume-page figcaption {
  color: #587283;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .resume-frame {
    gap: 8px;
    padding: 10px;
    border-radius: 6px;
    max-height: 74vh;
  }

  .resume-frame-topline {
    min-height: 30px;
    padding: 0 2px;
  }

  .resume-pages {
    max-height: calc(74vh - 62px);
    overflow: auto;
    padding: 8px;
    gap: 14px;
  }

  .resume-page {
    gap: 6px;
  }

  .resume-page img {
    box-shadow: 0 10px 22px rgba(19, 33, 43, 0.12);
  }
}

.video-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.video-row,
.resource-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-row span {
  font-weight: 800;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.resource-card {
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 92px;
}

.resource-card.guide-card {
  align-content: start;
}

.resource-card.guide-card span {
  grid-column: 2;
}

.resource-card.featured {
  min-height: 150px;
  align-content: start;
  grid-template-columns: 1fr;
  background: var(--blue);
}

.resource-card span {
  color: var(--muted);
  font-size: 13px;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.interactive-map-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: stretch;
}

.zone-map-card {
  position: relative;
  min-height: 620px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.zone-map-search {
  box-sizing: border-box;
  width: min(345px, calc(100vw - 72px));
  height: 46px;
  margin: 12px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  outline: none;
}

.zone-map-search:focus {
  border-color: var(--blue-strong);
}

.map-status {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-status.error {
  max-width: 280px;
  line-height: 1.45;
  text-align: center;
}

.map-rings {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  overflow: hidden;
  border-radius: 6px;
}

.map-rings span {
  position: absolute;
  border: 2px solid rgba(177, 133, 63, 0.72);
  border-radius: 50%;
}

.map-rings span:first-child {
  width: 58%;
  aspect-ratio: 1;
}

.map-rings span:nth-child(2) {
  width: 78%;
  aspect-ratio: 1;
}

.map-rings strong {
  z-index: 1;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.map-embed {
  height: 620px;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form-prereq {
  display: grid;
  gap: 5px;
  margin: 0 0 2px;
  max-width: 42rem;
  color: #40515c;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.38;
}

.contact-form-prereq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: center;
}

.contact-form-prereq a {
  color: #17232b;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.human-check {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(23, 35, 43, 0.035);
  border: 1px solid rgba(23, 35, 43, 0.16);
  border-radius: 8px;
}

.human-check label {
  color: #2d3035;
  font-size: 13px;
  font-weight: 850;
}

.human-check-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.human-check-row span {
  color: #40515c;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.human-check-row input {
  width: 7.5rem;
  min-height: 42px;
  padding: 0 12px;
  color: #17232b;
  font: inherit;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.human-check.invalid {
  background: rgba(162, 65, 55, 0.06);
  border-color: rgba(162, 65, 55, 0.5);
}

.human-check small {
  color: #8d2c24;
  font-size: 12px;
  font-weight: 800;
}

.contact-form label,
.field {
  display: grid;
  gap: 8px;
  color: #2d3035;
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea,
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 550;
}

.voice-input-wrap {
  position: relative;
  display: block;
  min-width: 0;
}

.voice-input-wrap input,
.voice-input-wrap textarea {
  padding-right: 54px !important;
}

.voice-input-button {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #314553;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(82, 107, 122, 0.32);
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.voice-input-button:hover,
.voice-input-button:focus-visible,
.voice-input-button.is-listening {
  color: #0f2534;
  background: #fff;
  border-color: rgba(79, 122, 150, 0.78);
  box-shadow: 0 0 0 4px rgba(111, 145, 164, 0.18);
}

.voice-input-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.contact-form textarea,
.field textarea {
  resize: vertical;
  min-height: 132px;
}

.intake-shell {
  padding-top: 42px;
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.intake-rail {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
}

.intake-rail h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.95;
}

.intake-rail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.rail-actions {
  display: grid;
  gap: 10px;
  padding-top: 12px;
}

.rail-actions a {
  color: rgba(255, 255, 255, 0.8);
}

.switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.switcher a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.switcher a.active {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}

.form-card {
  padding: clamp(22px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.progress {
  height: 7px;
  margin: 12px 0 30px;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: 999px;
}

.progress i {
  display: block;
  height: 100%;
  background: var(--brass);
  border-radius: inherit;
}

.form-card h2 {
  margin-top: 10px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1;
}

.fields {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.field > span,
.field > label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field em {
  color: var(--brass-dark);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-color: #9d2f1e;
  box-shadow: 0 0 0 3px rgba(157, 47, 30, 0.12);
}

.contact-form label.invalid input,
.contact-form label.invalid textarea {
  border-color: #9d2f1e;
  box-shadow: 0 0 0 3px rgba(157, 47, 30, 0.12);
}

.field small,
.contact-form label small {
  color: #9d2f1e;
  font-weight: 850;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-grid button {
  min-height: 40px;
  padding: 0 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.choice-grid button.selected {
  color: var(--ink);
  background: var(--brass);
  border-color: var(--brass);
}

.form-nav {
  justify-content: space-between;
  margin-top: 28px;
}

.review-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.review-row {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 18px;
  padding: 14px;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.review-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.review-row strong {
  font-size: 14px;
  line-height: 1.45;
}

.success-card {
  display: grid;
  place-items: center;
  min-height: 420px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 14px;
  background: var(--brass);
  border-radius: 50%;
}

.property-copy {
  padding-left: 0;
  padding-right: 0;
  max-width: 920px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 8px;
}

.floating-contact a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr) auto;
  gap: 28px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: var(--dark);
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: start;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 750;
}

.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .hero,
  .two-col,
  .intake-layout,
  .brand-proof,
  .map-panel {
    grid-template-columns: 1fr;
  }

  .interactive-map-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 380px;
  }

  .intake-rail {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  .brand em {
    display: none;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 74px);
  }

  .cred-strip,
  .split-band,
  .credits-grid,
  .resource-grid,
  .service-matrix,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cred-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    display: grid;
  }

  .review-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section,
  .page-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .inline-actions,
  .form-nav {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .direct-actions {
    display: grid;
  }

  .switcher {
    grid-template-columns: 1fr;
  }

  .map-rings {
    min-height: 260px;
  }

  .zone-map-card {
    min-height: 560px;
  }
}

/* Mockup fidelity layer */
:root {
  --paper: #f7f6f1;
  --paper-2: #ededeb;
  --ink: #050505;
  --muted: #525252;
  --line: rgba(0, 0, 0, 0.18);
  --line-strong: rgba(0, 0, 0, 0.38);
  --brass: #b08322;
  --brass-dark: #9b741d;
  --blue: #eaf3f9;
  --dark: #050505;
  --white: #fffefa;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Roboto Condensed", sans-serif;
  --body: "Arial Narrow", Arial, Helvetica, sans-serif;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.13);
  font-family: var(--body);
}

body {
  background: var(--paper);
}

.site-header {
  min-height: 70px;
  padding: 0 clamp(24px, 3.2vw, 42px);
  grid-template-columns: auto 1fr auto auto;
  gap: 26px;
  background: rgba(255, 254, 250, 0.94);
  border-bottom: 1px solid #cacaca;
  backdrop-filter: blur(18px);
}

.brand strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 28px;
  max-width: 980px;
  margin-left: auto;
}

.desktop-nav a {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a:hover {
  color: var(--brass-dark);
}

.header-cta {
  height: 45px;
  padding: 0 24px;
  background: var(--brass);
  border-color: var(--brass);
  color: var(--white);
  border-radius: 0;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  border-radius: 0;
}

.mobile-nav a {
  border-radius: 0;
  font-family: var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 70px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(52px, 7vw, 94px) clamp(28px, 5vw, 72px) 76px;
  border-bottom: 1px solid #cfcfcf;
  isolation: isolate;
}

.home-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  filter: saturate(0.86) contrast(1.03);
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.95) 0%, rgba(255, 254, 250, 0.82) 28%, rgba(255, 254, 250, 0.28) 48%, rgba(255, 254, 250, 0.02) 74%),
    linear-gradient(0deg, rgba(255, 254, 250, 0.06), rgba(255, 254, 250, 0.06));
}

.home-hero-panel {
  max-width: 560px;
}

.home-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 11vw, 150px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-role,
.hero-capabilities,
.hero-summary,
.hero-proof span,
.btn,
.direct-actions a,
.rail-actions a {
  font-family: var(--display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-role {
  display: inline-block;
  margin: 18px 0 0;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--brass);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1;
}

.hero-capabilities {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.05;
}

.hero-summary {
  max-width: 400px;
  margin: 22px 0 0;
  font-size: clamp(21px, 2.4vw, 31px);
  line-height: 1.25;
}

.hero-proof {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 17px;
}

.hero-proof svg {
  width: 34px;
  height: 34px;
  padding: 5px;
  border: 2px solid #111;
  border-radius: 50%;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 520px;
  margin-top: 32px;
}

.hero-actions .wide {
  grid-column: 1 / -1;
  width: max-content;
}

.btn {
  min-height: 52px;
  border-radius: 0;
  font-size: 15px;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.btn.primary {
  background: linear-gradient(135deg, #c19a3a, #9f7419);
  border-color: var(--brass);
  color: var(--white);
}

.btn.secondary {
  background: rgba(255, 254, 250, 0.72);
  border-color: var(--line-strong);
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.38));
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 5vw, 72px) clamp(28px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid #d4d4d4;
}

.home-intro h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-intro h2 span {
  display: block;
  white-space: nowrap;
}

.home-intro p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.25;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #cfd5da;
}

.intro-stats span {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 18px;
  border-left: 1px solid #cfd5da;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.intro-stats span:first-child {
  border-left: 0;
}

.intro-stats strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-services {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 36px;
  padding: clamp(62px, 7vw, 96px) clamp(28px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid #d4d4d4;
}

.home-services h2,
.credibility-band h2,
.path-panel h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-services h2,
.credibility-band h2 {
  position: relative;
  font-size: clamp(38px, 4vw, 57px);
}

.home-services h2::after,
.credibility-band h2::after,
.path-panel h2::after,
.intake-rail h1::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 18px;
  background: var(--brass);
  content: "";
}

.service-card-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 17px;
  min-height: 250px;
  padding: 22px 24px;
  text-align: center;
  border-left: 1px solid #cecece;
}

.service-card:first-child {
  border-left: 0;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  max-width: 190px;
  font-size: 16px;
  line-height: 1.48;
}

.credibility-band {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(62px, 7vw, 96px) clamp(28px, 5vw, 72px);
  color: var(--white);
  isolation: isolate;
  background: #050505;
}

.credibility-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.2) brightness(0.62);
  transform: scale(1.04);
  pointer-events: none;
}

.credibility-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.64));
  content: "";
}

.credibility-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.credibility-links a {
  display: grid;
  justify-items: center;
  gap: 20px;
  min-height: 170px;
  padding: 22px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.credibility-links a:first-child {
  border-left: 0;
}

.credibility-links span {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #cfcfcf;
}

.path-panel {
  display: grid;
  justify-items: center;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: stretch;
  gap: 20px;
  min-height: 360px;
  padding: clamp(42px, 5vw, 64px);
  text-align: center;
  border-right: 1px solid #cfcfcf;
}

.path-panel:last-child {
  border-right: 0;
}

.path-panel h2 {
  font-size: clamp(42px, 5vw, 62px);
}

.path-panel h2::after {
  margin-left: auto;
  margin-right: auto;
}

.path-panel p {
  max-width: 370px;
  margin: 0;
  font-size: 18px;
  line-height: 1.38;
}

.path-panel.list {
  background: var(--blue);
}

.line-city,
.line-building {
  width: min(430px, 82vw);
  height: 72px;
  border-bottom: 2px solid #111;
  opacity: 0.82;
}

.line-city {
  background:
    linear-gradient(90deg, transparent 0 8%, #111 8% 9%, transparent 9% 14%, #111 14% 15%, transparent 15% 23%, #111 23% 24%, transparent 24% 35%, #111 35% 36%, transparent 36% 51%, #111 51% 52%, transparent 52% 64%, #111 64% 65%, transparent 65% 77%, #111 77% 78%, transparent 78%),
    linear-gradient(0deg, #111, #111) 12% 64% / 28px 28px no-repeat,
    linear-gradient(0deg, #111, #111) 29% 54% / 34px 38px no-repeat,
    linear-gradient(0deg, #111, #111) 45% 42% / 24px 48px no-repeat,
    linear-gradient(0deg, #111, #111) 58% 56% / 36px 34px no-repeat,
    linear-gradient(0deg, #111, #111) 73% 48% / 30px 42px no-repeat;
}

.line-building {
  width: min(300px, 66vw);
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(0, 0, 0, 0.78) 18px 20px) 50% 32px / 190px 38px no-repeat,
    linear-gradient(#111, #111) 50% 20px / 210px 2px no-repeat,
    linear-gradient(#111, #111) 50% 70px / 250px 2px no-repeat,
    linear-gradient(90deg, transparent 0 18%, #111 18% 20%, transparent 20% 80%, #111 80% 82%, transparent 82%) 50% 22px / 230px 50px no-repeat;
}

.selected-credits {
  background: var(--paper);
}

.intake-shell {
  padding-top: 42px;
  background: var(--paper);
}

.intake-layout {
  grid-template-columns: 420px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
}

.intake-rail {
  top: 98px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}

.intake-rail h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.4vw, 64px);
  letter-spacing: 0.02em;
  text-transform: none;
}

.intake-rail h1::after {
  margin-top: 22px;
}

.intake-rail > p,
.rail-feature p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.5;
}

.switcher {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 28px;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  overflow: hidden;
}

.switcher a {
  display: flex;
  gap: 12px;
  min-height: 64px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.switcher a.active {
  background: linear-gradient(135deg, #c19a3a, #9f7419);
  color: var(--white);
}

.rail-feature {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid #cfcfcf;
}

.rail-feature > svg {
  width: 60px;
  height: 60px;
  padding: 12px;
  border: 1px solid #c6c6c6;
  border-radius: 50%;
}

.rail-feature h2,
.rail-actions h2 {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.rail-actions {
  padding-top: 0;
}

.rail-actions a {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.rail-actions svg {
  color: var(--brass-dark);
}

.rail-form-note {
  margin-top: 10px;
  padding: 26px 0 0;
  border-top: 1px solid #cfcfcf;
}

.rail-form-note h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rail-form-note p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.form-card {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  background: rgba(255, 254, 250, 0.82);
  box-shadow: none;
}

.form-stepper {
  display: grid;
  grid-template-columns: repeat(var(--step-count, 5), minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 42px;
}

.form-stepper div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #5d6168;
}

.form-stepper div::after {
  position: absolute;
  top: 21px;
  left: calc(50% + 32px);
  width: calc(100% - 46px);
  height: 1px;
  background: #c9c9c9;
  content: "";
}

.form-stepper div:last-child::after {
  display: none;
}

.form-stepper span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
}

.form-stepper strong {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.form-stepper .active span {
  background: linear-gradient(135deg, #c19a3a, #9f7419);
  border-color: var(--brass);
  color: var(--white);
  font-weight: 800;
}

.form-stepper .active strong {
  color: var(--ink);
  font-weight: 800;
}

.form-topline,
.progress {
  display: none;
}

.form-card h2 {
  margin-top: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.05;
  letter-spacing: 0;
}

.form-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.form-eyebrow {
  display: none;
}

.fields {
  grid-template-columns: 1fr 1fr;
  gap: 28px 46px;
  margin-top: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid #d1d1d1;
}

.field.wide {
  grid-column: 1 / -1;
}

.field {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.field em {
  color: #c81919;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form textarea,
.field input,
.field textarea,
.field select {
  min-height: 58px;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
}

.choice-grid button {
  min-height: 46px;
  border-radius: 3px;
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

.choice-grid button.selected {
  background: var(--brass);
  color: var(--white);
}

.form-nav {
  margin-top: 32px;
  align-items: center;
  justify-content: space-between;
}

.form-nav .btn {
  min-width: 178px;
}

.form-nav-left {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.review-row {
  border-radius: 3px;
}

.site-footer {
  display: block;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid #cfcfcf;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1fr;
  gap: clamp(36px, 8vw, 110px);
  padding: clamp(42px, 5vw, 62px) clamp(28px, 5vw, 72px) 34px;
}

.site-footer strong {
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer span,
.footer-links a,
.footer-contact a {
  color: var(--ink);
}

.footer-bio span {
  max-width: 290px;
}

.footer-bio p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0 0;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-contact h2 {
  margin: 0 0 23px;
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact h2::after {
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 13px;
  background: var(--brass);
  content: "";
}

.footer-contact {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, max-content));
  gap: 8px 56px;
  align-content: start;
}

.footer-links a {
  font-family: var(--display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-map {
  height: 72px;
  border-top: 1px solid #cfcfcf;
  background:
    repeating-linear-gradient(162deg, transparent 0 28px, rgba(0, 0, 0, 0.5) 29px 30px, transparent 31px 54px),
    repeating-linear-gradient(18deg, transparent 0 42px, rgba(0, 0, 0, 0.36) 43px 44px, transparent 45px 86px),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(0, 0, 0, 0.38) 71px 72px, transparent 73px 138px),
    var(--white);
}

.footer-bottom {
  display: grid;
  min-height: 44px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.floating-contact {
  display: none;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .home-services,
  .credibility-band,
  .intake-layout {
    grid-template-columns: 1fr;
  }

  .service-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intake-rail {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 58px;
    padding: 0 14px;
    gap: 14px;
  }

  .brand strong {
    font-size: 24px;
  }

  .home-route .site-header .brand {
    display: none;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .mobile-nav {
    grid-column: 1 / -1;
  }

  .home-hero {
    min-height: 690px;
    padding: 38px 20px 72px;
  }

  .home-hero::after {
    background: linear-gradient(90deg, rgba(255, 254, 250, 0.95), rgba(255, 254, 250, 0.62));
  }

  .home-hero h1 {
    font-size: clamp(68px, 18vw, 104px);
  }

  .hero-actions,
  .fields,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-actions .wide {
    width: auto;
  }

  .home-services {
    gap: 26px;
    overflow: hidden;
  }

  .service-card-row,
  .credibility-links,
  .home-paths {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .service-card-row::-webkit-scrollbar,
  .credibility-links::-webkit-scrollbar,
  .home-paths::-webkit-scrollbar {
    display: none;
  }

  .service-card-row,
  .credibility-links {
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 4px 18px 14px;
  }

  .service-card {
    flex: 0 0 min(72vw, 300px);
    min-height: 230px;
    padding: 22px 18px;
    border-left: 1px solid #cecece;
    scroll-snap-align: start;
  }

  .service-card:first-child {
    border-left: 0;
  }

  .credibility-band {
    min-height: 360px;
    align-items: start;
    gap: 26px;
  }

  .credibility-links a {
    flex: 0 0 min(46vw, 210px);
    min-height: 132px;
    padding: 18px 14px;
    gap: 13px;
    border-left: 1px solid rgba(255, 255, 255, 0.32);
    border-top: 0;
    scroll-snap-align: start;
  }

  .credibility-links a:first-child {
    border-left: 0;
  }

  .credibility-links svg {
    width: 44px;
    height: 44px;
  }

  .credibility-links span {
    font-size: 19px;
  }

  .home-paths {
    border-top: 1px solid #cfcfcf;
  }

  .path-panel {
    flex: 0 0 min(86vw, 430px);
    min-height: 315px;
    border-right: 1px solid #cfcfcf;
    scroll-snap-align: start;
  }

  .form-stepper {
    grid-template-columns: repeat(5, 44px);
    justify-content: space-between;
    gap: 4px;
  }

  .form-stepper strong,
  .form-stepper div::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .home-hero-panel {
    max-width: 100%;
  }

  .hero-proof span {
    font-size: 14px;
  }

  .home-services,
  .credibility-band,
  .path-panel,
  .form-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .switcher {
    grid-template-columns: 1fr;
  }

  .zone-map-card {
    min-height: 72vh;
  }

  .zone-map-search {
    width: min(300px, calc(100vw - 56px));
    height: 44px;
    margin: 10px;
  }

  .map-embed {
    height: 72vh;
  }
}

/* Fast feedback pass: streamlined IA, blue-gray palette, cleaner graphics. */
.palette-blue {
  --paper: #f6f8fa;
  --paper-2: #e8edf2;
  --white: #ffffff;
  --brass: #5f7f9a;
  --brass-dark: #243c4e;
  --blue: #e7eef5;
  --dark: #111820;
}

.palette-gray {
  --paper: #f7f7f6;
  --paper-2: #e8e8e5;
  --white: #ffffff;
  --brass: #777d82;
  --brass-dark: #30363a;
  --blue: #eceeed;
  --dark: #141414;
}

.palette-white {
  --paper: #fbfcfd;
  --paper-2: #edf3f8;
  --white: #ffffff;
  --brass: #7899b6;
  --brass-dark: #1e3a52;
  --blue: #edf5fb;
  --dark: #111923;
}

.palette-black {
  --paper: #f4f4f2;
  --paper-2: #e4e6e7;
  --white: #ffffff;
  --brass: #3f5669;
  --brass-dark: #0b0f13;
  --blue: #dfe8ee;
  --dark: #07090b;
}

.btn.primary,
.switcher a.active,
.form-stepper .active span {
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  border-color: var(--brass);
  color: var(--white);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin-top: 16px;
}

.contact-actions .btn {
  min-height: 44px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.74);
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 38px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
}

.footer-contact .contact-method,
.rail-actions .contact-method,
.contact-card .contact-method {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-card .contact-method {
  width: 100%;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rail-actions .contact-method {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.home-services {
  grid-template-columns: 170px minmax(0, 1fr);
}

.service-content {
  display: grid;
  gap: 18px;
}

.service-card-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-note {
  max-width: 820px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #d4d4d4;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.path-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(16, 17, 20, 0.24);
  border-radius: 50%;
}

.path-panel.submit {
  background: var(--blue);
}

.home-paths .btn {
  width: min(360px, 100%);
  justify-self: center;
  align-self: end;
}

.home-paths .btn.primary,
.home-paths .btn.secondary {
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  border-color: var(--brass);
  color: var(--white);
}

.path-panel.list,
.line-city,
.line-building {
  display: none;
}

.footer-map {
  height: 104px;
  border-top: 1px solid #cfcfcf;
  opacity: 0.9;
  background:
    linear-gradient(8deg, transparent 0 47%, rgba(0, 0, 0, 0.28) 48% 49%, transparent 50%),
    linear-gradient(-11deg, transparent 0 44%, rgba(0, 0, 0, 0.23) 45% 46%, transparent 47%),
    repeating-linear-gradient(92deg, transparent 0 56px, rgba(0, 0, 0, 0.34) 57px 58px, transparent 59px 104px),
    repeating-linear-gradient(172deg, transparent 0 38px, rgba(0, 0, 0, 0.22) 39px 40px, transparent 41px 82px),
    var(--white);
}

.floating-contact button,
.floating-contact a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

@media (max-width: 820px) {
  .home-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 20px;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .intro-stats span {
    min-height: 74px;
    border-left: 0;
    border-top: 1px solid #cfd5da;
  }

  .intro-stats span:first-child {
    border-top: 0;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions .btn {
    width: 100%;
  }

  .service-card-row {
    display: flex;
  }
}

.footer-map {
  height: 128px;
  border-top: 1px solid #cfcfcf;
  opacity: 1;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNjAwIDI2MCIgcm9sZT0iaW1nIiBhcmlhLWxhYmVsPSJTdHlsaXplZCBOWUMgc3RyZWV0IG1hcCB3aXRoIGxhYmVscyI+CiAgPHJlY3Qgd2lkdGg9IjE2MDAiIGhlaWdodD0iMjYwIiBmaWxsPSIjZmJmYmY4Ii8+CiAgPHJlY3QgeT0iMCIgd2lkdGg9IjE2MDAiIGhlaWdodD0iMzgiIGZpbGw9IiNlN2YwZjYiLz4KICA8cmVjdCB5PSIyMTgiIHdpZHRoPSIxNjAwIiBoZWlnaHQ9IjQyIiBmaWxsPSIjZTRlZWY1Ii8+CiAgPGcgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSI+CiAgICA8ZyBzdHJva2U9IiNjMmNiZDEiIHN0cm9rZS13aWR0aD0iMiI+CiAgICAgIDxwYXRoIGQ9Ik0wIDY0IEgxNjAwIi8+PHBhdGggZD0iTTAgOTYgSDE2MDAiLz48cGF0aCBkPSJNMCAxMjggSDE2MDAiLz48cGF0aCBkPSJNMCAxNjAgSDE2MDAiLz48cGF0aCBkPSJNMCAxOTIgSDE2MDAiLz4KICAgICAgPHBhdGggZD0iTTc2IDM4IFYyMjAiLz48cGF0aCBkPSJNMTU2IDM4IFYyMjAiLz48cGF0aCBkPSJNMjM2IDM4IFYyMjAiLz48cGF0aCBkPSJNMzE2IDM4IFYyMjAiLz48cGF0aCBkPSJNMzk2IDM4IFYyMjAiLz4KICAgICAgPHBhdGggZD0iTTQ3NiAzOCBWMjIwIi8+PHBhdGggZD0iTTU1NiAzOCBWMjIwIi8+PHBhdGggZD0iTTYzNiAzOCBWMjIwIi8+PHBhdGggZD0iTTcxNiAzOCBWMjIwIi8+PHBhdGggZD0iTTc5NiAzOCBWMjIwIi8+CiAgICAgIDxwYXRoIGQ9Ik04NzYgMzggVjIyMCIvPjxwYXRoIGQ9Ik05NTYgMzggVjIyMCIvPjxwYXRoIGQ9Ik0xMDM2IDM4IFYyMjAiLz48cGF0aCBkPSJNMTExNiAzOCBWMjIwIi8+PHBhdGggZD0iTTExOTYgMzggVjIyMCIvPgogICAgICA8cGF0aCBkPSJNMTI3NiAzOCBWMjIwIi8+PHBhdGggZD0iTTEzNTYgMzggVjIyMCIvPjxwYXRoIGQ9Ik0xNDM2IDM4IFYyMjAiLz48cGF0aCBkPSJNMTUxNiAzOCBWMjIwIi8+CiAgICA8L2c+CiAgICA8ZyBzdHJva2U9IiMxMzE5MjAiIHN0cm9rZS13aWR0aD0iNSI+CiAgICAgIDxwYXRoIGQ9Ik0yMCAyMDYgSDE1ODAiLz4KICAgICAgPHBhdGggZD0iTTM4IDUyIEgxNTYyIi8+CiAgICAgIDxwYXRoIGQ9Ik0xOTggMzggVjIyMCIvPgogICAgICA8cGF0aCBkPSJNNjA0IDM4IFYyMjAiLz4KICAgICAgPHBhdGggZD0iTTk4MiAzOCBWMjIwIi8+CiAgICAgIDxwYXRoIGQ9Ik0xMzM4IDM4IFYyMjAiLz4KICAgIDwvZz4KICAgIDxnIHN0cm9rZT0iIzVmN2Y5YSIgc3Ryb2tlLXdpZHRoPSI0Ij4KICAgICAgPHBhdGggZD0iTTAgMTQ1IEgxNjAwIi8+CiAgICAgIDxwYXRoIGQ9Ik0wIDExMiBIMTYwMCIvPgogICAgPC9nPgogICAgPGcgc3Ryb2tlPSIjMjYzMTNhIiBzdHJva2Utd2lkdGg9IjMiPgogICAgICA8cGF0aCBkPSJNNDQgMjIwIEwzMjYgMzgiLz4KICAgICAgPHBhdGggZD0iTTE5MiAyMjAgTDQ3NCAzOCIvPgogICAgICA8cGF0aCBkPSJNMzQwIDIyMCBMNjIyIDM4Ii8+CiAgICAgIDxwYXRoIGQ9Ik00ODggMjIwIEw3NzAgMzgiLz4KICAgICAgPHBhdGggZD0iTTYzNiAyMjAgTDkxOCAzOCIvPgogICAgICA8cGF0aCBkPSJNNzg0IDIyMCBMMTA2NiAzOCIvPgogICAgICA8cGF0aCBkPSJNOTMyIDIyMCBMMTIxNCAzOCIvPgogICAgICA8cGF0aCBkPSJNMTA4MCAyMjAgTDEzNjIgMzgiLz4KICAgICAgPHBhdGggZD0iTTEyMjggMjIwIEwxNTEwIDM4Ii8+CiAgICA8L2c+CiAgPC9nPgogIDxnIGZvbnQtZmFtaWx5PSJBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmIiBmaWxsPSIjMTExODIwIiBmb250LXNpemU9IjE3IiBmb250LXdlaWdodD0iODAwIiBsZXR0ZXItc3BhY2luZz0iMSI+CiAgICA8dGV4dCB4PSIzNSIgeT0iODUiPkNBTkFMIFNUPC90ZXh0PgogICAgPHRleHQgeD0iMjQ2IiB5PSI4NSI+SE9VU1RPTiBTVDwvdGV4dD4KICAgIDx0ZXh0IHg9IjUxMCIgeT0iODUiPjE0VEggU1Q8L3RleHQ+CiAgICA8dGV4dCB4PSI3NjAiIHk9Ijg1Ij4yM1JEIFNUPC90ZXh0PgogICAgPHRleHQgeD0iMTAyMCIgeT0iODUiPjM0VEggU1Q8L3RleHQ+CiAgICA8dGV4dCB4PSIxMjcwIiB5PSI4NSI+RkRSIERSPC90ZXh0PgogICAgPHRleHQgeD0iMTEyIiB5PSIyMzIiPkhVRFNPTiBSSVZFUjwvdGV4dD4KICAgIDx0ZXh0IHg9IjEyMTAiIHk9IjIzMiI+RUFTVCBSSVZFUjwvdGV4dD4KICAgIDx0ZXh0IHg9IjIxMCIgeT0iMTM3IiB0cmFuc2Zvcm09InJvdGF0ZSgtMzYgMjEwIDEzNykiPkdSRUVOV0lDSCBTVDwvdGV4dD4KICAgIDx0ZXh0IHg9IjQzMiIgeT0iMTM3IiB0cmFuc2Zvcm09InJvdGF0ZSgtMzYgNDMyIDEzNykiPkJST0FEV0FZPC90ZXh0PgogICAgPHRleHQgeD0iNjcwIiB5PSIxMzciIHRyYW5zZm9ybT0icm90YXRlKC0zNiA2NzAgMTM3KSI+TEFGQVlFVFRFIFNUPC90ZXh0PgogICAgPHRleHQgeD0iOTEwIiB5PSIxMzciIHRyYW5zZm9ybT0icm90YXRlKC0zNiA5MTAgMTM3KSI+Qk9XRVJZPC90ZXh0PgogICAgPHRleHQgeD0iMTE3MCIgeT0iMTM3IiB0cmFuc2Zvcm09InJvdGF0ZSgtMzYgMTE3MCAxMzcpIj5BVkVOVUUgQTwvdGV4dD4KICA8L2c+CiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzk2IDE0NikiPgogICAgPGNpcmNsZSBjeD0iMCIgY3k9IjAiIHI9IjE4IiBmaWxsPSIjMDcwOTBiIi8+CiAgICA8Y2lyY2xlIGN4PSIwIiBjeT0iMCIgcj0iNyIgZmlsbD0iI2ZmZiIvPgogICAgPHBhdGggZD0iTTAgMTggTC0xMCA0NCBMMTUgMjIgWiIgZmlsbD0iIzA3MDkwYiIvPgogICAgPHRleHQgeD0iMzAiIHk9IjciIGZvbnQtZmFtaWx5PSJBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmIiBmb250LXNpemU9IjE4IiBmb250LXdlaWdodD0iOTAwIiBmaWxsPSIjMDcwOTBiIiBsZXR0ZXItc3BhY2luZz0iMSI+T05FIFdPUkxEIFRSQURFPC90ZXh0PgogIDwvZz4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNDQwIDE0OCkiPgogICAgPGNpcmNsZSBjeD0iMjgiIGN5PSIyOCIgcj0iMjQiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzA3MDkwYiIgc3Ryb2tlLXdpZHRoPSIzIi8+CiAgICA8cGF0aCBkPSJNMjggOCBMMzYgMjggTDI4IDQ4IEwyMCAyOCBaIiBmaWxsPSIjMDcwOTBiIi8+CiAgICA8dGV4dCB4PSI2MSIgeT0iMzQiIGZvbnQtZmFtaWx5PSJBcmlhbCwgSGVsdmV0aWNhLCBzYW5zLXNlcmlmIiBmb250LXNpemU9IjE4IiBmb250LXdlaWdodD0iOTAwIiBmaWxsPSIjMDcwOTBiIj5OPC90ZXh0PgogIDwvZz4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTYwMCIgaGVpZ2h0PSIyNjAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2Q2ZDhkYSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=") center / auto 100% repeat-x #fff;
}

@media (max-width: 820px) {
  .credibility-band {
    min-height: auto !important;
    padding-top: 28px !important;
    padding-bottom: 30px !important;
    gap: 20px !important;
  }

  .credibility-links {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding: 8px 0 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .credibility-links a {
    min-width: 0 !important;
    min-height: 94px !important;
    padding: 12px 4px !important;
    gap: 9px !important;
    border-top: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.28) !important;
    scroll-snap-align: none !important;
  }

  .credibility-links a:first-child {
    border-left: 0 !important;
  }

  .credibility-links svg {
    width: 32px !important;
    height: 32px !important;
  }

  .credibility-links span {
    font-size: clamp(10px, 2.7vw, 14px) !important;
    letter-spacing: 0.05em !important;
  }

  .home-services {
    overflow: visible !important;
  }

  .service-card-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding: 8px 0 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .service-card {
    min-width: 0 !important;
    min-height: 104px !important;
    padding: 12px 4px !important;
    gap: 9px !important;
    border-top: 0 !important;
    border-left: 1px solid #cecece !important;
    scroll-snap-align: none !important;
  }

  .service-card:first-child {
    border-left: 0 !important;
  }

  .service-card svg {
    width: 32px !important;
    height: 32px !important;
  }

  .service-card h3 {
    font-size: clamp(10px, 2.7vw, 14px) !important;
    letter-spacing: 0.05em !important;
  }

  .service-card p {
    display: none !important;
  }

  .services-note {
    margin-top: 12px !important;
    padding-top: 14px !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .home-paths {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .path-panel {
    flex: none !important;
    display: grid !important;
    grid-template-rows: auto auto auto 1fr auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 220px !important;
    padding: 24px 12px !important;
    gap: 12px !important;
    border-right: 1px solid #cfcfcf !important;
    scroll-snap-align: none !important;
  }

  .path-panel h2 {
    font-size: clamp(18px, 5.5vw, 28px) !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .path-panel p {
    font-size: 14px !important;
    line-height: 1.28 !important;
  }

  .path-panel .btn {
    width: 100% !important;
    max-width: 100% !important;
    align-self: end !important;
    min-height: 42px !important;
    padding: 0 8px !important;
    font-size: 11px !important;
    white-space: normal !important;
  }

  .path-icon {
    width: 54px !important;
    height: 54px !important;
  }

  .path-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .footer-map {
    height: 92px !important;
    background-position: 45% center !important;
    background-size: auto 100% !important;
  }

  .home-route .brand {
    display: none !important;
  }

  .home-route .site-header {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

.home-route .menu-toggle {
    justify-self: start !important;
  }
}

.home-hero-image {
  object-position: 70% center;
}

@media (max-width: 820px) {
  .home-hero-image {
    object-position: 78% center !important;
  }
}

@media (max-width: 520px) {
  .home-hero-image {
    object-position: 80% center !important;
  }
}

/* Final visual cleanup for the live review build. */
.credibility-band {
  position: relative !important;
  min-height: clamp(360px, 45vw, 560px) !important;
  padding: clamp(34px, 6vw, 72px) clamp(24px, 5vw, 72px) !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 82% 16%, rgba(95, 127, 154, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 30%),
    #050607 !important;
  border-top: 1px solid #101010 !important;
  border-bottom: 1px solid #d7d7d7 !important;
}

.credibility-bg {
  display: none !important;
}

.credibility-band::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 88px 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 72px !important;
  opacity: 0.35 !important;
  pointer-events: none !important;
}

.credibility-band h2,
.credibility-links {
  position: relative !important;
  z-index: 1 !important;
}

.credibility-links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  width: 100% !important;
  border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.credibility-links a {
  display: grid !important;
  min-width: 0 !important;
  min-height: 210px !important;
  place-items: center !important;
  align-content: center !important;
  gap: 18px !important;
  color: #fff !important;
  text-decoration: none !important;
  border-left: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.credibility-links a:first-child {
  border-left: 0 !important;
}

.footer-map {
  height: 54px !important;
  opacity: 1 !important;
  border-top: 1px solid #d6d6d6 !important;
  border-bottom: 1px solid #d6d6d6 !important;
  background: url("/assets/mockup-map-strip-aIsFnYM9.png") center / auto 100% repeat-x #fafafa !important;
}

.footer-bottom {
  min-height: 56px !important;
  letter-spacing: 0.16em !important;
}

@media (max-width: 820px) {
  .credibility-band {
    min-height: 330px !important;
    padding: 28px 18px 30px !important;
    gap: 22px !important;
  }

  .credibility-band h2 {
    font-size: clamp(54px, 17vw, 86px) !important;
    margin-bottom: 24px !important;
  }

  .credibility-links {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .credibility-links a {
    min-height: 132px !important;
    padding: 14px 4px !important;
    gap: 10px !important;
  }

  .credibility-links svg {
    width: 38px !important;
    height: 38px !important;
  }

  .credibility-links span {
    font-size: clamp(11px, 3vw, 16px) !important;
    letter-spacing: 0.08em !important;
  }

  .footer-map {
    height: 42px !important;
    background-position: center !important;
    background-size: auto 100% !important;
  }

  .footer-bottom {
    min-height: 52px !important;
    font-size: 11px !important;
    letter-spacing: 0.14em !important;
  }
}

/* Clients logo and credit system */
.clients-page {
  padding-top: 54px;
}

.page-status-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 28px;
  padding: 14px 18px;
  color: #f5f8f7;
  background: #435356;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}

.page-status-note strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-status-note span {
  color: rgba(245, 248, 247, 0.82);
}

@media (max-width: 700px) {
  .page-status-note {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
  }
}

.clients-hero {
  display: block;
  margin-bottom: 46px;
}

.clients-hero-copy {
  max-width: 920px;
}

.clients-hero-copy > span {
  display: block;
  color: var(--brass-dark);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.clients-hero-copy h1,
.logo-showcase h2,
.title-credit-wall h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.clients-hero-copy h1 {
  font-size: 90px;
}

.clients-hero-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.35;
}

.clients-hero-copy .inline-actions {
  margin-top: 28px;
}

.floating-credit-field {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(94px, 1fr);
  gap: 14px;
  min-height: 610px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(180deg, #050607, #111316);
  border: 1px solid #161616;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  isolation: isolate;
}

.floating-credit-field::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 33.333% 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 25%;
  content: "";
  opacity: 0.28;
}

.credit-field-core {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  min-height: 94px;
  place-items: center;
  align-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.credit-field-core strong {
  font-family: var(--display);
  font-size: 62px;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.credit-field-core span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.floating-credit {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  min-height: 94px;
  place-items: center;
  padding: 16px 18px;
}

.logo-credit {
  align-content: center;
  gap: 7px;
  background: #fffefb;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.logo-credit img {
  display: block;
  max-width: 86%;
  max-height: 48px;
  object-fit: contain;
}

.hero-logo-name {
  color: #27333c;
  font-family: var(--display);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.78;
}

.title-credit {
  gap: 5px;
  color: var(--white);
  text-align: center;
  background: rgba(5, 5, 5, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.title-credit strong,
.title-credit-tile strong {
  font-family: var(--display);
  font-size: 25px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.title-credit span,
.title-credit-tile span,
.logo-tile span,
.logo-group h3 {
  font-family: var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.title-credit span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

@keyframes controlled-logo-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }

  50% {
    transform: translate(-50%, -50%) translate3d(var(--dx), var(--dy), 0);
  }
}

.logo-showcase,
.title-credit-wall {
  padding: 56px 0 0;
  border-top: 1px solid #d4d4d4;
}

.logo-showcase h2,
.title-credit-wall h2 {
  font-size: 60px;
}

.logo-showcase-head,
.title-credit-head {
  align-items: end;
  margin-bottom: 22px;
}

.logo-showcase-head p,
.title-credit-head p {
  max-width: 460px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.credits-reveal-stack {
  display: grid;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid #d4d4d4;
}

.credits-reveal-section {
  border: 1px solid #d4d4d4;
  background: var(--white);
}

.credits-reveal-trigger {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 24px clamp(18px, 4vw, 42px);
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.credits-reveal-trigger span {
  font-family: var(--display);
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.credits-reveal-trigger b {
  display: grid;
  min-width: 76px;
  min-height: 42px;
  place-items: center;
  color: #435356;
  border: 1px solid #435356;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.credits-reveal-trigger svg {
  transition: transform 180ms ease;
}

.credits-reveal-section.is-open .credits-reveal-trigger svg {
  transform: rotate(180deg);
}

.credits-reveal-body {
  border-top: 1px solid #d4d4d4;
  background: #fff;
}

.credits-preview-frame {
  position: relative;
  overflow: hidden;
}

.logo-preview .credits-preview-frame {
  max-height: none;
}

.poster-preview .credits-preview-frame {
  max-height: 756px;
}

.credits-reveal-body.is-expanded .credits-preview-frame {
  max-height: none;
}

.credits-show-more {
  display: grid;
  width: 100%;
  min-height: 58px;
  place-items: center;
  color: #f5f8f7;
  background: #435356;
  border: 0;
  border-top: 1px solid #d4d4d4;
  cursor: pointer;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.clients-compact-page .clients-hero {
  margin-bottom: 28px;
}

.compact-credit-stack {
  display: grid;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid #d4d4d4;
}

.compact-credit-section {
  border: 1px solid #d4d4d4;
  background: #fff;
}

.compact-credit-preview {
  display: grid;
  gap: 20px;
  padding: clamp(18px, 3vw, 30px);
}

.compact-credit-heading {
  display: block;
}

.compact-credit-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 70px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compact-credit-expand,
.compact-credit-close {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 0 18px;
  color: #f5f8f7;
  background: #435356;
  border: 1px solid #435356;
  cursor: pointer;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.compact-credit-expand {
  width: 100%;
}

.mini-credit-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: #d4d4d4;
}

.mini-logo-mark,
.mini-poster-mark {
  display: grid;
  min-width: 0;
  place-items: center;
  background: #fff;
}

.mini-logo-mark {
  min-height: 124px;
  padding: 16px;
}

.mini-logo-mark img {
  display: block;
  width: min(178px, 92%);
  max-height: 78px;
  object-fit: contain;
}

.mini-poster-mark {
  aspect-ratio: 2 / 3;
  padding: 0;
  overflow: hidden;
}

.mini-poster-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-credit-expanded {
  display: grid;
}

.clients-compact-page .poster-wall {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: #fff;
}

.clients-compact-page .poster-tile {
  min-height: auto;
  aspect-ratio: 2 / 3;
}

.clients-compact-page .poster-tile img {
  height: 100%;
  object-fit: contain;
}

.film-credit-link-row {
  display: flex;
  justify-content: center;
  padding: 18px 18px 20px;
  border-bottom: 1px solid #d4d4d4;
  background: #fff;
}

.film-credit-link-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #111517;
  color: #111517;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.compact-credit-close {
  grid-template-columns: 1fr auto;
  justify-items: start;
  width: 100%;
  min-height: 66px;
  padding: 0 clamp(18px, 3vw, 30px);
  border: 0;
  border-bottom: 1px solid #d4d4d4;
  text-align: left;
}

.compact-credit-close span {
  font-size: 24px;
}

.compact-credit-close b {
  font-size: 15px;
}

.logo-load-more {
  border-top-color: #111517;
}

.logo-grid-combined {
  display: flex;
  flex-wrap: wrap;
  border-top: 0;
  border-left: 0;
}

.logo-grid-combined .logo-tile {
  box-sizing: border-box;
  width: 16.666%;
  min-height: 162px;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
}

.poster-wall {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  background: #d4d4d4;
}

.poster-tile {
  display: grid;
  min-height: 188px;
  place-items: center;
  padding: 12px;
  background: #fff;
}

.poster-tile img {
  display: block;
  width: 100%;
  height: 164px;
  object-fit: contain;
}

.poster-tile a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: inherit;
}

.logo-group-list {
  border-bottom: 1px solid #d4d4d4;
}

.logo-group {
  display: block;
  border-top: 1px solid #d4d4d4;
  background: var(--white);
}

.logo-group h3 {
  display: grid;
  margin: 0;
  min-height: auto;
  place-items: center;
  padding: 18px 18px 15px;
  border-bottom: 1px solid #d4d4d4;
  color: var(--brass-dark);
  font-size: 16px;
  line-height: 1.08;
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.logo-grid.logo-grid-combined {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: none;
}

.logo-tile {
  display: grid;
  min-width: 0;
  min-height: 148px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  background: #fff;
}

.logo-tile.wide {
  grid-column: span 1;
}

.logo-tile-empty {
  pointer-events: none;
}

.logo-tile img {
  display: block;
  width: min(246px, 88%);
  max-height: 96px;
  object-fit: contain;
}

.logo-tile.needs-name img {
  max-height: 78px;
}

.logo-tile.wide img {
  width: min(304px, 94%);
  max-height: 104px;
}

.logo-jerrybruckheimertelevision img,
.logo-aliceolivia img,
.logo-digitalkitchen img,
.logo-hogarth img,
.logo-rwest img,
.logo-setcreative img,
.logo-trelegy img {
  width: min(294px, 94%);
  max-height: 92px;
}

.logo-a24 img,
.logo-claude img,
.logo-dreamworks img {
  width: min(258px, 94%);
  max-height: 92px;
}

.logo-apple img,
.logo-nike img {
  width: min(132px, 76%);
  max-height: 92px;
}

.logo-mercedesbenz img {
  width: min(126px, 72%);
  max-height: 78px;
}

.logo-google img,
.logo-calvinklein img,
.logo-fxnetworks img,
.logo-bluecrossblueshield img,
.logo-dompérignon img,
.logo-domperignon img,
.logo-eli-lilly img,
.logo-elililly img,
.logo-gfiber img,
.logo-rivian img,
.logo-tumi img,
.logo-anthropic img,
.logo-littlegemproductions img,
.logo-brandupcomedy img {
  width: min(194px, 94%);
  max-height: 82px;
}

.logo-tile span {
  color: #27333c;
  font-size: 10px;
  line-height: 1;
  opacity: 0.78;
}

.title-credit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
}

.title-credit-tile {
  display: grid;
  min-height: 128px;
  align-content: center;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
}

.title-credit-tile:nth-child(4n + 1) {
  color: var(--white);
  background: #050505;
}

.title-credit-tile strong {
  font-size: 30px;
}

.title-credit-tile span {
  color: inherit;
  font-size: 13px;
  opacity: 0.68;
}

@media (prefers-reduced-motion: reduce) {
  .floating-credit {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .clients-hero {
    grid-template-columns: 1fr;
  }

  .clients-hero-copy h1 {
    font-size: 76px;
  }

  .floating-credit-field {
    min-height: 560px;
  }

  .logo-group h3 {
    padding: 18px 0 14px;
    text-align: center;
  }

  .logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .poster-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .logo-grid-combined .logo-tile {
    width: 25%;
  }

  .logo-tile-empty {
    display: none;
  }
}

@media (max-width: 820px) {
  .clients-page {
    padding-top: 34px;
  }

  .clients-hero {
    gap: 30px;
    margin-bottom: 38px;
  }

  .clients-hero-copy h1 {
    font-size: 58px;
  }

  .clients-hero-copy p {
    font-size: 18px;
  }

  .credits-reveal-trigger {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 88px;
  }

  .credits-reveal-trigger svg {
    display: none;
  }

  .credits-reveal-trigger b {
    min-width: 64px;
    min-height: 38px;
    font-size: 13px;
  }

  .compact-credit-heading {
    display: block;
  }

  .mini-credit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mini-poster-strip .mini-poster-mark:nth-child(n + 7) {
    display: none;
  }

  .mini-logo-mark {
    min-height: 112px;
  }

  .poster-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clients-compact-page .poster-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo-grid-combined .logo-tile {
    width: 33.333%;
    min-height: 142px;
  }

  .floating-credit-field {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: auto;
    padding: 14px;
  }

  .credit-field-core,
  .floating-credit {
    position: static;
    width: auto;
    min-height: 92px;
    transform: none;
    animation: none;
  }

  .credit-field-core {
    grid-column: 1 / -1;
    width: auto;
    height: auto;
    padding: 18px;
  }

  .credit-field-core strong {
    font-size: 48px;
  }

  .title-credit strong {
    font-size: 20px;
  }

  .logo-showcase,
  .title-credit-wall {
    padding-top: 38px;
  }

  .logo-showcase h2,
  .title-credit-wall h2 {
    font-size: 46px;
  }

  .logo-showcase-head,
  .title-credit-head {
    display: grid;
  }

  .logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .title-credit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .clients-hero-copy h1 {
    font-size: 44px;
  }

  .clients-hero-copy p {
    font-size: 17px;
  }

  .floating-credit-field {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-grid-combined .logo-tile {
    width: 33.333%;
    min-height: 136px;
  }

  .title-credit-grid {
    grid-template-columns: 1fr;
  }

  .logo-tile.wide {
    grid-column: span 1;
  }

  .logo-showcase h2,
  .title-credit-wall h2 {
    font-size: 38px;
  }
}

/* Experience band: photo-led, readable, and less blunt than "Proof". */
.credibility-band {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.50) 43%, rgba(0, 0, 0, 0.60) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.56)),
    url("/assets/experience-production-night-v2-BCu7hnvP.png") center 50% / cover no-repeat #050607 !important;
}

.credibility-band::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 74%, rgba(0, 0, 0, 0.25)) !important;
  opacity: 0.42 !important;
}

.credibility-band h2 {
  font-size: clamp(74px, 10vw, 142px) !important;
  letter-spacing: 0.015em !important;
}

@media (max-width: 820px) {
  .credibility-band {
    min-height: 330px !important;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
      url("/assets/experience-production-night-v2-BCu7hnvP.png") center center / cover no-repeat #050607 !important;
  }

  .credibility-band h2 {
    font-size: clamp(42px, 13vw, 70px) !important;
    margin-bottom: 22px !important;
  }
}

/* Header blessing mark. */
.site-header {
  grid-template-columns: auto 1fr auto auto auto !important;
}

.bh-mark {
  position: fixed;
  top: calc(10px + env(safe-area-inset-top, 0px));
  right: 22px;
  z-index: 160;
  justify-self: end;
  color: rgba(255, 254, 250, 0.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(14, 28, 38, 0.45), 0 0 1px rgba(14, 28, 38, 0.8);
}

@media (min-width: 1181px) {
  .bh-mark {
    top: 12px;
    right: clamp(26px, 3vw, 54px);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  .bh-mark {
    grid-column: 3;
    grid-row: 1;
    font-size: 16px;
  }
}

/* Experience section polish: more photo, more light, more depth. */
.credibility-band {
  min-height: clamp(430px, 54vw, 660px) !important;
  padding: clamp(42px, 6vw, 78px) clamp(28px, 5vw, 72px) clamp(40px, 6vw, 74px) !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.34) 33%, rgba(0, 0, 0, 0.10) 59%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.00) 42%, rgba(0, 0, 0, 0.52) 100%),
    url("/assets/experience-production-night-v2-BCu7hnvP.png") center 49% / cover no-repeat #050607 !important;
}

.credibility-band::before {
  z-index: 0 !important;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.16) 25%, transparent calc(25% + 1px), transparent 100%) 0 0 / 25% 100%,
    linear-gradient(180deg, transparent 0, transparent 58%, rgba(255, 255, 255, 0.18) 58.2%, transparent 58.55%, transparent 91%, rgba(255, 255, 255, 0.14) 91.2%, transparent 91.55%) !important;
  opacity: 0.62 !important;
}

.credibility-band::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse at 84% 29%, rgba(255, 255, 255, 0.20), transparent 19%),
    radial-gradient(ellipse at 58% 65%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(105deg, transparent 0 56%, rgba(255, 255, 255, 0.10) 64%, transparent 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.48) 100%) !important;
  mix-blend-mode: screen;
  opacity: 0.76;
}

.credibility-band h2 {
  z-index: 2 !important;
  color: #fff !important;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.05), 0 22px 56px rgba(0, 0, 0, 0.78) !important;
}

.credibility-links {
  z-index: 2 !important;
  background: rgba(0, 0, 0, 0.10) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12) !important;
}

.credibility-links a {
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

.credibility-links a:hover,
.credibility-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 24px 70px rgba(0, 0, 0, 0.32) !important;
  transform: translateY(-3px);
  outline: none;
}

.credibility-links a:hover svg,
.credibility-links a:focus-visible svg {
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.25));
}

@media (max-width: 820px) {
  .credibility-band {
    min-height: 360px !important;
    padding: 30px 18px 32px !important;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.54)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.50)),
      url("/assets/experience-production-night-v2-BCu7hnvP.png") 58% center / cover no-repeat #050607 !important;
  }

  .credibility-band::after {
    background:
      radial-gradient(ellipse at 84% 30%, rgba(255, 255, 255, 0.20), transparent 22%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.56)) !important;
    opacity: 0.72;
  }
}

/* Footer map: single clean plate, no warped repeated strip. */
.footer-map {
  height: 92px !important;
  opacity: 1 !important;
  border-top: 1px solid #d3d8dc !important;
  border-bottom: 1px solid #d3d8dc !important;
  background: url("/assets/footer-nyc-map-plate-CwnMvLq-.svg") center center / cover no-repeat #fbfcfc !important;
}

@media (max-width: 820px) {
  .footer-map {
    height: 74px !important;
    background-position: 48% center !important;
    background-size: auto 100% !important;
  }
}

/* Reliable NYC radius map: no Google JS dependency, no broken gray panel. */
.zone-map-card {
  min-height: 620px !important;
  padding: 18px !important;
  background: #f8fafb !important;
  border: 1px solid #cdd5da !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.zone-map-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  margin-bottom: 14px;
}

/* Restore the mockup idea: a real black cinematic image behind the Experience links. */
.credibility-band {
  min-height: clamp(440px, 55vw, 680px) !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.30) 36%, rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.16) 46%, rgba(0, 0, 0, 0.62) 100%),
    url("/assets/experience-production-night-v2-BCu7hnvP.png") center 48% / cover no-repeat #030405 !important;
}

.credibility-band::before {
  background:
    linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.24) 25%, transparent calc(25% + 1px), transparent 100%) 0 0 / 25% 100%,
    linear-gradient(180deg, transparent 0, transparent 58%, rgba(255, 255, 255, 0.24) 58.2%, transparent 58.55%, transparent 90%, rgba(255, 255, 255, 0.18) 90.2%, transparent 90.55%) !important;
  opacity: 0.58 !important;
}

.credibility-band::after {
  background:
    radial-gradient(ellipse at 84% 28%, rgba(255, 255, 255, 0.14), transparent 21%),
    radial-gradient(ellipse at 58% 62%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.26) 100%) !important;
  mix-blend-mode: screen !important;
  opacity: 0.62 !important;
}

.credibility-links {
  background: rgba(0, 0, 0, 0.03) !important;
}

@media (max-width: 820px) {
  .credibility-band {
    min-height: 390px !important;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.58)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.54)),
      url("/assets/experience-production-night-v2-BCu7hnvP.png") 57% center / cover no-repeat #030405 !important;
  }
}

.zone-map-toolbar .btn {
  min-height: 48px;
  white-space: nowrap;
}

.zone-map-search {
  position: static !important;
  width: 100% !important;
  height: 48px !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: 1px solid #aeb9c0 !important;
  background: #fff !important;
}

.zone-map-static {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(232, 241, 246, 0.95) 0 18%, transparent 18% 82%, rgba(232, 241, 246, 0.95) 82% 100%),
    linear-gradient(90deg, rgba(17, 24, 32, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgba(17, 24, 32, 0.08) 1px, transparent 1px) 0 0 / 58px 58px,
    #fff;
  border: 1px solid #d3dbe0;
}

.zone-map-static::before {
  content: "";
  position: absolute;
  inset: -15% -10%;
  background:
    linear-gradient(31deg, transparent 0 45%, rgba(17, 24, 32, 0.28) 45.2% 45.8%, transparent 46%),
    linear-gradient(-26deg, transparent 0 45%, rgba(17, 24, 32, 0.20) 45.2% 45.8%, transparent 46%),
    repeating-linear-gradient(68deg, transparent 0 70px, rgba(17, 24, 32, 0.22) 72px 75px, transparent 77px 150px);
  opacity: 0.45;
}

.zone-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(17, 24, 32, 0.50) 48.2% 48.8%, transparent 49%),
    linear-gradient(0deg, transparent 0 50%, rgba(17, 24, 32, 0.24) 50.2% 50.7%, transparent 51%);
  opacity: 0.44;
}

.zone-ring {
  position: absolute;
  left: 50%;
  top: 51%;
  display: grid;
  place-items: start end;
  border-radius: 50%;
  border: 4px solid rgba(38, 82, 113, 0.72);
  transform: translate(-50%, -50%);
}

.zone-ring strong {
  margin: 8% 18% 0 0;
  padding: 5px 9px;
  background: #fff;
  color: #14364e;
  border: 1px solid rgba(20, 54, 78, 0.32);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.zone-25 {
  width: min(56vw, 470px);
  aspect-ratio: 1;
  border-color: rgba(49, 100, 133, 0.72);
}

.zone-30 {
  width: min(68vw, 570px);
  aspect-ratio: 1;
  border-color: rgba(9, 24, 35, 0.54);
}

.zone-center {
  position: absolute;
  left: 50%;
  top: 51%;
  display: grid;
  justify-items: center;
  gap: 7px;
  transform: translate(-50%, -50%);
  color: #071018;
  text-align: center;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zone-center svg {
  width: 42px;
  height: 42px;
  padding: 8px;
  color: #fff;
  background: #071018;
  border-radius: 50%;
}

.zone-label,
.zone-river {
  position: absolute;
  z-index: 1;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.zone-label {
  color: rgba(7, 16, 24, 0.64);
  font-size: 17px;
}

.zone-river {
  color: rgba(20, 54, 78, 0.55);
  font-size: 14px;
  writing-mode: vertical-rl;
}

.zone-river.hudson {
  left: 7%;
  top: 22%;
}

.zone-river.east {
  right: 7%;
  top: 24%;
}

.zone-label.manhattan {
  left: 43%;
  top: 24%;
}

.zone-label.queens {
  right: 20%;
  top: 40%;
}

.zone-label.brooklyn {
  right: 25%;
  bottom: 18%;
}

.zone-label.bronx {
  right: 31%;
  top: 15%;
}

.zone-label.jersey {
  left: 18%;
  bottom: 20%;
}

@media (max-width: 820px) {
  .zone-map-card {
    min-height: auto !important;
    padding: 12px !important;
  }

  .zone-map-toolbar {
    grid-template-columns: 1fr;
  }

  .zone-map-static {
    min-height: min(72vh, 540px);
  }

  .zone-25 {
    width: 74vw;
  }

  .zone-30 {
    width: 92vw;
  }

  .zone-label {
    font-size: 12px;
  }

  .zone-river {
    font-size: 11px;
  }
}

/* Current map treatment: real map embeds only, with no fabricated street art. */
.footer-map {
  height: 118px !important;
  overflow: hidden !important;
  border-top: 1px solid #d5dce1 !important;
  border-bottom: 1px solid #d5dce1 !important;
  background: #edf3f7 !important;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 168px;
  margin-top: -26px;
  border: 0;
  filter: grayscale(0.85) contrast(1.08) saturate(0.78);
}

.real-zone-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid #d1d9df;
  background: #edf3f7;
}

.real-zone-map iframe {
  display: block;
  width: 100%;
  height: 540px;
  border: 0;
  filter: grayscale(0.35) contrast(1.04) saturate(0.9);
}

.real-map-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 24px);
  padding: 10px 12px;
  border: 1px solid rgba(10, 18, 24, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(7, 16, 24, 0.78);
  font-size: 13px;
  line-height: 1.2;
}

.zone-map-card {
  min-height: auto !important;
}

/* Mobile intake polish: centered icons, balanced tabs, and clean form spacing. */
.switcher a {
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 0 22px;
}

.switcher a svg {
  flex: 0 0 auto;
}

.rail-feature {
  align-items: start;
  grid-template-columns: 96px minmax(0, 1fr) !important;
  gap: 28px !important;
  padding: 40px 0 !important;
}

.rail-feature > svg {
  justify-self: center;
  width: 72px !important;
  height: 72px !important;
  padding: 14px !important;
}

.rail-feature h2 {
  max-width: 100%;
}

.rail-feature p {
  max-width: 42rem;
}

@media (max-width: 820px) {
  .intake-shell {
    padding-inline: 18px !important;
  }

  .intake-layout {
    gap: 28px !important;
  }

  .switcher {
    width: 100%;
    margin-top: 26px !important;
  }

  .switcher a {
    min-height: 72px;
    padding: 0 22px;
    gap: 14px;
    font-size: 17px;
  }

  .switcher a svg {
    width: 25px;
    height: 25px;
  }

  .rail-feature {
    grid-template-columns: 94px minmax(0, 1fr) !important;
    gap: 28px !important;
    padding: 38px 0 !important;
  }

  .rail-feature > svg {
    width: 76px !important;
    height: 76px !important;
    padding: 15px !important;
  }

  .rail-feature h2 {
    margin-bottom: 12px !important;
    font-size: 31px !important;
    line-height: 1.05 !important;
  }

  .rail-feature p {
    font-size: 20px !important;
    line-height: 1.45 !important;
  }

  .form-card {
    padding: 28px 24px 32px !important;
    border-radius: 10px !important;
  }

  .form-stepper {
    gap: 10px !important;
    margin-bottom: 36px !important;
  }

  .form-stepper span {
    width: 54px !important;
    height: 54px !important;
    font-size: 24px !important;
  }

  .form-stepper div::after,
  .form-stepper strong {
    display: none !important;
  }

  .footer-map {
    height: 112px !important;
  }

  .footer-map iframe {
    height: 152px;
    margin-top: -22px;
  }

  .real-zone-map {
    min-height: min(70vh, 520px);
  }

  .real-zone-map iframe {
    height: min(70vh, 520px);
  }

  .real-map-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: center;
    text-align: center;
  }
}

/* Footer map: real black-and-white static map screenshot, no controls. */
.footer-map {
  height: 118px !important;
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  border-top: 1px solid #d5dce1 !important;
  border-bottom: 1px solid #d5dce1 !important;
  background: url("/assets/footer-map-screenshot-bw-CR2XQbZz.png") center center / cover no-repeat #f7f8f8 !important;
}

.footer-map iframe {
  display: none !important;
}

.footer-map-cta {
  position: absolute !important;
  right: clamp(14px, 3vw, 42px) !important;
  bottom: clamp(12px, 2vw, 20px) !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.76) !important;
  background: rgba(18, 31, 42, 0.82) !important;
  color: #fffefa !important;
  font-family: var(--display) !important;
  font-size: clamp(10px, 1vw, 13px) !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: 0 14px 32px rgba(18, 31, 42, 0.24) !important;
  pointer-events: none !important;
}

@media (max-width: 820px) {
  .footer-map {
    height: 96px !important;
    background-position: 43% center !important;
    background-size: auto 100% !important;
  }

  .footer-map-cta {
    right: 10px !important;
    bottom: 9px !important;
    min-height: 30px !important;
    max-width: calc(100% - 20px) !important;
    padding: 0 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.035em !important;
    white-space: nowrap !important;
  }
}

/* Desktop emergency polish: keep Experience title and nav grid from colliding. */
@media (min-width: 821px) {
  .bh-mark {
    position: relative !important;
    top: -30px !important;
    align-self: start !important;
  }

  .credibility-band {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    align-content: center !important;
    align-items: stretch !important;
    gap: clamp(46px, 5vw, 84px) !important;
    min-height: clamp(560px, 42vw, 740px) !important;
    padding: clamp(72px, 6vw, 112px) clamp(48px, 5vw, 88px) clamp(66px, 6vw, 104px) !important;
  }

  .credibility-band h2 {
    grid-column: 1 !important;
    grid-row: 1 !important;
    max-width: min(940px, 58vw) !important;
    margin: 0 !important;
    font-size: clamp(76px, 7.4vw, 144px) !important;
    line-height: 0.84 !important;
  }

  .credibility-links {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: end !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .credibility-links a {
    min-height: clamp(156px, 10vw, 206px) !important;
    padding: 20px 18px !important;
  }
}

.date-list-field,
.tag-autocomplete,
.vehicle-list-field,
.file-upload-field {
  display: grid;
  gap: 12px;
}

/* Experience image tuning: reduce the dead-dark left edge without losing contrast. */
@media (min-width: 821px) {
  .credibility-band {
    background:
      radial-gradient(ellipse at 24% 42%, rgba(255, 255, 255, 0.11), transparent 30%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.24) 34%, rgba(0, 0, 0, 0.13) 58%, rgba(0, 0, 0, 0.50) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.10) 46%, rgba(0, 0, 0, 0.56) 100%),
      url("/assets/experience-production-night-v2-BCu7hnvP.png") 54% 48% / 112% auto no-repeat #030405 !important;
  }

  .credibility-band::after {
    background:
      radial-gradient(ellipse at 26% 40%, rgba(255, 255, 255, 0.12), transparent 31%),
      radial-gradient(ellipse at 84% 28%, rgba(255, 255, 255, 0.13), transparent 21%),
      radial-gradient(ellipse at 58% 62%, rgba(255, 255, 255, 0.08), transparent 32%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.24) 100%) !important;
    opacity: 0.66 !important;
  }
}

/* Contact grid: four equal tiles, no orphan rows. */
.footer-contact {
  align-content: start !important;
}

.footer-contact h2 {
  margin-bottom: 34px !important;
}

.footer-contact .contact-method,
.footer-contact a[href^="mailto:"] {
  grid-column: auto !important;
  min-height: clamp(88px, 7vw, 108px) !important;
  justify-content: center !important;
  gap: 18px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.footer-contact .contact-method:nth-of-type(odd),
.footer-contact a[href^="mailto:"] {
  border-left: 1px solid #cbd4d9 !important;
}

.footer-contact .contact-method:nth-of-type(-n + 2) {
  border-top: 1px solid #cbd4d9 !important;
}

.footer-contact .contact-method:nth-of-type(2),
.footer-contact a[href^="mailto:"] {
  border-right: 1px solid #cbd4d9 !important;
}

.footer-contact .contact-method:nth-of-type(2) {
  border-left: 1px solid #cbd4d9 !important;
}

.footer-contact .contact-method:nth-of-type(n + 3),
.footer-contact a[href^="mailto:"] {
  border-bottom: 1px solid #cbd4d9 !important;
}

.footer-contact .contact-method:nth-of-type(3) {
  border-top: 1px solid #cbd4d9 !important;
  border-left: 1px solid #cbd4d9 !important;
}

.footer-contact a[href^="mailto:"] {
  border-top: 1px solid #cbd4d9 !important;
  font-size: clamp(11px, 0.92vw, 15px) !important;
  letter-spacing: 0.045em !important;
  overflow-wrap: anywhere !important;
}

.footer-contact svg {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 auto !important;
}

@media (max-width: 820px) {
  .footer-contact .contact-method,
  .footer-contact a[href^="mailto:"] {
    min-height: 78px !important;
    gap: 10px !important;
    padding: 0 8px !important;
  }

  .footer-contact a[href^="mailto:"] {
    font-size: clamp(9px, 2.55vw, 12px) !important;
    letter-spacing: 0.02em !important;
  }
}

.date-row {
  display: grid;
  grid-template-columns: 76px minmax(170px, 1fr) minmax(120px, 0.58fr) minmax(120px, 0.58fr) auto;
  gap: 10px;
  align-items: center;
}

.date-row-title {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.date-input-wrap {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.date-input-wrap > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.date-input-wrap input {
  width: 100%;
  min-width: 0;
}

.icon-button,
.add-day-button,
.tag-list button,
.suggestion-row button,
.file-pill button,
.form-error button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--white);
  border: 1px solid #bfc6cb;
  border-radius: 50%;
  color: var(--ink);
}

.add-day-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  background: #18364c;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.tag-input-row .add-tag {
  width: 58px;
  height: 58px;
  border-radius: 3px;
  background: #18364c;
  border-color: #18364c;
  color: #fff;
}

.tag-list,
.suggestion-row,
.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list button,
.suggestion-row button,
.file-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #c7ced3;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.suggestion-row button {
  background: #eef4f7;
}

.vehicle-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
}

.vehicle-option-grid button,
.vehicle-quantity-row button {
  appearance: none;
  border: 1px solid #c7ced3;
  cursor: pointer;
  font-family: inherit;
}

.vehicle-option-grid button {
  display: grid;
  gap: 5px;
  min-height: 58px;
  padding: 10px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-align: left;
}

.vehicle-option-grid button span,
.vehicle-quantity-row > span {
  font-weight: 900;
  line-height: 1.05;
}

.vehicle-option-grid button strong {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-option-grid button.selected {
  border-color: rgba(31, 64, 86, 0.58);
  background: linear-gradient(135deg, rgba(111, 145, 164, 0.20), rgba(31, 64, 86, 0.10));
  box-shadow: inset 0 0 0 1px rgba(31, 64, 86, 0.18);
}

.vehicle-quantity-list {
  display: grid;
  gap: 8px;
}

.vehicle-quantity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(82, 107, 122, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.80);
}

.vehicle-quantity-row > div {
  display: grid;
  grid-template-columns: 36px 54px 36px;
  align-items: center;
}

.vehicle-quantity-row button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: #18364c;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.vehicle-quantity-row input {
  width: 54px;
  height: 36px;
  min-height: 36px !important;
  padding: 0 4px !important;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  text-align: center;
}

.file-upload-field > input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-drop {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  min-height: 104px;
  padding: 20px;
  background: rgba(232, 241, 246, 0.72);
  border: 1px dashed #8ea2b0;
  border-radius: 8px;
  cursor: pointer;
}

.upload-drop svg {
  grid-row: span 2;
  color: #18364c;
}

.upload-drop strong {
  color: var(--ink);
  font-size: 18px;
}

.upload-drop span,
.field-help {
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.35;
}

.permit-note {
  padding: 16px 18px;
  border: 1px solid rgba(82, 107, 122, 0.20);
  border-radius: 8px;
  background: rgba(247, 250, 252, 0.82);
}

.permit-note strong {
  display: block;
  margin-bottom: 8px;
  color: #172633;
  font-family: var(--display);
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1;
  text-transform: uppercase;
}

.permit-note p {
  max-width: 980px !important;
  margin: 6px 0 0 !important;
  color: #4d5a64 !important;
  font-size: 14px !important;
  font-weight: 560 !important;
  line-height: 1.45 !important;
}

.file-pill {
  max-width: 100%;
  border-radius: 6px;
}

.file-pill span {
  max-width: min(420px, 72vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-pill button {
  display: grid;
  padding: 0;
  background: transparent;
  color: var(--muted);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.form-error {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 14px 16px;
  background: #fff5f1;
  border: 1px solid #d99b83;
  border-radius: 6px;
  color: #742714;
}

.form-error button,
.form-error a {
  justify-self: start;
  margin-top: 4px;
  padding: 0;
  background: transparent;
  color: #742714;
  font-weight: 900;
  text-decoration: underline;
}

.field.invalid .date-list-field,
.field.invalid .choice-grid,
.field.invalid .tag-autocomplete,
.field.invalid .vehicle-list-field,
.field.invalid .file-upload-field .upload-drop {
  border-color: #9d2f1e;
  box-shadow: 0 0 0 3px rgba(157, 47, 30, 0.12);
}

.form-draft-notice,
.form-save-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -8px 0 20px;
  padding: 10px 12px;
  border: 1px solid rgba(82, 107, 122, 0.18);
  border-radius: 6px;
  background: rgba(247, 250, 252, 0.78);
  color: #364756;
  font-size: 13px;
  font-weight: 800;
}

.form-draft-notice button {
  padding: 0;
  background: transparent;
  color: #1f4056;
  font: inherit;
  text-decoration: underline;
}

@media (max-width: 820px) {
  .date-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
  }

  .date-row-title {
    grid-column: 1 / -1;
  }

  .date-row .icon-button {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .date-input-wrap {
    gap: 4px;
  }

  .date-input-wrap > span {
    font-size: 9px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .date-input-wrap input {
    min-height: 48px !important;
    padding: 0 6px !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  .tag-input-row {
    grid-template-columns: minmax(0, 1fr) 52px;
  }
}

/* Current pass: stronger hero stats, real radius rings, address autocomplete, and tighter property intro. */
.hero-summary {
  max-width: 520px !important;
}

.hero-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  width: min(100%, 560px);
  margin-top: 28px !important;
  border-top: 1px solid rgba(11, 16, 20, 0.42);
  border-left: 1px solid rgba(11, 16, 20, 0.42);
  background: rgba(255, 254, 250, 0.44);
}

.hero-proof span {
  display: grid !important;
  align-items: start !important;
  gap: 5px !important;
  min-height: 76px;
  padding: 14px 16px 13px;
  border-right: 1px solid rgba(11, 16, 20, 0.42);
  border-bottom: 1px solid rgba(11, 16, 20, 0.42);
  font-family: var(--display) !important;
  line-height: 0.95;
  letter-spacing: 0 !important;
}

.hero-proof strong {
  color: #050607;
  font-size: clamp(28px, 3vw, 43px);
  letter-spacing: 0;
}

.hero-proof em {
  color: rgba(5, 6, 7, 0.76);
  font-size: clamp(12px, 1.2vw, 16px);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.address-autocomplete {
  position: relative;
  width: 100%;
}

.address-autocomplete input {
  width: 100%;
}

.address-autocomplete-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 260px;
  overflow: auto;
  border: 1px solid #9daab4;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(7, 16, 24, 0.20);
}

.address-autocomplete-menu button,
.address-autocomplete-menu span {
  display: block;
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  font: 800 14px/1.35 Arial, Helvetica, sans-serif;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e0e5e8;
}

.address-autocomplete-menu button {
  cursor: pointer;
}

.address-autocomplete-menu button:hover {
  background: #e8f0f5;
}

.zone-map-toolbar .address-autocomplete {
  min-width: 0;
}

.zone-map-message {
  margin: -4px 0 12px;
  color: #24475f;
  font-size: 14px;
  font-weight: 800;
}

.zone-tile-map {
  min-height: 540px;
  background: #d8e6ed !important;
}

.zone-map-tile {
  position: absolute;
  z-index: 1;
  width: 256px;
  height: 256px;
  user-select: none;
  filter: grayscale(0.35) contrast(1.05) saturate(0.9);
}

.zone-radius-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.zone-ring-svg {
  fill: rgba(77, 127, 158, 0.12);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.zone-ring-25-svg {
  stroke: rgba(29, 88, 125, 0.92);
}

.zone-ring-30-svg {
  stroke: rgba(4, 18, 27, 0.82);
  stroke-dasharray: 10 8;
}

.zone-center-pin,
.zone-selected-pin,
.zone-ring-label {
  position: absolute;
  z-index: 4;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.zone-center-pin,
.zone-selected-pin {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #071018;
  text-align: center;
}

.zone-center-pin svg,
.zone-selected-pin svg {
  color: #071018;
  fill: #fff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.30));
}

.zone-center-pin span,
.zone-selected-pin span,
.zone-ring-label {
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(7, 16, 24, 0.20);
  font-family: var(--display);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.zone-selected-pin svg {
  color: #14364e;
  fill: #dbeef8;
}

.real-map-caption {
  z-index: 5;
}

.property-copy {
  display: grid !important;
  grid-template-columns: minmax(300px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
  max-width: none !important;
  margin-top: clamp(34px, 5vw, 62px);
  padding: clamp(24px, 3.4vw, 38px) 0 !important;
  border-top: 1px solid #cfd7dc;
}

.property-copy-heading {
  display: grid;
  gap: 12px;
}

.property-copy-text {
  display: grid;
  grid-column: 2;
  align-content: center;
  gap: 8px;
  max-width: 780px;
}

.property-copy span {
  font-family: var(--display);
  color: var(--brass-dark);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.4vw, 86px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.property-copy p {
  margin: 0;
  color: #333b40;
  font-size: clamp(17px, 1.22vw, 21px);
  line-height: 1.38;
  text-wrap: pretty;
}

@media (max-width: 820px) {
  .hero-proof {
    width: 100%;
    margin-top: 22px !important;
  }

  .hero-proof span {
    min-height: 68px;
    padding: 12px 11px;
  }

  .hero-proof strong {
    font-size: clamp(25px, 8vw, 34px);
  }

  .hero-proof em {
    font-size: 11px;
  }

  .zone-tile-map {
    min-height: min(70vh, 520px);
  }

  .zone-ring-label {
    font-size: 10px;
  }

  .zone-center-pin span,
  .zone-selected-pin span {
    max-width: 190px;
    font-size: 10px;
    white-space: normal;
  }

  .property-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .property-copy-text {
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .hero-proof {
    grid-template-columns: 1fr 1fr !important;
  }

  .zone-map-toolbar .btn {
    width: 100%;
  }
}

/* Interactive production-zone map: pan, pinch, zoom, and full-ring initial framing. */
.production-zone-leaflet {
  height: clamp(520px, 58vw, 720px) !important;
  min-height: 0 !important;
  isolation: isolate;
  touch-action: none;
}

.production-zone-leaflet .leaflet-container,
.production-zone-leaflet .leaflet-pane,
.production-zone-leaflet .leaflet-map-pane {
  z-index: 1;
}

.production-zone-leaflet .leaflet-control-container {
  position: relative;
  z-index: 6;
}

.production-zone-leaflet .leaflet-control-zoom {
  border: 1px solid rgba(7, 16, 24, 0.22) !important;
  box-shadow: 0 10px 24px rgba(7, 16, 24, 0.12) !important;
}

.production-zone-leaflet .leaflet-control-zoom a {
  width: 38px;
  height: 38px;
  color: #071018;
  font: 800 24px/38px Arial, sans-serif;
}

.production-zone-leaflet .leaflet-control-attribution {
  font-size: 10px;
}

.zone-leaflet-pin,
.zone-leaflet-label {
  display: grid;
  justify-items: center;
  gap: 5px;
  pointer-events: none;
  text-align: center;
}

.zone-leaflet-pin-icon {
  display: block;
  width: 22px;
  height: 22px;
  border: 4px solid #071018;
  border-radius: 50% 50% 50% 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.32);
  transform: rotate(-45deg);
}

.zone-leaflet-selected .zone-leaflet-pin-icon {
  border-color: #1d587d;
  background: #dbeef8;
}

.zone-leaflet-pin strong,
.zone-leaflet-label strong {
  display: block;
  width: max-content;
  max-width: 176px;
  padding: 6px 8px;
  border: 1px solid rgba(7, 16, 24, 0.20);
  background: rgba(255, 255, 255, 0.94);
  color: #071018;
  font-family: var(--display);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: normal;
}

.zone-leaflet-label strong {
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .production-zone-leaflet {
    height: auto !important;
    aspect-ratio: 1 / 1;
    min-height: 320px !important;
  }

  .production-zone-leaflet .leaflet-control-zoom a {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }

  .production-zone-leaflet .real-map-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: center;
    padding: 8px 10px;
    font-size: 11px;
  }

  .zone-leaflet-pin strong,
  .zone-leaflet-label strong {
    font-size: 10px;
  }
}


/* Final header blessing placement: keep visible in the upper-right corner. */
@media (min-width: 821px) {
  .site-header {
    position: sticky !important;
    padding-right: clamp(62px, 5vw, 86px) !important;
  }

  .bh-mark {
    position: absolute !important;
    top: 11px !important;
    right: clamp(18px, 2.4vw, 34px) !important;
    display: block !important;
    z-index: 40 !important;
    align-self: auto !important;
    transform: none !important;
  }
}


/* Final desktop Locations row lock: four services in one row. */
@media (min-width: 821px) {
  .home-services .service-card-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
  }

  .home-services .service-card {
    min-width: 0 !important;
    min-height: 250px !important;
    border-left: 1px solid #cecece !important;
  }

  .home-services .service-card:first-child {
    border-left: 0 !important;
  }
}


/* Final footer polish: structured contact/footer system. */
.site-footer {
  background: var(--white) !important;
  color: var(--ink) !important;
  border-top: 1px solid #d0d0d0 !important;
}

.footer-main {
  display: grid !important;
  grid-template-columns: minmax(280px, 1.05fr) minmax(340px, 0.95fr) minmax(280px, 0.9fr) !important;
  gap: 0 !important;
  padding: 0 clamp(28px, 5vw, 72px) !important;
  border-bottom: 1px solid #d4d4d4 !important;
}

.footer-main > div {
  min-height: 286px !important;
  padding: clamp(34px, 4vw, 54px) clamp(24px, 3.6vw, 46px) !important;
  border-left: 1px solid #d4d4d4 !important;
}

.footer-main > div:first-child {
  border-left: 0 !important;
}

.footer-bio {
  display: grid !important;
  align-content: start !important;
  gap: 16px !important;
}

.site-footer strong {
  max-width: 360px !important;
  font-family: var(--display) !important;
  font-size: clamp(34px, 3.2vw, 52px) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
}

.footer-bio span {
  max-width: 360px !important;
  margin: 0 !important;
  color: #222 !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
}

.footer-bio span + span {
  padding-top: 16px !important;
  border-top: 1px solid #d4d4d4 !important;
}

.footer-contact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-content: start !important;
}

.footer-contact h2 {
  grid-column: 1 / -1 !important;
  margin: 0 0 28px !important;
  font-family: var(--display) !important;
  font-size: clamp(34px, 3vw, 46px) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.footer-contact h2::after {
  display: block !important;
  width: 48px !important;
  height: 3px !important;
  margin-top: 18px !important;
  background: var(--brass) !important;
  content: "" !important;
}

.footer-contact .contact-method,
.footer-contact a[href^="mailto:"] {
  display: flex !important;
  min-height: 66px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  margin: 0 -1px -1px 0 !important;
  padding: 0 18px !important;
  color: var(--ink) !important;
  background: rgba(255, 254, 250, 0.72) !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--display) !important;
  font-size: 17px !important;
  line-height: 1 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
}

.footer-contact a[href^="mailto:"] {
  grid-column: 1 / -1 !important;
  font-size: clamp(13px, 1vw, 16px) !important;
}

.footer-contact .contact-method:hover,
.footer-contact a[href^="mailto:"]:hover {
  background: var(--ink) !important;
  color: var(--white) !important;
}

.footer-links {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-content: start !important;
}

.footer-links a {
  display: flex !important;
  min-height: 42px !important;
  align-items: center !important;
  padding: 0 0 0 14px !important;
  color: var(--ink) !important;
  border-left: 3px solid transparent !important;
  border-bottom: 1px solid #d8d8d8 !important;
  font-family: var(--display) !important;
  font-size: 16px !important;
  line-height: 1 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
}

.footer-links a:hover {
  border-left-color: var(--brass) !important;
  background: #f4f7f9 !important;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
  }

  .footer-main > div {
    min-height: auto !important;
    padding: 32px 0 !important;
    border-left: 0 !important;
    border-top: 1px solid #d4d4d4 !important;
  }

  .footer-main > div:first-child {
    border-top: 0 !important;
  }

  .footer-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Final mobile polish: compact Locations and Contact layouts. */
@media (max-width: 820px) {
  .home-services {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 46px 20px 54px !important;
  }

  .home-services h2 {
    font-size: clamp(54px, 17vw, 78px) !important;
    line-height: 0.88 !important;
  }

  .home-services h2::after {
    width: 58px !important;
    height: 4px !important;
    margin-top: 22px !important;
  }

  .home-services .service-card-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 0 !important;
    border-top: 1px solid #d0d0d0 !important;
    border-left: 1px solid #d0d0d0 !important;
  }

  .home-services .service-card {
    min-height: 150px !important;
    padding: 20px 10px 18px !important;
    border-left: 0 !important;
    border-right: 1px solid #d0d0d0 !important;
    border-bottom: 1px solid #d0d0d0 !important;
    gap: 12px !important;
  }

  .home-services .service-card svg {
    width: 43px !important;
    height: 43px !important;
  }

  .home-services .service-card h3 {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0.045em !important;
  }

  .footer-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .footer-contact h2 {
    grid-column: 1 / -1 !important;
  }

  .footer-contact .contact-method,
  .footer-contact a[href^="mailto:"] {
    grid-column: auto !important;
    min-height: 74px !important;
    justify-content: center !important;
    padding: 0 10px !important;
    text-align: center !important;
    font-size: clamp(13px, 3.5vw, 18px) !important;
  }

  .footer-contact a[href^="mailto:"] {
    font-size: clamp(10px, 2.85vw, 14px) !important;
    letter-spacing: 0.045em !important;
    overflow-wrap: anywhere !important;
  }
}

/* Final Locations section composition: header above, services below. */
.home-services {
  display: block !important;
  padding: clamp(54px, 6vw, 86px) clamp(28px, 5vw, 72px) clamp(58px, 6vw, 88px) !important;
  background: var(--white) !important;
  border-top: 1px solid #d8d8d8 !important;
  border-bottom: 1px solid #d4d4d4 !important;
}

.home-services h2 {
  margin: 0 0 clamp(34px, 4vw, 52px) !important;
  font-size: clamp(56px, 7vw, 104px) !important;
  line-height: 0.86 !important;
  letter-spacing: 0.035em !important;
}

.home-services h2::after {
  width: 64px !important;
  height: 4px !important;
  margin-top: 22px !important;
}

.home-services .service-content {
  display: block !important;
  width: 100% !important;
}

.home-services .service-card-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: 100% !important;
  border-top: 1px solid #d0d0d0 !important;
  border-left: 1px solid #d0d0d0 !important;
  background: linear-gradient(180deg, #fffefa 0%, #f8fafb 100%) !important;
}

.home-services .service-card {
  min-height: 260px !important;
  align-content: center !important;
  justify-items: center !important;
  gap: 18px !important;
  padding: clamp(28px, 3vw, 44px) clamp(18px, 2vw, 34px) !important;
  border-left: 0 !important;
  border-right: 1px solid #d0d0d0 !important;
  border-bottom: 1px solid #d0d0d0 !important;
  background: rgba(255, 255, 255, 0.46) !important;
  text-align: center !important;
}

.home-services .service-card svg {
  width: clamp(52px, 4.2vw, 74px) !important;
  height: clamp(52px, 4.2vw, 74px) !important;
  stroke-width: 1.55 !important;
}

.home-services .service-card h3 {
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 0.96 !important;
  letter-spacing: 0.055em !important;
}

.home-services .service-card p {
  display: block !important;
  max-width: 250px !important;
  margin: 0 auto !important;
  color: #111 !important;
  font-size: clamp(14px, 1.12vw, 18px) !important;
  line-height: 1.45 !important;
}

@media (max-width: 820px) {
  .home-services {
    padding: 32px 20px 42px !important;
  }

  .home-services h2 {
    margin-bottom: 20px !important;
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 0.95 !important;
  }

  .home-services h2::after {
    width: 48px !important;
    height: 3px !important;
    margin-top: 13px !important;
  }

  .home-services .service-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-services .service-card {
    min-height: 132px !important;
    padding: 18px 10px 16px !important;
    gap: 10px !important;
  }

  .home-services .service-card svg {
    width: 40px !important;
    height: 40px !important;
  }

  .home-services .service-card h3 {
    font-size: clamp(20px, 6vw, 28px) !important;
  }

  .home-services .service-card p {
    display: none !important;
  }
}

/* Final color/weight polish: less hard black, more subtle NYC blue-gray depth. */
:root {
  --ink: #14191d;
  --muted: #4d565d;
  --brass: #67889a;
  --brass-dark: #3d6175;
  --blue: #e7f0f6;
  --paper: #f7f6f2;
  --paper-2: #edf3f6;
}

body {
  color: #14191d !important;
  background: #f7f6f2 !important;
}

.home-intro,
.home-services,
.site-footer,
.property-copy,
.section {
  background-color: #fffefa !important;
}

.home-intro {
  background: linear-gradient(105deg, #fffefa 0%, #fffefa 48%, #eef5f8 100%) !important;
}

.home-intro h2,
.home-services h2,
.path-panel h2,
.footer-contact h2,
.site-footer strong,
.property-copy h2 {
  color: #17232b !important;
  text-shadow: none !important;
}

.home-intro h2,
.home-services h2,
.path-panel h2,
.footer-contact h2,
.site-footer strong {
  letter-spacing: 0.02em !important;
}

.home-intro-copy p,
.path-panel p,
.footer-bio span,
.service-card p,
.property-copy p {
  color: #2c343a !important;
}

.hero-role,
.hero-capabilities,
.hero-summary,
.hero-proof em,
.hero-proof strong {
  color: #11171c !important;
}

.hero-capabilities {
  color: #203848 !important;
}

.hero-summary {
  max-width: 560px !important;
}

.hero-proof,
.intro-stats,
.home-services .service-card-row,
.footer-contact .contact-method,
.footer-contact a[href^="mailto:"],
.footer-links a {
  border-color: #cbd4d9 !important;
}

.btn.primary,
.header-cta,
.home-paths .btn.primary,
.home-paths .btn.secondary {
  background: linear-gradient(135deg, #6f91a4, #29485c) !important;
  border-color: #5f8194 !important;
  color: #fffefa !important;
}

.btn.secondary {
  border-color: #839aa7 !important;
  color: #17232b !important;
}

.home-services {
  background: linear-gradient(180deg, #fffefa 0%, #f4f8fa 100%) !important;
}

.home-services .service-card-row {
  background: transparent !important;
}

.home-services .service-card {
  background: rgba(255, 254, 250, 0.72) !important;
  color: #17232b !important;
}

.home-services .service-card:nth-child(2),
.home-services .service-card:nth-child(4) {
  background: rgba(232, 241, 246, 0.72) !important;
}

.home-services .service-card svg,
.path-icon svg,
.footer-contact svg {
  color: #244354 !important;
  stroke: #244354 !important;
}

.home-services .service-card h3,
.footer-links a,
.footer-contact .contact-method,
.footer-contact a[href^="mailto:"] {
  color: #17232b !important;
}

.home-paths {
  border-top: 1px solid #d6dde1 !important;
  border-bottom: 1px solid #d6dde1 !important;
}

.path-panel.need {
  background: #fffefa !important;
}

.path-panel.submit {
  background: #e8f1f6 !important;
}

.credibility-band h2,
.credibility-links span {
  color: #fffefa !important;
}

.credibility-band h2::after,
.home-services h2::after,
.home-intro h2::after,
.path-panel h2::after,
.footer-contact h2::after {
  background: #67889a !important;
}

.footer-main > div {
  background: rgba(255, 254, 250, 0.88) !important;
}

.footer-main > div:nth-child(2) {
  background: #f6f9fa !important;
}

.footer-main > div:nth-child(3) {
  background: #fffefa !important;
}

.footer-links a:hover,
.footer-contact .contact-method:hover,
.footer-contact a[href^="mailto:"]:hover {
  background: #17232b !important;
  color: #fffefa !important;
}

.footer-links a:hover svg,
.footer-contact .contact-method:hover svg,
.footer-contact a[href^="mailto:"]:hover svg {
  color: #fffefa !important;
  stroke: #fffefa !important;
}

@media (max-width: 820px) {
  .home-hero-panel h1,
  .home-hero h1 {
    color: #050709 !important;
  }

  .home-services .service-card:nth-child(2),
  .home-services .service-card:nth-child(3) {
    background: rgba(232, 241, 246, 0.72) !important;
  }

  .home-services .service-card:nth-child(4) {
    background: rgba(255, 254, 250, 0.72) !important;
  }
}

/* Final intro stats polish: avoid cramped numbers on desktop. */
@media (min-width: 821px) {
  .home-intro {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.78fr) !important;
  }

  .intro-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 560px !important;
    justify-self: end !important;
    background: rgba(255, 254, 250, 0.72) !important;
  }

  .intro-stats span {
    min-height: 102px !important;
    padding: 20px 24px !important;
    border-left: 1px solid #cbd4d9 !important;
    border-top: 1px solid #cbd4d9 !important;
    font-size: 15px !important;
  }

  .intro-stats span:nth-child(1),
  .intro-stats span:nth-child(2) {
    border-top: 0 !important;
  }

  .intro-stats span:nth-child(odd) {
    border-left: 0 !important;
  }

  .intro-stats strong {
    font-size: clamp(34px, 2.7vw, 48px) !important;
    letter-spacing: 0.025em !important;
  }
}

/* Final hero hierarchy polish: keep the name bold, make supporting copy quieter. */
.home-hero h1 {
  color: #111820 !important;
  font-size: clamp(68px, 10.2vw, 138px) !important;
  line-height: 0.84 !important;
  letter-spacing: 0 !important;
}

.hero-role {
  margin-top: 20px !important;
  padding-bottom: 11px !important;
  border-bottom-width: 3px !important;
  color: #17232b !important;
  font-size: clamp(16px, 1.45vw, 22px) !important;
  line-height: 1 !important;
  letter-spacing: 0.075em !important;
}

.hero-capabilities {
  max-width: 520px !important;
  margin-top: 20px !important;
  color: #315468 !important;
  font-size: clamp(14px, 1.3vw, 19px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0.085em !important;
}

.hero-summary {
  max-width: 560px !important;
  margin-top: 30px !important;
  color: #17232b !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(21px, 2.15vw, 34px) !important;
  font-weight: 800 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.hero-proof {
  max-width: 690px !important;
  margin-top: 32px !important;
}

.hero-proof span {
  min-height: 86px !important;
  padding: 16px 22px !important;
  background: rgba(255, 254, 250, 0.58) !important;
}

.hero-proof strong {
  color: #111820 !important;
  font-size: clamp(34px, 4.2vw, 62px) !important;
  line-height: 0.9 !important;
  letter-spacing: 0.015em !important;
}

.hero-proof em {
  color: #17232b !important;
  font-size: clamp(12px, 1.2vw, 18px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0.06em !important;
}

/* Final B"H placement: above the rest of the header chrome. */
.bh-mark {
  font-size: 18px !important;
  color: #080b0d !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

@media (min-width: 821px) {
  .site-header {
    min-height: 76px !important;
    align-items: end !important;
    padding-top: 18px !important;
    padding-bottom: 10px !important;
  }

  .bh-mark {
    top: 5px !important;
    right: clamp(18px, 2.4vw, 34px) !important;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky !important;
    min-height: 62px !important;
    align-items: end !important;
    padding-top: 18px !important;
    padding-bottom: 8px !important;
  }

  .bh-mark {
    position: absolute !important;
    top: 5px !important;
    right: 14px !important;
    display: block !important;
    z-index: 40 !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .home-hero h1 {
    font-size: clamp(58px, 20vw, 92px) !important;
    line-height: 0.84 !important;
  }

  .hero-capabilities {
    font-size: clamp(14px, 5vw, 20px) !important;
    line-height: 1.08 !important;
  }

  .hero-summary {
    font-size: clamp(20px, 6vw, 28px) !important;
    line-height: 1.14 !important;
  }

  .hero-proof strong {
    font-size: clamp(32px, 12vw, 48px) !important;
  }
}

/* Final mobile hero proof fit: prevent stat clipping. */
@media (max-width: 820px) {
  .home-hero-panel {
    width: min(100%, calc(100vw - 40px)) !important;
    max-width: calc(100vw - 40px) !important;
  }

  .hero-proof {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .hero-proof span {
    min-width: 0 !important;
    min-height: 70px !important;
    padding: 12px 10px !important;
    overflow: hidden !important;
  }

  .hero-proof strong {
    font-size: clamp(28px, 10vw, 40px) !important;
    letter-spacing: 0 !important;
  }

  .hero-proof em {
    font-size: clamp(9px, 2.6vw, 12px) !important;
    letter-spacing: 0.04em !important;
  }
}

/* Final contact geometry: four matching tiles. */
@media (min-width: 981px) {
  .footer-main {
    grid-template-columns: minmax(320px, 0.92fr) minmax(460px, 1.16fr) minmax(300px, 0.92fr) !important;
  }

  .footer-main > .footer-contact {
    padding-left: clamp(24px, 2.6vw, 38px) !important;
    padding-right: clamp(24px, 2.6vw, 38px) !important;
  }
}

.footer-contact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-content: start !important;
  gap: 0 !important;
}

.footer-contact h2 {
  grid-column: 1 / -1 !important;
  margin-bottom: 34px !important;
}

.footer-contact > .contact-method,
.footer-contact > a[href^="mailto:"] {
  grid-column: auto !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-height: clamp(94px, 7.2vw, 112px) !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin: 0 -1px -1px 0 !important;
  padding: 0 14px !important;
  border: 1px solid #cbd4d9 !important;
  background: rgba(255, 254, 250, 0.72) !important;
  color: #17232b !important;
  box-shadow: none !important;
  text-align: center !important;
}

.footer-contact > a[href^="mailto:"] {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(12px, 0.95vw, 15px) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.1 !important;
  text-transform: none !important;
  overflow-wrap: anywhere !important;
}

.footer-contact > .contact-method svg,
.footer-contact > a[href^="mailto:"] svg {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 auto !important;
}

@media (max-width: 820px) {
  .footer-contact > .contact-method,
  .footer-contact > a[href^="mailto:"] {
    min-height: 82px !important;
    gap: 8px !important;
    padding: 0 8px !important;
  }

  .footer-contact > a[href^="mailto:"] {
    font-size: clamp(10px, 2.65vw, 12px) !important;
    letter-spacing: 0 !important;
  }
}

/* Final footer navigation geometry: centered, enclosed, even cells. */
.footer-links {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  width: min(100%, 430px) !important;
  justify-self: center !important;
  align-self: start !important;
  align-content: start !important;
  gap: 0 !important;
  border: 1px solid #cbd4d9 !important;
  background: rgba(255, 254, 250, 0.58) !important;
}

.footer-links a {
  display: flex !important;
  min-height: 56px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-right: 1px solid #cbd4d9 !important;
  border-bottom: 1px solid #cbd4d9 !important;
  color: #17232b !important;
  text-align: center !important;
  line-height: 1.04 !important;
}

.footer-links a:nth-child(even) {
  border-right: 0 !important;
}

.footer-links a:nth-last-child(-n + 2) {
  border-bottom: 0 !important;
}

@media (max-width: 820px) {
  .footer-links {
    width: 100% !important;
  }

  .footer-links a {
    min-height: 52px !important;
    padding: 0 8px !important;
    font-size: clamp(15px, 4.2vw, 18px) !important;
  }
}

/* Luxury interaction pass: restrained movement, tactile controls, cleaner focus. */
:root {
  --ease-luxe: cubic-bezier(0.19, 1, 0.22, 1);
  --motion-fast: 180ms;
  --motion-med: 420ms;
  --halo-blue: rgba(111, 145, 164, 0.22);
  --halo-dark: rgba(17, 24, 32, 0.18);
}

html {
  text-rendering: geometricPrecision;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #fffefa;
  background: #29485c;
}

a,
button,
.btn,
.path-panel,
.service-card,
.credibility-links a,
.footer-links a,
.footer-contact > .contact-method,
.footer-contact > a[href^="mailto:"] {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #6f91a4 !important;
  outline-offset: 4px !important;
}

.site-header {
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.06), 0 16px 46px rgba(16, 24, 32, 0.055) !important;
  transition: background var(--motion-med) var(--ease-luxe), box-shadow var(--motion-med) var(--ease-luxe) !important;
}

.brand,
.desktop-nav a,
.header-cta,
.menu-toggle {
  transition: color var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease, transform var(--motion-med) var(--ease-luxe), box-shadow var(--motion-med) var(--ease-luxe) !important;
}

.desktop-nav a {
  position: relative !important;
}

.desktop-nav a::after {
  position: absolute;
  right: 12px;
  bottom: -8px;
  left: 12px;
  height: 2px;
  background: #6f91a4;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-med) var(--ease-luxe);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(41, 72, 92, 0.18) !important;
}

.btn,
.header-cta,
.home-paths .btn.primary {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.btn::after,
.header-cta::after,
.home-paths .btn.primary::after {
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 46%, transparent 64%);
  content: "";
  transform: translateX(-120%);
  transition: transform 760ms var(--ease-luxe);
}

.btn:hover,
.btn:focus-visible,
.home-paths .btn.primary:hover,
.home-paths .btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(41, 72, 92, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;
}

.btn:hover::after,
.btn:focus-visible::after,
.header-cta:hover::after,
.header-cta:focus-visible::after,
.home-paths .btn.primary:hover::after,
.home-paths .btn.primary:focus-visible::after {
  transform: translateX(120%);
}

.home-hero-image {
  transform: scale(1.015);
  animation: hero-image-settle 1800ms var(--ease-luxe) both;
}

.home-hero-panel {
  animation: hero-panel-arrive 620ms var(--ease-luxe) both;
}

.hero-proof span {
  transition: background var(--motion-med) var(--ease-luxe), border-color var(--motion-med) var(--ease-luxe), transform var(--motion-med) var(--ease-luxe), box-shadow var(--motion-med) var(--ease-luxe) !important;
}

.hero-proof span:hover {
  background: rgba(255, 254, 250, 0.74) !important;
  border-color: rgba(111, 145, 164, 0.56) !important;
  box-shadow: 0 18px 46px rgba(41, 72, 92, 0.12) !important;
  transform: translateY(-2px);
}

.service-card,
.path-panel,
.footer-links a,
.footer-contact > .contact-method,
.footer-contact > a[href^="mailto:"],
.intro-stats span {
  transition: background var(--motion-med) var(--ease-luxe), border-color var(--motion-med) var(--ease-luxe), box-shadow var(--motion-med) var(--ease-luxe), transform var(--motion-med) var(--ease-luxe), color var(--motion-fast) ease !important;
}

.service-card:hover,
.intro-stats span:hover {
  background: rgba(255, 254, 250, 0.92) !important;
  border-color: rgba(111, 145, 164, 0.58) !important;
  box-shadow: 0 22px 58px rgba(18, 31, 42, 0.10) !important;
  transform: translateY(-4px);
}

.service-card svg,
.path-panel svg,
.credibility-links svg,
.footer-contact svg {
  transition: transform var(--motion-med) var(--ease-luxe), filter var(--motion-med) var(--ease-luxe), color var(--motion-fast) ease, stroke var(--motion-fast) ease !important;
}

.service-card:hover svg,
.path-panel:hover svg,
.footer-contact > .contact-method:hover svg,
.footer-contact > a[href^="mailto:"]:hover svg {
  transform: translateY(-2px) scale(1.035);
}

.path-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 36%),
    linear-gradient(180deg, transparent, rgba(41, 72, 92, 0.035));
  content: "";
  opacity: 0;
  transition: opacity var(--motion-med) var(--ease-luxe);
}

.path-panel:hover,
.path-panel:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(111, 145, 164, 0.34), 0 28px 80px rgba(18, 31, 42, 0.12) !important;
  transform: translateY(-3px);
}

.path-panel:hover::before,
.path-panel:focus-visible::before {
  opacity: 1;
}

.credibility-band {
  overflow: hidden !important;
}

.credibility-links a {
  position: relative !important;
}

.credibility-links a::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 1px;
  background: rgba(255, 254, 250, 0.45);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-med) var(--ease-luxe), opacity var(--motion-med) ease;
}

.credibility-links a:hover::after,
.credibility-links a:focus-visible::after {
  transform: scaleX(1);
}

.credibility-links a:hover svg,
.credibility-links a:focus-visible svg {
  transform: translateY(-4px) scale(1.04);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact > .contact-method:hover,
.footer-contact > .contact-method:focus-visible,
.footer-contact > a[href^="mailto:"]:hover,
.footer-contact > a[href^="mailto:"]:focus-visible {
  background: #17232b !important;
  color: #fffefa !important;
  box-shadow: inset 0 0 0 1px rgba(255, 254, 250, 0.08) !important;
  transform: translateY(-2px);
}

.scroll-cue {
  animation: scroll-cue-breathe 2400ms ease-in-out infinite;
}

@keyframes hero-panel-arrive {
  from {
    opacity: 1;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-settle {
  from {
    transform: scale(1.035);
    filter: saturate(0.92) contrast(0.98);
  }

  to {
    transform: scale(1.015);
    filter: saturate(1) contrast(1);
  }
}

@keyframes scroll-cue-breathe {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }

  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final mobile hero composition: image first, blessing floating in the sky. */
:root {
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Roboto Condensed", sans-serif;
  --body: "Arial Narrow", Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--body) !important;
}

.home-hero h1 {
  color: #111820 !important;
  font-weight: 900 !important;
  text-wrap: balance;
}

.hero-role {
  color: #16232d !important;
  font-weight: 800 !important;
  letter-spacing: 0.085em !important;
}

.hero-capabilities {
  color: #345a70 !important;
  font-size: clamp(15px, 1.2vw, 18px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0.075em !important;
  font-weight: 800 !important;
  max-width: 610px !important;
}

.hero-summary {
  color: #16212a !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(21px, 1.86vw, 29px) !important;
  font-weight: 800 !important;
  line-height: 1.17 !important;
  max-width: 650px !important;
}

@media (max-width: 820px) {
  .home-route .site-header {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 80 !important;
    display: block !important;
    min-height: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .home-route .brand,
  .home-route .desktop-nav,
  .home-route .header-cta {
    display: none !important;
  }

  .home-route .menu-toggle {
    position: absolute !important;
    top: calc(18px + env(safe-area-inset-top, 0px)) !important;
    left: 20px !important;
    display: inline-flex !important;
    width: 50px !important;
    height: 50px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(17, 24, 32, 0.24) !important;
    background: rgba(255, 254, 250, 0.72) !important;
    color: #111820 !important;
    box-shadow: 0 16px 42px rgba(18, 31, 42, 0.14) !important;
    backdrop-filter: blur(12px) !important;
  }

  .home-route .bh-mark {
    position: fixed !important;
    top: calc(10px + env(safe-area-inset-top, 0px)) !important;
    right: 22px !important;
    z-index: 160 !important;
    display: block !important;
    color: rgba(255, 254, 250, 0.94) !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    text-shadow: 0 1px 12px rgba(14, 28, 38, 0.45), 0 0 1px rgba(14, 28, 38, 0.8) !important;
  }

  .home-route .mobile-nav {
    position: fixed !important;
    top: calc(78px + env(safe-area-inset-top, 0px)) !important;
    right: 18px !important;
    left: 18px !important;
    z-index: 90 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(17, 24, 32, 0.22) !important;
    background: rgba(255, 254, 250, 0.96) !important;
    box-shadow: 0 28px 70px rgba(18, 31, 42, 0.20) !important;
    backdrop-filter: blur(16px) !important;
  }

  .home-route .mobile-nav a {
    min-height: 52px !important;
    justify-content: center !important;
    border-bottom: 1px solid rgba(17, 24, 32, 0.12) !important;
    border-radius: 0 !important;
    text-align: center !important;
  }

  .home-route .mobile-nav a:nth-child(odd) {
    border-right: 1px solid rgba(17, 24, 32, 0.12) !important;
  }

  .home-route .home-hero {
    min-height: 100svh !important;
    margin-top: 0 !important;
    padding: calc(118px + env(safe-area-inset-top, 0px)) 20px 74px !important;
  }

  .home-route .home-hero-image {
    object-position: 78% top !important;
  }

  .home-route .home-hero::after {
    background:
      linear-gradient(90deg, rgba(255, 254, 250, 0.92) 0%, rgba(255, 254, 250, 0.72) 45%, rgba(255, 254, 250, 0.12) 84%),
      linear-gradient(180deg, rgba(255, 254, 250, 0.08) 0%, rgba(255, 254, 250, 0.0) 34%, rgba(255, 254, 250, 0.72) 100%) !important;
  }

  .home-route .home-hero-panel {
    max-width: calc(100vw - 40px) !important;
  }

  .home-route .home-hero h1 {
    font-size: clamp(58px, 18.3vw, 86px) !important;
    line-height: 0.85 !important;
    letter-spacing: 0 !important;
  }

  .home-route .hero-role {
    margin-top: 18px !important;
    padding-bottom: 10px !important;
    font-size: clamp(16px, 4.1vw, 20px) !important;
    letter-spacing: 0.08em !important;
  }

  .home-route .hero-capabilities {
    max-width: 100% !important;
    margin-top: 18px !important;
    font-size: clamp(15px, 4.25vw, 18px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0.065em !important;
  }

  .home-route .hero-summary {
    margin-top: 30px !important;
    font-size: clamp(24px, 6.2vw, 29px) !important;
    font-weight: 680 !important;
    line-height: 1.16 !important;
  }

  .home-route .hero-proof {
    margin-top: 28px !important;
  }
}

/* Direct intake flow: context strip, then form immediately. */
.direct-intake {
  padding: clamp(18px, 3vw, 34px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 84px) !important;
}

.intake-direct-strip,
.intake-direct-form {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.intake-direct-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 58px;
  margin-bottom: 14px;
  padding: 13px 18px;
  border: 1px solid rgba(95, 129, 152, 0.72);
  background: linear-gradient(135deg, #6f91a4 0%, #29485c 100%);
  color: #fffefa;
  box-shadow: 0 18px 48px rgba(41, 72, 92, 0.12);
}

.intake-direct-strip h1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.intake-direct-strip svg {
  width: 22px;
  height: 22px;
}

.intake-direct-strip p {
  margin: 0;
  color: rgba(255, 254, 250, 0.92);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 550;
  line-height: 1.28;
}

.direct-intake .form-card {
  padding: clamp(24px, 3.8vw, 46px) !important;
}

.direct-intake .form-stepper {
  margin-bottom: clamp(24px, 3vw, 34px) !important;
}

.direct-intake .fields {
  margin-top: 26px !important;
}

@media (max-width: 820px) {
  .direct-intake {
    padding: 12px 14px 42px !important;
  }

  .intake-direct-strip {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: 0;
    margin-bottom: 10px;
    padding: 11px 13px;
  }

  .intake-direct-strip h1 {
    font-size: 18px;
  }

  .intake-direct-strip p {
    font-size: 14px;
    line-height: 1.25;
  }

  .direct-intake .form-card {
    padding: 20px 18px 28px !important;
    border-radius: 8px !important;
  }

  .direct-intake .form-stepper {
    gap: 8px !important;
    margin-bottom: 20px !important;
  }

  .direct-intake .form-stepper span {
    width: 42px !important;
    height: 42px !important;
    font-size: 20px !important;
  }

  .direct-intake .form-card h2 {
    font-size: clamp(28px, 8.2vw, 36px) !important;
  }

  .direct-intake .form-card p {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

.direct-intake .fields {
    gap: 18px !important;
    margin-top: 22px !important;
    padding-bottom: 26px !important;
  }
}

/* Intake form refinement: smoother, clearer, more tactile. */
.direct-intake .form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(82, 107, 122, 0.22) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 251, 0.92)),
    var(--white) !important;
  box-shadow:
    0 22px 70px rgba(25, 43, 55, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
}

.direct-intake .form-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #6f91a4, #1f4056 52%, #93b4c6);
  content: "";
}

.direct-intake .form-stepper {
  position: relative;
  padding: 14px 18px 12px;
  border: 1px solid rgba(82, 107, 122, 0.14);
  border-radius: 8px;
  background: rgba(247, 250, 252, 0.78);
}

.direct-intake .form-stepper div {
  gap: 9px;
}

.direct-intake .form-stepper div::after {
  top: 20px;
  background: rgba(70, 91, 103, 0.22);
}

.direct-intake .form-stepper span {
  width: 40px;
  height: 40px;
  border-color: rgba(82, 107, 122, 0.25);
  background: rgba(255, 255, 255, 0.96);
  color: #253847;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(31, 64, 86, 0.06);
}

.direct-intake .form-stepper .active span {
  background: linear-gradient(145deg, #6f91a4, #203f55);
  border-color: rgba(31, 64, 86, 0.58);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 64, 86, 0.20);
}

.direct-intake .form-stepper strong {
  color: rgba(16, 17, 20, 0.58);
  font-size: 13px;
  font-weight: 650;
}

.direct-intake .form-stepper .active strong {
  color: #172633;
  font-weight: 800;
}

.direct-intake .form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 4px 0 9px;
  color: #506371;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-intake .progress {
  display: block;
  height: 5px;
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31, 64, 86, 0.11);
}

.direct-intake .progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6f91a4, #1f4056);
  transition: width 260ms ease;
}

.direct-intake .form-card h2 {
  color: #101820;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  font-weight: 850;
  letter-spacing: -0.02em !important;
}

.direct-intake .form-card p {
  max-width: 680px;
  color: #53606a !important;
}

.direct-intake .fields {
  border-bottom-color: rgba(82, 107, 122, 0.18) !important;
}

.direct-intake .field {
  gap: 9px;
  color: #141b22;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: 14px;
  font-weight: 760;
}

.direct-intake .field > span,
.direct-intake .field > label {
  color: #172633;
  letter-spacing: 0.005em;
}

.direct-intake .field input,
.direct-intake .field textarea,
.direct-intake .field select,
.direct-intake .tag-input-row input {
  min-height: 56px;
  border: 1px solid rgba(82, 107, 122, 0.26) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #101820 !important;
  font-size: 16px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 1px 0 rgba(18, 32, 42, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.direct-intake .field textarea {
  min-height: 132px;
}

.direct-intake .field input:hover,
.direct-intake .field textarea:hover,
.direct-intake .field select:hover,
.direct-intake .tag-input-row input:hover {
  border-color: rgba(82, 107, 122, 0.46) !important;
}

.direct-intake .field input:focus,
.direct-intake .field textarea:focus,
.direct-intake .field select:focus,
.direct-intake .tag-input-row input:focus {
  outline: 0;
  border-color: #4f7a96 !important;
  background: #fff !important;
  box-shadow:
    0 0 0 4px rgba(111, 145, 164, 0.18),
    0 14px 32px rgba(31, 64, 86, 0.08);
}

.direct-intake .field input::placeholder,
.direct-intake .field textarea::placeholder {
  color: rgba(55, 64, 73, 0.48);
}

.direct-intake .choice-grid {
  gap: 10px;
}

.direct-intake .choice-grid button {
  min-height: 48px;
  border: 1px solid rgba(82, 107, 122, 0.22);
  border-radius: 8px;
  color: #172633;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(31, 64, 86, 0.04);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.direct-intake .choice-grid button:hover {
  transform: translateY(-1px);
  border-color: rgba(82, 107, 122, 0.46);
  box-shadow: 0 14px 28px rgba(31, 64, 86, 0.08);
}

.direct-intake .choice-grid button.selected {
  border-color: rgba(31, 64, 86, 0.58);
  background: linear-gradient(135deg, #6f91a4, #1f4056);
  color: #fff;
}

.direct-intake .date-list-field,
.direct-intake .tag-autocomplete,
.direct-intake .vehicle-list-field,
.direct-intake .file-upload-field {
  padding: 14px;
  border: 1px solid rgba(82, 107, 122, 0.15);
  border-radius: 8px;
  background: rgba(241, 247, 250, 0.54);
}

.direct-intake .date-row {
  padding: 10px;
  border: 1px solid rgba(82, 107, 122, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.direct-intake .add-day-button,
.direct-intake .tag-input-row .add-tag {
  background: linear-gradient(135deg, #6f91a4, #1f4056);
  box-shadow: 0 12px 24px rgba(31, 64, 86, 0.14);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.direct-intake .add-day-button:hover,
.direct-intake .tag-input-row .add-tag:hover,
.direct-intake .btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(31, 64, 86, 0.20);
}

.direct-intake .upload-drop {
  min-height: 118px;
  border-color: rgba(79, 122, 150, 0.54);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(222, 235, 242, 0.72));
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.direct-intake .upload-drop:hover {
  transform: translateY(-1px);
  border-color: #4f7a96;
  box-shadow: 0 14px 34px rgba(31, 64, 86, 0.10);
}

.direct-intake .form-nav {
  gap: 16px;
  margin-top: 26px !important;
}

.direct-intake .form-nav-left {
  gap: 12px;
}

.direct-intake .form-nav .btn {
  min-height: 54px;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.07em;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.direct-intake .btn.primary {
  border-color: rgba(31, 64, 86, 0.48);
  background: linear-gradient(135deg, #6f91a4, #1f4056);
}

.direct-intake .btn.secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(82, 107, 122, 0.24);
}

@media (min-width: 821px) {
  .direct-intake .form-nav-left {
    order: 1;
  }

  .direct-intake .form-nav > .btn.primary {
    order: 2;
  }
}

.direct-intake .review-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.direct-intake .review-row {
  border: 1px solid rgba(82, 107, 122, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: no-preference) {
  .direct-intake .form-card {
    animation: intakeCardIn 320ms ease both;
  }
}

@keyframes intakeCardIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .direct-intake .form-card {
    padding: 18px 18px 24px !important;
  }

  .direct-intake .form-stepper {
    padding: 10px 10px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
  }

  .inquiry-intake .form-stepper {
    grid-template-columns: repeat(var(--step-count, 6), minmax(0, 1fr)) !important;
    justify-content: stretch !important;
    gap: 4px !important;
  }

  .direct-intake .form-stepper div {
    gap: 0;
  }

  .inquiry-intake .form-stepper div {
    min-width: 0;
  }

  .direct-intake .form-stepper div::after,
  .direct-intake .form-stepper strong {
    display: none !important;
  }

  .direct-intake .form-stepper span {
    width: 36px !important;
    height: 36px !important;
    font-size: 17px !important;
  }

  .inquiry-intake .form-stepper span {
    width: 36px !important;
    height: 36px !important;
  }

  .direct-intake .form-topline {
    margin-top: 0;
  }

  .direct-intake .progress {
    margin-bottom: 22px;
  }

  .direct-intake .field input,
  .direct-intake .field textarea,
  .direct-intake .field select,
  .direct-intake .tag-input-row input {
    min-height: 54px;
    font-size: 16px !important;
  }

  .direct-intake .date-list-field,
  .direct-intake .tag-autocomplete,
  .direct-intake .vehicle-list-field,
  .direct-intake .file-upload-field {
    padding: 10px;
  }

  .direct-intake .date-row {
    gap: 8px;
    padding: 9px;
  }

  .direct-intake .form-nav,
  .direct-intake .form-nav-left {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

	  .direct-intake .form-nav .btn {
	    width: 100%;
	    min-width: 0;
	  }
	}

@media (max-width: 360px) {
  .inquiry-intake .form-card {
    padding-inline: 14px !important;
  }

  .inquiry-intake .form-stepper {
    padding-inline: 8px !important;
    gap: 3px !important;
  }

  .inquiry-intake .form-stepper span {
    width: 32px !important;
    height: 32px !important;
    font-size: 15px !important;
  }
}

/* Reference hero crop only: no mobile header redesign. */
@media (max-width: 820px) {
  .home-route .home-hero-image {
    object-position: 82% top !important;
  }

  .home-route .hero-summary {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: clamp(20px, 5.45vw, 26px) !important;
    font-weight: 800 !important;
    line-height: 1.13 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }
}

/* Hero wash: keep the name side clean white/sky, with warmth only on the buildings. */
.home-route .home-hero-image {
  filter: saturate(0.96) contrast(1.08) brightness(1.03) !important;
}

.home-route .home-hero::after {
  background:
    radial-gradient(ellipse at 72% 58%, rgba(224, 174, 88, 0.15) 0%, rgba(224, 174, 88, 0.07) 24%, rgba(255, 254, 250, 0.00) 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 255, 0.84) 28%, rgba(246, 252, 255, 0.28) 49%, rgba(255, 254, 250, 0.02) 74%),
    linear-gradient(0deg, rgba(255, 254, 250, 0.04), rgba(255, 254, 250, 0.04)) !important;
}

@media (max-width: 820px) {
  .home-route .home-hero::after {
    background:
      radial-gradient(ellipse at 78% 45%, rgba(224, 174, 88, 0.12) 0%, rgba(224, 174, 88, 0.06) 24%, rgba(255, 254, 250, 0.00) 48%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 252, 255, 0.74) 45%, rgba(255, 254, 250, 0.12) 84%),
      linear-gradient(180deg, rgba(255, 254, 250, 0.08) 0%, rgba(255, 254, 250, 0.0) 34%, rgba(255, 254, 250, 0.72) 100%) !important;
  }
}

/* Final blessing placement: fixed corner mark, independent of the tower crop. */
.bh-mark,
.home-route .bh-mark {
  position: fixed !important;
  top: calc(12px + env(safe-area-inset-top, 0px)) !important;
  right: 14px !important;
  z-index: 200 !important;
  color: rgba(255, 254, 250, 0.96) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 1px 12px rgba(14, 28, 38, 0.52), 0 0 2px rgba(14, 28, 38, 0.62) !important;
}

@media (min-width: 821px) {
  .bh-mark,
  .home-route .bh-mark {
    top: 14px !important;
    right: 18px !important;
  }
}

/* Mobile Locations section: compact single-row navigation icons. */
@media (max-width: 820px) {
  .home-services {
    padding: 28px 20px 34px !important;
  }

  .home-services h2 {
    margin-bottom: 18px !important;
    font-size: clamp(34px, 9.6vw, 44px) !important;
  }

  .home-services .service-card-row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: hidden !important;
  }

  .home-services .service-card {
    min-height: 96px !important;
    padding: 12px 4px 10px !important;
    gap: 8px !important;
  }

  .home-services .service-card svg {
    width: 30px !important;
    height: 30px !important;
    stroke-width: 1.7 !important;
  }

  .home-services .service-card h3 {
    font-size: clamp(12px, 3.5vw, 15px) !important;
    line-height: 0.98 !important;
    letter-spacing: 0.04em !important;
  }

  .home-services .service-card p {
    display: none !important;
  }
}

/* Mobile hero vertical fit: keep both primary actions above the browser bar. */
@media (max-width: 820px) {
  .home-route .home-hero {
    padding: calc(88px + env(safe-area-inset-top, 0px)) 18px 38px !important;
  }

  .home-route .home-hero-panel {
    max-width: calc(100vw - 36px) !important;
  }

  .home-route .home-hero h1 {
    font-size: clamp(54px, 17vw, 78px) !important;
    line-height: 0.84 !important;
  }

  .home-route .hero-role {
    margin-top: 12px !important;
    padding-bottom: 8px !important;
    font-size: clamp(14px, 3.75vw, 17px) !important;
  }

  .home-route .hero-capabilities {
    margin-top: 12px !important;
    font-size: clamp(13px, 3.65vw, 16px) !important;
    line-height: 1.06 !important;
  }

  .home-route .hero-summary {
    margin-top: 18px !important;
    font-size: clamp(20px, 5.35vw, 25px) !important;
    line-height: 1.08 !important;
  }

  .home-route .hero-proof {
    margin-top: 18px !important;
  }

  .home-route .hero-proof span {
    min-height: 58px !important;
    padding: 8px 10px !important;
  }

  .home-route .hero-proof strong {
    font-size: clamp(25px, 8.8vw, 35px) !important;
  }

  .home-route .hero-proof em {
    font-size: clamp(8px, 2.25vw, 10px) !important;
  }

  .home-route .hero-actions {
    margin-top: 18px !important;
    gap: 9px !important;
  }

  .home-route .hero-actions .btn {
    min-height: 48px !important;
  }
}

/* Final Locations density: compact header and four-across icons on every viewport. */
.home-services {
  padding: clamp(24px, 4vw, 48px) clamp(18px, 5vw, 64px) !important;
}

.home-services h2 {
  margin-bottom: clamp(14px, 2vw, 22px) !important;
  font-size: clamp(30px, 4.6vw, 58px) !important;
  line-height: 0.92 !important;
}

.home-services h2::after {
  width: clamp(40px, 5vw, 66px) !important;
  height: 3px !important;
  margin-top: 10px !important;
}

.home-services .service-card-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: 100% !important;
  overflow: hidden !important;
}

.home-services .service-card {
  min-height: clamp(86px, 11vw, 146px) !important;
  padding: clamp(10px, 1.7vw, 22px) 6px !important;
  gap: clamp(6px, 1vw, 12px) !important;
}

.home-services .service-card svg {
  width: clamp(26px, 3.6vw, 48px) !important;
  height: clamp(26px, 3.6vw, 48px) !important;
  stroke-width: 1.65 !important;
}

.home-services .service-card h3 {
  font-size: clamp(11px, 1.9vw, 23px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.04em !important;
}

.home-services .service-card p {
  display: none !important;
}

@media (max-width: 820px) {
  .home-services {
    padding: 22px 16px 26px !important;
  }

  .home-services h2 {
    margin-bottom: 13px !important;
    font-size: clamp(28px, 7.4vw, 34px) !important;
  }

  .home-services .service-card {
    min-height: 78px !important;
    padding: 9px 3px 8px !important;
  }

  .home-services .service-card svg {
    width: 25px !important;
    height: 25px !important;
  }

  .home-services .service-card h3 {
    font-size: clamp(10px, 3vw, 12px) !important;
  }
}

/* Final Contact density: compact horizontal strip, not a tall tile section. */
.footer-contact {
  display: grid !important;
  grid-template-columns: minmax(110px, 0.62fr) repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  align-self: start !important;
  min-height: 0 !important;
  gap: 0 !important;
  padding: clamp(18px, 2.4vw, 28px) clamp(18px, 3vw, 42px) !important;
}

.footer-contact h2 {
  grid-column: auto !important;
  align-self: center !important;
  margin: 0 !important;
  font-size: clamp(24px, 2.6vw, 38px) !important;
  line-height: 0.9 !important;
}

.footer-contact h2::after {
  width: 38px !important;
  height: 3px !important;
  margin-top: 10px !important;
}

.footer-contact > .contact-method,
.footer-contact > a[href^="mailto:"] {
  display: flex !important;
  flex-direction: row !important;
  min-height: 58px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  margin: 0 -1px 0 0 !important;
  padding: 0 10px !important;
  border: 1px solid #cbd4d9 !important;
  font-size: clamp(10px, 1vw, 15px) !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.footer-contact > a[href^="mailto:"] {
  font-size: 0 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.footer-contact > a[href^="mailto:"]::after {
  content: none !important;
  font-family: var(--display);
  font-size: clamp(10px, 1vw, 15px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-contact > .contact-method svg,
.footer-contact > a[href^="mailto:"] svg {
  width: 20px !important;
  height: 20px !important;
}

@media (max-width: 820px) {
  .footer-contact {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    padding: 18px 16px !important;
  }

  .footer-contact h2 {
    grid-column: 1 / -1 !important;
    margin-bottom: 12px !important;
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  .footer-contact > .contact-method,
  .footer-contact > a[href^="mailto:"] {
    min-height: 50px !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 6px 3px !important;
    font-size: clamp(9px, 2.5vw, 11px) !important;
    letter-spacing: 0.025em !important;
  }

  .footer-contact > a[href^="mailto:"] {
    font-size: 0 !important;
  }

  .footer-contact > a[href^="mailto:"]::after {
    font-size: clamp(9px, 2.5vw, 11px);
    letter-spacing: 0.025em;
  }

  .footer-contact > .contact-method svg,
  .footer-contact > a[href^="mailto:"] svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* Final footer density: stop Contact from stretching into a tall panel. */
.footer-main {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(0, 1fr) !important;
  align-items: start !important;
  overflow: hidden !important;
}

.footer-main > div {
  min-height: 0 !important;
  padding-top: clamp(18px, 2.4vw, 30px) !important;
  padding-bottom: clamp(18px, 2.4vw, 30px) !important;
}

.footer-main > .footer-contact {
  padding: clamp(12px, 1.8vw, 18px) clamp(14px, 2vw, 24px) !important;
}

.footer-contact {
  grid-template-columns: minmax(74px, 0.58fr) repeat(4, minmax(0, 1fr)) !important;
}

.footer-contact h2 {
  font-size: clamp(18px, 1.85vw, 28px) !important;
}

.footer-contact h2::after {
  display: none !important;
}

.footer-contact > .contact-method,
.footer-contact > a[href^="mailto:"] {
  min-height: 46px !important;
  gap: 7px !important;
  padding: 0 8px !important;
  font-size: clamp(9px, 0.8vw, 12px) !important;
}

.footer-contact > a[href^="mailto:"]::after {
  font-size: clamp(9px, 0.8vw, 12px) !important;
}

.footer-contact > .contact-method svg,
.footer-contact > a[href^="mailto:"] svg {
  width: 18px !important;
  height: 18px !important;
}

@media (min-width: 821px) {
  .footer-main {
    grid-template-columns: minmax(250px, 0.8fr) minmax(700px, 1.35fr) minmax(260px, 0.9fr) !important;
  }

  .footer-contact {
    grid-template-columns: minmax(150px, 0.36fr) repeat(4, minmax(118px, 1fr)) !important;
  }

  .footer-contact h2 {
    white-space: nowrap !important;
  }
}

@media (max-width: 820px) {
  .footer-main {
    grid-template-columns: 1fr !important;
    overflow: hidden !important;
  }

  .footer-main > div {
    width: 100% !important;
    border-left: 0 !important;
  }

  .footer-contact {
    grid-template-columns: minmax(68px, 0.72fr) repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
    padding: 12px 10px !important;
  }

  .footer-contact h2 {
    grid-column: auto !important;
    margin: 0 !important;
    font-size: clamp(15px, 4.15vw, 18px) !important;
    align-self: center !important;
  }

  .footer-contact > .contact-method,
  .footer-contact > a[href^="mailto:"] {
    min-height: 44px !important;
    gap: 4px !important;
    padding: 4px 2px !important;
    font-size: clamp(8px, 2.1vw, 10px) !important;
  }

  .footer-contact > a[href^="mailto:"]::after {
    content: none !important;
  }

  .footer-contact > .contact-method svg,
  .footer-contact > a[href^="mailto:"] svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* Current pass: mobile Contact spacing, iPad hero action width, and legible footer-map crop. */
@media (max-width: 820px) {
  .footer-contact {
    grid-template-columns: minmax(92px, 0.98fr) repeat(4, minmax(0, 1fr)) !important;
    column-gap: 10px !important;
    padding-inline: 12px !important;
  }

  .footer-contact h2 {
    padding-right: 8px !important;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .home-route .hero-actions.action-first {
    width: min(calc(100vw - 56px), 760px) !important;
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-route .hero-actions.action-first .btn {
    width: 100% !important;
  }
}

.footer-map {
  display: block !important;
  height: clamp(132px, 10vw, 172px) !important;
  background-position: 50% 50% !important;
  background-size: auto 155% !important;
  cursor: pointer !important;
  transition: filter 180ms ease, background-size 220ms ease !important;
}

.footer-map:hover,
.footer-map:focus-visible {
  filter: contrast(1.06) brightness(0.98) !important;
  outline: 2px solid rgba(95, 129, 152, 0.72) !important;
  outline-offset: -4px !important;
}

@media (max-width: 820px) {
  .footer-map {
    height: 124px !important;
    background-position: 50% 50% !important;
    background-size: auto 180% !important;
  }
}

/* Locations card interaction: subtle hover lift, tap/focus explanation panel. */
.home-services .service-card-row {
  overflow: visible !important;
}

.home-services .service-card {
  position: relative !important;
  color: inherit !important;
  appearance: none !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-right: 0 !important;
  background: rgba(255, 254, 250, 0.92) !important;
  cursor: pointer !important;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease !important;
}

.home-services .service-card:nth-child(even) {
  background: rgba(232, 241, 247, 0.72) !important;
}

.home-services .service-card:hover,
.home-services .service-card:focus,
.home-services .service-card:focus-visible {
  z-index: 25 !important;
  background: rgba(255, 254, 250, 0.98) !important;
  box-shadow: 0 18px 44px rgba(31, 64, 86, 0.14) !important;
  transform: translateY(-2px) !important;
}

.home-services .service-card:focus-visible {
  outline: 2px solid rgba(95, 129, 152, 0.72) !important;
  outline-offset: -4px !important;
}

.home-services .service-card-title {
  margin: 0 !important;
  color: inherit !important;
  font-family: var(--display) !important;
  font-size: clamp(11px, 1.9vw, 23px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.home-services .service-card-detail {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(100% + 12px) !important;
  z-index: 40 !important;
  width: min(330px, 92vw) !important;
  max-width: none !important;
  padding: 14px 15px !important;
  border: 1px solid rgba(95, 129, 152, 0.34) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 251, 0.94)) !important;
  box-shadow: 0 20px 48px rgba(24, 45, 60, 0.18) !important;
  color: #13212b !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(12px, 0.95vw, 14px) !important;
  font-weight: 650 !important;
  line-height: 1.36 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-transform: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 8px) scale(0.98) !important;
  transition:
    opacity 170ms ease,
    transform 170ms ease !important;
}

.home-services .service-card:first-child .service-card-detail {
  left: 10px !important;
  transform: translateY(8px) scale(0.98) !important;
}

.home-services .service-card:last-child .service-card-detail {
  right: 10px !important;
  left: auto !important;
  transform: translateY(8px) scale(0.98) !important;
}

.home-services .service-card:hover .service-card-detail,
.home-services .service-card:focus .service-card-detail,
.home-services .service-card:focus-visible .service-card-detail {
  opacity: 1 !important;
  transform: translate(-50%, 0) scale(1) !important;
}

.home-services .service-card:first-child:hover .service-card-detail,
.home-services .service-card:first-child:focus .service-card-detail,
.home-services .service-card:first-child:focus-visible .service-card-detail,
.home-services .service-card:last-child:hover .service-card-detail,
.home-services .service-card:last-child:focus .service-card-detail,
.home-services .service-card:last-child:focus-visible .service-card-detail {
  transform: translateY(0) scale(1) !important;
}

@media (max-width: 820px) {
  .home-services .service-card-title {
    font-size: clamp(10px, 3vw, 12px) !important;
  }

  .home-services .service-card-detail {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    bottom: max(86px, calc(18px + env(safe-area-inset-bottom, 0px))) !important;
    width: auto !important;
    padding: 14px 15px !important;
    font-size: 14px !important;
    transform: translateY(10px) scale(0.98) !important;
  }

  .home-services .service-card:hover,
  .home-services .service-card:focus,
  .home-services .service-card:focus-visible {
    transform: none !important;
  }

  .home-services .service-card:hover .service-card-detail,
  .home-services .service-card:focus .service-card-detail,
  .home-services .service-card:focus-visible .service-card-detail,
  .home-services .service-card:first-child:hover .service-card-detail,
  .home-services .service-card:first-child:focus .service-card-detail,
  .home-services .service-card:first-child:focus-visible .service-card-detail,
  .home-services .service-card:last-child:hover .service-card-detail,
  .home-services .service-card:last-child:focus .service-card-detail,
  .home-services .service-card:last-child:focus-visible .service-card-detail {
    transform: translateY(0) scale(1) !important;
  }
}

/* Hero action alignment: match the two CTAs to the stats grid width. */
.home-route .hero-actions.action-first {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  width: min(100%, 560px) !important;
  max-width: none !important;
  gap: 10px !important;
}

.home-route .hero-actions.action-first .btn {
  width: 100% !important;
  min-width: 0 !important;
  justify-content: center !important;
}

/* Home hero header: no white strip above the photo. */
.home-route .site-header {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 80 !important;
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.home-route .home-hero {
  min-height: 100vh !important;
  margin-top: 0 !important;
}

/* Home path copy: prevent awkward one-word final lines. */
.home-paths .path-panel p {
  max-width: 460px !important;
  text-wrap: balance !important;
}

/* Desktop hero crop correction: keep the Freedom Tower clear of the top CTA. */
@media (min-width: 821px) {
  .home-route .home-hero-image {
    object-position: 63% 28% !important;
  }

  .home-route .header-cta {
    margin-right: clamp(180px, 12vw, 300px) !important;
  }
}

/* 2026-06-26: locked fixes for header fit, footer density, map cue, and photo readability. */
.home-route .site-header {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  min-height: 58px !important;
  padding: 8px clamp(16px, 2.5vw, 36px) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.desktop-nav {
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(10px, 1.35vw, 23px) !important;
  max-width: none !important;
  min-width: 0 !important;
}

.desktop-nav a,
.header-cta,
.footer-links a,
.home-paths .btn,
.footer-map-cta {
  white-space: nowrap !important;
}

.desktop-nav a {
  font-size: clamp(10px, 0.78vw, 13px) !important;
  letter-spacing: 0.052em !important;
}

.home-route .site-header .brand {
  visibility: hidden !important;
  pointer-events: none !important;
}

.home-route .header-cta {
  height: 42px !important;
  padding: 0 clamp(14px, 1.4vw, 24px) !important;
  margin-right: clamp(130px, 11vw, 260px) !important;
  font-size: clamp(11px, 0.86vw, 14px) !important;
  letter-spacing: 0.055em !important;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-cta {
    display: none !important;
  }
}

.home-paths .path-panel h2,
.home-paths .path-panel p,
.hero-summary,
.service-card-detail,
.footer-bio span {
  text-wrap: balance !important;
}

.footer-main {
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 0.9fr) minmax(280px, 0.9fr) !important;
  align-items: start !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.footer-main > div {
  min-height: 0 !important;
  padding-top: clamp(22px, 2.5vw, 34px) !important;
  padding-bottom: clamp(22px, 2.5vw, 34px) !important;
}

.footer-contact,
.footer-main > .footer-contact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-content: start !important;
  gap: 0 !important;
  padding: clamp(22px, 2.4vw, 34px) clamp(18px, 2.2vw, 30px) !important;
}

.footer-contact h2 {
  grid-column: 1 / -1 !important;
  align-self: start !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  font-size: clamp(28px, 2.7vw, 40px) !important;
  line-height: 0.92 !important;
  white-space: nowrap !important;
}

.footer-contact h2::after {
  display: block !important;
  width: 42px !important;
  height: 3px !important;
  margin-top: 12px !important;
  background: #6f91a4 !important;
  content: "" !important;
}

.footer-contact > .contact-method,
.footer-contact > a[href^="mailto:"] {
  min-height: 52px !important;
  justify-content: center !important;
  gap: 9px !important;
  margin: 0 -1px -1px 0 !important;
  padding: 0 10px !important;
  border: 1px solid #cbd4d9 !important;
  font-size: clamp(10px, 0.9vw, 13px) !important;
  letter-spacing: 0.04em !important;
  overflow: hidden !important;
  text-align: center !important;
}

.footer-contact > a[href^="mailto:"] {
  grid-column: auto !important;
  font-size: clamp(10px, 0.9vw, 13px) !important;
  text-transform: none !important;
}

.footer-contact > .contact-method svg,
.footer-contact > a[href^="mailto:"] svg {
  width: 18px !important;
  height: 18px !important;
}

@media (max-width: 820px) {
  .footer-main {
    grid-template-columns: 1fr !important;
  }

  .footer-contact,
  .footer-main > .footer-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 20px 16px !important;
  }

  .footer-contact h2 {
    margin-bottom: 13px !important;
    font-size: clamp(28px, 7.5vw, 36px) !important;
  }

  .footer-contact > .contact-method,
  .footer-contact > a[href^="mailto:"] {
    min-height: 50px !important;
    gap: 6px !important;
    padding: 0 8px !important;
    font-size: clamp(10px, 2.65vw, 12px) !important;
  }
}

.footer-map {
  position: relative !important;
  display: block !important;
  height: clamp(140px, 11.5vw, 190px) !important;
  background: url("/assets/footer-real-map-Cz62ypXT.png") center center / cover no-repeat #eef5f7 !important;
  cursor: pointer !important;
  filter: saturate(0.88) contrast(1.05) brightness(1.02) !important;
}

.footer-map::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.08), rgba(255, 254, 250, 0.00) 52%, rgba(16, 31, 42, 0.10)),
    linear-gradient(0deg, rgba(255, 254, 250, 0.15), rgba(255, 254, 250, 0.00) 42%);
  content: "";
  pointer-events: none;
}

.footer-map-cta {
  right: clamp(12px, 2.4vw, 34px) !important;
  bottom: clamp(10px, 1.5vw, 18px) !important;
  z-index: 2 !important;
  min-height: 32px !important;
  padding: 0 12px !important;
  background: rgba(18, 31, 42, 0.86) !important;
  color: #fffefa !important;
  font-size: clamp(10px, 0.85vw, 12px) !important;
  letter-spacing: 0.055em !important;
  pointer-events: auto !important;
}

.footer-map-zone {
  right: clamp(12px, 2.4vw, 34px) !important;
}

.footer-map-hiatus {
  right: clamp(142px, 10vw, 180px) !important;
}

@media (max-width: 820px) {
  .footer-map {
    height: 132px !important;
    background-size: auto 155% !important;
    background-position: 50% 50% !important;
  }

  .footer-map-zone {
    right: 10px !important;
  }

  .footer-map-hiatus {
    right: 130px !important;
  }
}

@media (min-width: 821px) {
  .credibility-band {
    background:
      radial-gradient(ellipse at 22% 42%, rgba(255, 255, 255, 0.20), transparent 34%),
      radial-gradient(ellipse at 52% 62%, rgba(255, 255, 255, 0.10), transparent 34%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.20) 32%, rgba(0, 0, 0, 0.13) 58%, rgba(0, 0, 0, 0.45) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.52) 100%),
      url("/assets/experience-production-night-v2-BCu7hnvP.png") 54% 48% / 112% auto no-repeat #030405 !important;
  }

  .credibility-band::after {
    background:
      radial-gradient(ellipse at 25% 40%, rgba(255, 255, 255, 0.18), transparent 30%),
      radial-gradient(ellipse at 84% 28%, rgba(255, 255, 255, 0.13), transparent 21%),
      radial-gradient(ellipse at 58% 62%, rgba(255, 255, 255, 0.09), transparent 32%) !important;
    opacity: 0.58 !important;
  }
}

/* Experience image: reveal the left truck/interior and keep the Freedom Tower spire inside frame. */
@media (min-width: 821px) {
  .credibility-band {
    background:
      radial-gradient(ellipse at 23% 43%, rgba(255, 255, 255, 0.30), transparent 36%),
      radial-gradient(ellipse at 51% 61%, rgba(255, 255, 255, 0.12), transparent 34%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.18) 32%, rgba(0, 0, 0, 0.13) 58%, rgba(0, 0, 0, 0.43) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.10) 48%, rgba(0, 0, 0, 0.50) 100%),
      url("/assets/experience-production-night-v2-BCu7hnvP.png") 54% 39% / 108% auto no-repeat #030405 !important;
  }

  .credibility-band::after {
    background:
      radial-gradient(ellipse at 25% 42%, rgba(255, 255, 255, 0.22), transparent 31%),
      radial-gradient(ellipse at 84% 24%, rgba(255, 255, 255, 0.12), transparent 21%),
      radial-gradient(ellipse at 58% 62%, rgba(255, 255, 255, 0.08), transparent 32%) !important;
    opacity: 0.52 !important;
  }
}

/* Resources page: compact, verified production reference directory. */
.resources-page {
  display: grid !important;
  gap: clamp(16px, 2.2vw, 28px) !important;
  padding-top: clamp(76px, 7vw, 112px) !important;
}

.resources-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(18px, 3vw, 44px);
  padding-bottom: clamp(16px, 2vw, 26px);
  border-bottom: 1px solid #cfd7dc;
}

.resources-hero span {
  display: block;
  margin-bottom: 10px;
  color: #6f91a4;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resources-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #101820;
  font-family: var(--display);
  font-size: clamp(42px, 5.9vw, 84px);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.resources-hero p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #3e4b53;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.45;
  text-wrap: balance;
}

.resources-hero .btn {
  min-width: 210px;
}

.resource-map-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

.resource-map-action {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  min-height: clamp(112px, 9vw, 132px);
  align-items: center;
  gap: clamp(12px, 1.5vw, 18px);
  padding: clamp(14px, 1.5vw, 20px) clamp(15px, 1.8vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(91, 119, 134, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(228, 240, 246, 0.88)),
    #f7fafb;
  color: #101820;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.resource-map-action:hover,
.resource-map-action:focus-visible {
  border-color: #6f91a4;
  box-shadow: 0 18px 44px rgba(31, 60, 76, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-3px) scale(1.01);
  outline: none;
}

.resource-map-action svg {
  box-sizing: content-box;
  grid-column: 1;
  grid-row: 1 / span 2;
  width: clamp(20px, 1.7vw, 26px);
  height: clamp(20px, 1.7vw, 26px);
  padding: 10px;
  border: 1px solid rgba(49, 84, 105, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #315469;
}

.resource-map-action strong {
  grid-column: 2;
  max-width: 320px;
  font-family: var(--display);
  font-size: clamp(20px, 1.95vw, 32px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.resource-map-action span {
  grid-column: 2;
  max-width: 430px;
  color: #3d4b54;
  font-size: clamp(13px, 0.96vw, 15px);
  line-height: 1.35;
}

.resource-map-action em {
  display: inline-flex;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(49, 84, 105, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #315469;
  font-family: var(--display);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hotspot-action {
  background:
    linear-gradient(135deg, rgba(242, 249, 251, 0.98), rgba(207, 224, 234, 0.90)),
    #e8f1f6;
}

.permit-hub-action {
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.98), rgba(242, 232, 214, 0.90)),
    #fbf6ea;
}

.resources-directory {
  display: grid;
  gap: 12px;
}

.hotspot-page {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.hotspot-hero {
  gap: 10px;
  max-width: 760px;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.hotspot-hero h1 {
  max-width: 760px;
  margin-top: 8px;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 0.94;
}

.hotspot-hero p {
  max-width: 700px;
  margin-top: 0;
  text-wrap: balance;
}

.hotspot-map-panel {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 480px);
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 28px);
}

.hotspot-map-embed {
  min-height: 520px;
  height: clamp(480px, 46vw, 620px);
  overflow: hidden;
  border: 1px solid #cbd4d9;
  border-radius: 6px;
}

.hotspot-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hotspot-map-copy {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: clamp(4px, 0.5vw, 8px) 0;
}

.hotspot-map-copy span {
  color: #6f91a4;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hotspot-map-copy h2 {
  max-width: 420px;
  margin: 0;
  color: #101820;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hotspot-map-copy p {
  margin: 0;
  color: #3e4b53;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.48;
  text-wrap: pretty;
}

.hotspot-map-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 5px;
}

.hotspot-map-actions .btn {
  width: 100%;
  justify-content: center;
  min-width: 0;
}

.mome-notice,
.mome-alert {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.4vw, 30px);
  align-items: start;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid #cbd4d9;
  background: rgba(255, 254, 250, 0.96);
}

.mome-alert {
  grid-template-columns: minmax(0, 1fr) auto;
  border-color: rgba(177, 133, 63, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.98), rgba(246, 239, 225, 0.88)),
    #fffdfa;
}

.mome-notice span,
.mome-alert span {
  display: block;
  margin-bottom: 8px;
  color: #6f91a4;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mome-alert span {
  color: #8d6525;
}

.mome-notice h2,
.mome-alert h2 {
  max-width: 880px;
  margin: 0;
  color: #101820;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.mome-notice p,
.mome-alert p {
  max-width: 920px;
  margin: 12px 0 0;
  color: #3e4b53;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.5;
}

.mome-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid rgba(82, 107, 122, 0.18);
}

.mome-source-links span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin: 0 4px 0 0;
  color: #6f91a4;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mome-source-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid rgba(82, 107, 122, 0.20);
  background: rgba(247, 250, 252, 0.62);
  color: #425260;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}

.mome-source-links a:hover,
.mome-source-links a:focus-visible {
  border-color: #6f91a4;
  color: #101820;
  outline: none;
}

.mome-source-links svg {
  width: 13px;
  height: 13px;
}

.mome-alert .btn {
  align-self: start;
  white-space: nowrap;
}

.resource-panel {
  border: 0;
  background: transparent;
}

.resource-panel[open] {
  background: transparent;
}

.resource-panel summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(16px, 2vw, 26px);
  border: 1px solid #cbd4d9;
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.94);
  cursor: pointer;
  list-style: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.resource-panel summary::-webkit-details-marker {
  display: none;
}

.resource-panel summary span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: #101820;
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.resource-panel summary > svg {
  flex: 0 0 auto;
  color: #315469;
  transition: transform 180ms ease;
}

.resource-panel summary:hover,
.resource-panel summary:focus-visible {
  border-color: #6f91a4;
  background: #f2f8fb;
  box-shadow: 0 12px 28px rgba(31, 60, 76, 0.10);
  transform: translateY(-1px);
  outline: none;
}

.resource-panel[open] summary {
  border-color: rgba(16, 24, 32, 0.86);
  background: #101820;
}

.resource-panel[open] summary span,
.resource-panel[open] summary > svg {
  color: #fffdfa;
}

.resource-panel[open] summary > svg {
  transform: rotate(180deg);
}

.resource-panel > p {
  margin: 0;
  padding: 14px clamp(18px, 2.1vw, 28px) 12px;
  color: #51616b;
  font-size: 15px;
  line-height: 1.4;
}

.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0 clamp(12px, 1.4vw, 18px) 16px;
}

.resource-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  flex: 1 1 min(100%, 310px);
  min-height: 48px;
  padding: 10px 15px 10px 17px;
  border: 1px solid rgba(82, 107, 122, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #122331;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.resource-row:hover,
.resource-row:focus-visible {
  border-color: #6f91a4;
  background: #e8f1f6;
  box-shadow: 0 10px 22px rgba(31, 60, 76, 0.09);
  color: #0a1822;
  transform: translateY(-1px);
  outline: none;
}

.resource-row strong {
  min-width: 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.25;
  font-weight: 820;
}

.resource-row svg {
  color: #315469;
}

.guide-row {
  align-content: start;
  flex-basis: min(100%, 430px);
  min-height: 104px;
  border-radius: 26px;
}

.guide-row span {
  grid-column: 1 / -1;
  color: #53646d;
  font-size: 14px;
  line-height: 1.35;
}

.permit-resources-page {
  gap: clamp(18px, 2.2vw, 30px);
}

.permit-hub-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 1fr) auto;
  gap: clamp(12px, 2vw, 22px);
  align-items: center;
  padding: clamp(16px, 2.2vw, 26px);
  border: 1px solid #cbd4d9;
  background: rgba(255, 254, 250, 0.96);
}

.permit-hub-note strong {
  color: #101820;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.permit-hub-note span {
  color: #3e4b53;
  font-size: 16px;
  line-height: 1.5;
}

.permit-hub-note em {
  color: #6b5b3e;
  font-family: var(--display);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.permit-resource-grid {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
}

.permit-resource-section {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 32px);
  padding-top: clamp(22px, 3vw, 36px);
  border-top: 1px solid #cbd4d9;
}

.permit-resource-section-head {
  display: grid;
  align-content: start;
  gap: 10px;
}

.permit-resource-section-head span,
.permit-source-card > div > span {
  color: #6f91a4;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.permit-resource-section-head h2 {
  margin: 0;
  color: #101820;
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.permit-resource-section-head p {
  margin: 0;
  color: #3e4b53;
  font-size: 16px;
  line-height: 1.48;
}

.permit-source-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.permit-source-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid #cbd4d9;
  border-radius: 8px;
  background: #fffefa;
}

.permit-source-card h3 {
  margin: 8px 0 0;
  color: #101820;
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.permit-source-card p {
  margin: 10px 0 0;
  color: #3e4b53;
  font-size: 15px;
  line-height: 1.48;
}

.permit-source-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #3e4b53;
  font-size: 14px;
  line-height: 1.43;
}

.permit-source-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  align-self: end;
  color: #315469;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.permit-source-card a:hover,
.permit-source-card a:focus-visible {
  color: #101820;
  outline: none;
}

.permit-hub-actions {
  padding-top: 4px;
}

@media (max-width: 1120px) {
  .resource-map-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .permit-resource-section {
    grid-template-columns: 1fr;
  }

  .hotspot-map-panel {
    grid-template-columns: 1fr;
  }

  .hotspot-map-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .resources-page {
    gap: 14px !important;
    padding-top: 82px !important;
  }

  .resources-hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .resources-hero h1 {
    font-size: clamp(36px, 10.6vw, 50px);
  }

  .resources-hero p {
    margin-top: 12px;
    font-size: 16px;
  }

  .resources-hero .btn {
    width: 100%;
    min-width: 0;
  }

  .resource-map-actions {
    grid-template-columns: 1fr;
  }

  .resource-map-action {
    grid-template-rows: auto;
    min-height: 104px;
    padding: 15px;
  }

  .resource-map-action svg,
  .resource-map-action em {
    grid-row: auto;
  }

  .resource-map-action strong {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1;
  }

  .resource-map-action span {
    display: none;
  }

  .resource-map-action em {
    font-size: 10px;
    min-height: 28px;
    padding: 0 10px;
  }

  .hotspot-hero h1 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .hotspot-map-panel {
    padding: 14px;
  }

  .hotspot-map-embed {
    min-height: 390px;
    height: 430px;
  }

  .hotspot-map-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hotspot-map-actions {
    grid-template-columns: 1fr;
  }

  .permit-resources-page {
    gap: 14px !important;
    padding-top: 82px !important;
  }

  .permit-hub-note {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .permit-hub-note em {
    white-space: normal;
  }

  .permit-source-card-list {
    grid-template-columns: 1fr;
  }

  .permit-resource-section-head h2 {
    font-size: clamp(25px, 7.5vw, 36px);
  }

  .mome-notice,
  .mome-alert {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .mome-notice h2,
  .mome-alert h2 {
    font-size: clamp(24px, 7.6vw, 34px);
  }

  .mome-alert .btn {
    width: 100%;
  }

  .resource-panel summary {
    min-height: 58px;
    padding: 0 14px;
  }

  .resource-panel summary span {
    font-size: clamp(17px, 5.6vw, 22px);
  }

  .resource-list {
    gap: 8px;
    padding: 0 6px 14px;
  }

  .resource-row {
    min-height: 54px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .resource-map-action {
    min-height: 94px;
    gap: 10px;
  }

  .resource-map-action svg {
    padding: 8px;
  }

  .resource-map-action strong {
    max-width: none;
  }

  .resource-map-action em {
    justify-self: end;
  }
}

/* 2026-06-26: focused correction for hero crop and Locations info bubble. */
@media (min-width: 821px) {
  .home-route .home-hero-image {
    object-position: 59% 0% !important;
    transform: none !important;
  }
}

@media (max-width: 820px) {
  .home-route .home-hero-image {
    object-position: 84% 10% !important;
    transform: translate(1.4%, 0.8%) scale(1.035) !important;
  }
}

.home-services {
  padding-top: clamp(26px, 4vw, 54px) !important;
}

.services-heading-row {
  display: grid !important;
  grid-template-columns: auto minmax(260px, 1fr) !important;
  align-items: center !important;
  gap: clamp(16px, 3vw, 42px) !important;
  margin-bottom: clamp(12px, 1.7vw, 20px) !important;
}

.services-heading-row h2 {
  margin: 0 !important;
  font-size: clamp(42px, 6vw, 82px) !important;
}

.service-selector {
  align-self: center !important;
  width: min(920px, 100%) !important;
}

.service-selector-track {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  min-height: 46px !important;
  padding: 4px !important;
  overflow: hidden !important;
  border: 1px solid rgba(95, 129, 152, 0.34) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 14px 34px rgba(24, 45, 60, 0.1) !important;
}

.service-selector-thumb {
  position: absolute !important;
  top: 4px !important;
  bottom: 4px !important;
  left: 4px !important;
  width: calc((100% - 8px) / 4) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #6f91a3, #2e5369) !important;
  box-shadow: 0 10px 22px rgba(24, 45, 60, 0.18) !important;
  transform: translateX(calc(var(--service-index) * 100%)) !important;
  transition: transform 180ms ease !important;
}

.service-selector-option {
  position: relative !important;
  z-index: 1 !important;
  min-height: 38px !important;
  padding: 0 clamp(8px, 1vw, 14px) !important;
  border: 0 !important;
  background: transparent !important;
  color: #142431 !important;
  cursor: pointer !important;
  font-family: var(--display) !important;
  font-size: clamp(14px, 1.25vw, 20px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  transition: color 160ms ease !important;
}

.service-selector-option.active {
  color: #fffdfa !important;
}

.service-selector-detail {
  min-height: 22px !important;
  margin: 8px 4px 0 !important;
  color: #13212b !important;
  font-size: clamp(13px, 1.05vw, 16px) !important;
  font-weight: 750 !important;
  line-height: 1.32 !important;
  letter-spacing: 0 !important;
}

.home-services .service-card-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

.home-services .service-card {
  min-height: clamp(108px, 12vw, 152px) !important;
  padding: clamp(16px, 2vw, 24px) clamp(8px, 1vw, 16px) !important;
}

.home-services .service-card.active {
  z-index: 24 !important;
  background: rgba(255, 254, 250, 0.98) !important;
  box-shadow: inset 0 -4px 0 rgba(95, 129, 152, 0.55), 0 18px 44px rgba(31, 64, 86, 0.12) !important;
  color: #122331 !important;
}

.home-services .service-card-detail {
  display: none !important;
}

@keyframes serviceBubbleIn {
  from {
    opacity: 0;
    transform: translateX(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 820px) {
  .home-services {
    padding-top: 24px !important;
  }

  .services-heading-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .services-heading-row h2 {
    font-size: clamp(38px, 12vw, 56px) !important;
  }

  .service-selector {
    max-width: none !important;
  }

  .service-selector-track {
    min-height: 42px !important;
    padding: 3px !important;
  }

  .service-selector-thumb {
    top: 3px !important;
    bottom: 3px !important;
    left: 3px !important;
    width: calc((100% - 6px) / 4) !important;
  }

  .service-selector-option {
    min-height: 36px !important;
    padding: 0 4px !important;
    font-size: clamp(12px, 3.5vw, 15px) !important;
  }

  .service-selector-detail {
    margin-top: 7px !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  .home-services .service-card {
    min-height: 92px !important;
    padding: 12px 5px !important;
  }

  .home-services .service-card svg {
    width: 31px !important;
    height: 31px !important;
  }
}

/* 2026-06-27: desktop-only hero and footer contact alignment correction. */
@media (min-width: 821px) {
  .home-route .footer-main {
    align-items: start !important;
  }

  .home-route .footer-main > .footer-contact {
    align-self: start !important;
    padding-bottom: clamp(10px, 1vw, 14px) !important;
  }

  .home-route .footer-contact {
    align-content: start !important;
  }

  .home-route .footer-contact h2 {
    margin-bottom: 10px !important;
  }

.home-route .footer-contact > .contact-method,
  .home-route .footer-contact > a[href^="mailto:"] {
    min-height: 46px !important;
  }
}

/* 2026-06-27: site-wide wrap discipline for text-heavy blocks. */
.page-hero h1,
.clients-hero-copy h1,
.resources-hero h1,
.section-head h2,
.home-intro h2,
.home-services h2,
.path-panel h2,
.property-copy h2,
.form-card h2 {
  text-wrap: balance !important;
}

.page-hero p,
.clients-hero-copy p,
.resources-hero p,
.section-head p,
.prose p,
.home-intro-copy p,
.path-panel p,
.resource-map-action span,
.resource-panel > p,
.guide-row span,
.property-copy p,
.intake-direct-strip p,
.form-card p,
.field-help,
.contact-card a,
.contact-card h3,
.footer-bio span {
  text-wrap: pretty !important;
}

.path-panel p,
.resource-map-action span,
.guide-row span,
.contact-card a,
.footer-bio span {
  overflow-wrap: anywhere;
}

/* 2026-06-27: final footer composition pass. */
.site-footer .footer-main {
  display: grid !important;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1fr) minmax(330px, 0.95fr) !important;
  align-items: stretch !important;
  gap: 0 !important;
  border-top: 1px solid #cfd7dc !important;
  border-bottom: 1px solid #cfd7dc !important;
  overflow: hidden !important;
}

/* 2026-06-29: contrast fixes only for unreadable chrome/buttons. */
.bh-mark,
.home-route .bh-mark {
  color: rgba(255, 254, 250, 0.96) !important;
  text-shadow: 0 1px 12px rgba(14, 28, 38, 0.52), 0 0 2px rgba(14, 28, 38, 0.62) !important;
}

.contact-card .contact-method {
  color: #17232b !important;
}

.site-footer .footer-main > div {
  min-height: clamp(188px, 13vw, 230px) !important;
  padding: clamp(22px, 2.3vw, 34px) clamp(24px, 3vw, 48px) !important;
  border-left: 1px solid #d9e0e4 !important;
}

.site-footer .footer-main > div:first-child {
  border-left: 0 !important;
}

.site-footer .footer-bio {
  display: grid !important;
  align-content: start !important;
  gap: clamp(12px, 1.1vw, 16px) !important;
}

.site-footer .footer-bio strong {
  max-width: 10.5ch !important;
  margin: 0 !important;
  font-size: clamp(38px, 3.45vw, 56px) !important;
  line-height: 0.88 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

.site-footer .footer-bio span {
  max-width: 42ch !important;
  margin: 0 !important;
  color: #2d3840 !important;
  font-size: clamp(14px, 0.92vw, 16px) !important;
  line-height: 1.35 !important;
  text-wrap: pretty !important;
}

.site-footer .footer-bio span + span {
  padding-top: clamp(12px, 1.1vw, 16px) !important;
  border-top: 1px solid #d2d9de !important;
}

.site-footer .footer-contact,
.site-footer .footer-main > .footer-contact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: auto repeat(2, minmax(52px, 64px)) !important;
  align-content: start !important;
  align-self: stretch !important;
  gap: 0 !important;
  background: linear-gradient(135deg, rgba(248, 252, 255, 0.82), rgba(255, 254, 250, 0.96)) !important;
}

.site-footer .footer-contact h2 {
  grid-column: 1 / -1 !important;
  align-self: start !important;
  margin: 0 0 clamp(14px, 1.25vw, 18px) !important;
  padding: 0 !important;
  color: #17232b !important;
  font-size: clamp(34px, 2.75vw, 48px) !important;
  line-height: 0.9 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.site-footer .footer-contact h2::after {
  display: block !important;
  width: 46px !important;
  height: 3px !important;
  margin-top: 10px !important;
  background: #6f91a4 !important;
  content: "" !important;
}

.site-footer .footer-contact > .contact-method,
.site-footer .footer-contact > a[href^="mailto:"] {
  display: flex !important;
  flex-direction: row !important;
  min-height: 52px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  margin: 0 -1px -1px 0 !important;
  padding: 0 12px !important;
  border: 1px solid #cbd4d9 !important;
  background: rgba(255, 254, 250, 0.58) !important;
  color: #17232b !important;
  font-family: var(--display) !important;
  font-size: clamp(12px, 0.9vw, 15px) !important;
  line-height: 1 !important;
  letter-spacing: 0.05em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.site-footer .footer-contact > a[href^="mailto:"] {
  font-size: clamp(12px, 0.9vw, 15px) !important;
}

.site-footer .footer-contact > a[href^="mailto:"]::after {
  content: none !important;
}

.site-footer .footer-contact svg {
  width: 19px !important;
  height: 19px !important;
  color: #315469 !important;
}

.site-footer .footer-links {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-content: start !important;
  gap: 0 !important;
  padding: clamp(22px, 2.3vw, 34px) clamp(24px, 3vw, 48px) !important;
}

.site-footer .footer-links a {
  display: flex !important;
  min-height: 40px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 -1px -1px 0 !important;
  padding: 0 12px !important;
  border: 1px solid #d3dbe0 !important;
  color: #17232b !important;
  font-family: var(--display) !important;
  font-size: clamp(12px, 0.92vw, 16px) !important;
  line-height: 1 !important;
  letter-spacing: 0.06em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr !important;
  }

  .site-footer .footer-main > div {
    min-height: 0 !important;
    border-left: 0 !important;
    border-top: 1px solid #d9e0e4 !important;
  }

  .site-footer .footer-main > div:first-child {
    border-top: 0 !important;
  }

  .site-footer .footer-bio strong {
    max-width: none !important;
    font-size: clamp(38px, 9vw, 58px) !important;
  }

  .site-footer .footer-contact,
  .site-footer .footer-main > .footer-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .site-footer .footer-contact h2 {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-main > div,
  .site-footer .footer-links {
    padding: 22px 16px !important;
  }

  .site-footer .footer-contact > .contact-method,
  .site-footer .footer-contact > a[href^="mailto:"],
  .site-footer .footer-links a {
    min-height: 48px !important;
    font-size: 11px !important;
  }
}

/* 2026-06-27: compact footer alignment from screenshot review. */
@media (min-width: 981px) {
  .site-footer .footer-main {
    grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr) minmax(340px, 0.78fr) !important;
  }

  .site-footer .footer-main > div {
    min-height: 0 !important;
    padding-top: clamp(18px, 1.8vw, 28px) !important;
    padding-bottom: clamp(18px, 1.8vw, 28px) !important;
  }

  .site-footer .footer-bio {
    align-content: center !important;
    gap: 12px !important;
  }

  .site-footer .footer-bio strong {
    max-width: 9.5ch !important;
    font-size: clamp(34px, 3.05vw, 50px) !important;
    line-height: 0.86 !important;
  }

  .site-footer .footer-bio span {
    max-width: 36ch !important;
    font-size: clamp(13px, 0.82vw, 15px) !important;
    line-height: 1.32 !important;
  }

  .site-footer .footer-bio span + span {
    padding-top: 12px !important;
  }

  .site-footer .footer-contact,
  .site-footer .footer-main > .footer-contact {
    align-content: center !important;
    grid-template-rows: auto repeat(2, 52px) !important;
    padding-inline: clamp(28px, 3.2vw, 58px) !important;
  }

  .site-footer .footer-contact h2 {
    margin-bottom: 12px !important;
    font-size: clamp(34px, 2.55vw, 46px) !important;
  }

  .site-footer .footer-contact h2::after {
    width: 44px !important;
    margin-top: 9px !important;
  }

  .site-footer .footer-contact > .contact-method,
  .site-footer .footer-contact > a[href^="mailto:"] {
    min-height: 52px !important;
    font-size: clamp(11px, 0.8vw, 14px) !important;
  }

  .site-footer .footer-links {
    width: 100% !important;
    align-content: center !important;
    padding: clamp(18px, 1.8vw, 28px) clamp(20px, 2.5vw, 38px) !important;
  }

  .site-footer .footer-links a {
    min-height: 38px !important;
    font-size: clamp(11px, 0.82vw, 14px) !important;
  }
}

/* 2026-06-27: compact profile proof links. */
.site-footer .footer-profiles {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 0 !important;
}

.site-footer .footer-profiles a {
  display: inline-flex !important;
  min-height: 30px !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0 10px !important;
  border: 1px solid #d3dbe0 !important;
  color: #17232b !important;
  font-family: var(--display) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: 0.06em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.site-footer .footer-profiles a:hover,
.site-footer .footer-profiles a:focus-visible {
  border-color: #8fa3af !important;
  background: rgba(255, 254, 250, 0.82) !important;
  color: #0d1a22 !important;
}

.site-footer .footer-profiles svg {
  width: 13px !important;
  height: 13px !important;
  color: #315469 !important;
  flex: 0 0 auto !important;
}

/* 2026-06-29: footer contact row should read as one aligned composition. */
@media (min-width: 981px) {
  .site-footer .footer-main {
    align-items: stretch !important;
    grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.05fr) minmax(420px, 0.86fr) !important;
  }

  .site-footer .footer-main > div {
    align-content: start !important;
    padding-top: clamp(24px, 2vw, 34px) !important;
    padding-bottom: clamp(20px, 1.8vw, 30px) !important;
  }

  .site-footer .footer-contact,
  .site-footer .footer-main > .footer-contact,
  .site-footer .footer-links {
    align-content: start !important;
  }

  .site-footer .footer-contact {
    grid-template-rows: auto repeat(2, 54px) !important;
    padding-inline: clamp(34px, 3vw, 56px) !important;
  }

  .site-footer .footer-contact h2 {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
  }

  .site-footer .footer-links {
    padding-top: clamp(24px, 2vw, 34px) !important;
  }
}

/* 2026-06-29: center footer tools so the row reads as one designed unit. */
@media (min-width: 981px) {
  .site-footer .footer-bio,
  .site-footer .footer-contact,
  .site-footer .footer-main > .footer-contact,
  .site-footer .footer-main > .footer-links,
  .site-footer .footer-links {
    align-content: center !important;
  }

  .site-footer .footer-main > div {
    padding-top: clamp(20px, 1.8vw, 30px) !important;
    padding-bottom: clamp(20px, 1.8vw, 30px) !important;
  }

  .site-footer .footer-contact {
    grid-template-rows: auto repeat(2, 56px) !important;
  }

  .site-footer .footer-contact h2 {
    margin-bottom: 14px !important;
  }

  .site-footer .footer-links {
    align-self: stretch !important;
    grid-auto-rows: 46px !important;
    justify-self: stretch !important;
    min-height: 0 !important;
    padding-top: clamp(20px, 1.8vw, 30px) !important;
    padding-bottom: clamp(20px, 1.8vw, 30px) !important;
    width: 100% !important;
  }
}

.form-stepper strong,
.direct-intake .choice-grid button,
.resource-row strong {
  text-wrap: balance !important;
  overflow-wrap: anywhere;
}

@media (min-width: 821px) {
  .page-hero {
    max-width: min(980px, 72vw) !important;
  }

  .compact-hero h1 {
    max-width: min(850px, 70vw) !important;
  }

  .direct-intake .form-card p {
    max-width: 72ch;
  }

  .direct-intake .choice-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  .property-copy {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 22px 0 !important;
  }

  .property-copy p {
    max-width: none;
  }

  .property-copy-text {
    grid-column: auto;
    max-width: none;
  }
}

/* 2026-06-28: rebalance Experience links after Clips removal. */
.credibility-band .credibility-links {
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.credibility-band .credibility-links a {
  min-width: 0 !important;
}

@media (min-width: 821px) {
  .credibility-band {
    grid-template-columns: minmax(340px, 0.42fr) minmax(0, 1fr) !important;
  }
}

@media (max-width: 820px) {
  .credibility-band .credibility-links {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* 2026-06-28: force Experience into a full-width three-choice row. */
.credibility-band {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center !important;
}

.credibility-band h2 {
  width: 100% !important;
}

.credibility-band .credibility-links {
  align-self: stretch !important;
}

.credibility-proof {
  max-width: 780px !important;
  margin: -8px 0 22px !important;
  color: rgba(255, 254, 250, 0.82) !important;
  font-size: clamp(15px, 1.45vw, 20px) !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
}

.credibility-band .credibility-links {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 820px) {
  .credibility-proof {
    margin: -2px 0 16px !important;
    font-size: 14px !important;
  }

  .credibility-band .credibility-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* 2026-06-28: mobile date/time fields fit inside the form card. */
@media (max-width: 820px) {
  .direct-intake .date-list-field {
    padding: 8px !important;
    overflow: hidden !important;
  }

  .direct-intake .date-row {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
    padding: 8px !important;
    overflow: hidden !important;
  }

  .direct-intake .date-row-title {
    grid-column: 1 / -1 !important;
    font-size: 12px !important;
  }

  .direct-intake .date-input-wrap {
    min-width: 0 !important;
    gap: 4px !important;
  }

  .direct-intake .date-input-wrap > span {
    display: block !important;
    font-size: 8.5px !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .direct-intake .date-input-wrap input {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 0 5px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    text-align: center !important;
  }

  .direct-intake .date-input-wrap input[type="date"] {
    font-size: 11px !important;
  }
}

/* 2026-06-28: mobile form navigation should lead forward. */
@media (max-width: 820px) {
  .direct-intake .form-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .direct-intake .form-nav > .btn.primary {
    order: 1 !important;
    width: 100% !important;
  }

  .direct-intake .form-nav-left {
    order: 2 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .direct-intake .form-nav-left .btn {
    min-height: 48px !important;
    font-size: clamp(18px, 6vw, 30px) !important;
  }

  .direct-intake .form-nav-left .btn:only-child {
    grid-column: 1 / -1 !important;
  }
}

/* 2026-06-28: mobile vehicle picker with quantities. */
@media (max-width: 820px) {
  .direct-intake .vehicle-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .direct-intake .vehicle-option-grid button {
    min-height: 58px !important;
    padding: 9px 8px !important;
  }

  .direct-intake .vehicle-option-grid button span {
    font-size: 13px !important;
  }

  .direct-intake .vehicle-option-grid button strong {
    font-size: 9px !important;
    letter-spacing: 0.04em !important;
  }

  .direct-intake .vehicle-quantity-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .direct-intake .vehicle-quantity-row > div {
    grid-template-columns: 42px minmax(58px, 1fr) 42px !important;
    width: 100% !important;
  }

  .direct-intake .vehicle-quantity-row button {
    width: 42px !important;
    height: 38px !important;
  }

  .direct-intake .vehicle-quantity-row input {
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    font-size: 16px !important;
  }
}

/* Final header brand tagline lock. */
.site-header .brand,
.home-route .site-header .brand {
  display: inline-flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
  min-width: 0 !important;
}

.site-header .brand span {
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
}

.site-header .brand em {
  display: block !important;
  margin: 0 !important;
  color: rgba(18, 29, 38, 0.72) !important;
  font-family: var(--display) !important;
  font-size: clamp(9px, 0.66vw, 11px) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.home-route .site-header .brand em {
  color: rgba(18, 29, 38, 0.68) !important;
}

@media (max-width: 820px) {
  .site-header .brand strong {
    font-size: 22px !important;
  }

  .site-header .brand em {
    font-size: 9px !important;
    letter-spacing: 0.045em !important;
  }
}
/* Final homepage correction: no duplicate brand, keep menu/nav, keep CTAs one line. */
.home-route .site-header > .brand,
.home-route .site-header .brand {
  display: inline-flex !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (min-width: 1181px) {
  .home-route .desktop-nav {
    display: flex !important;
  }
}

@media (max-width: 1180px) {
  .home-route .site-header .menu-toggle,
  .site-header .menu-toggle {
    display: inline-flex !important;
  }
}

.home-route .hero-actions.action-first .btn {
  white-space: nowrap !important;
}
/* Final inner-page header scale: make the service line legible without changing the homepage hero. */
.site-shell.inner-route .site-header .brand {
  gap: 14px !important;
}

.site-shell.inner-route .site-header .brand em {
  font-size: clamp(10.5px, 0.78vw, 12.5px) !important;
  letter-spacing: 0.055em !important;
}

@media (max-width: 820px) {
  .site-shell.inner-route .site-header .brand em {
    font-size: 10px !important;
    letter-spacing: 0.045em !important;
  }
}

/* Final homepage desktop nav placement: keep the menu between the hero name and tower. */
@media (min-width: 1181px) {
  .home-route .desktop-nav {
    justify-content: center !important;
    gap: clamp(14px, 1.22vw, 26px) !important;
  }

  .home-route .desktop-nav a {
    font-size: clamp(13px, 0.96vw, 18px) !important;
  }
}

/* Desktop hero crop lock: keep the tower needle visually under the B"H mark. */
@media (min-width: 821px) {
  .home-route .home-hero-image {
    object-position: 64% 0% !important;
    transform: translate(4.8%, 3.1%) scale(1.2) !important;
  }
}

/* 2026-06-28: schedule date/time boxes, clean labeled controls with no mobile overlap. */
.direct-intake .date-input-wrap {
  padding: 10px 12px !important;
  border: 1px solid rgba(82, 107, 122, 0.24) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 1px 0 rgba(18, 32, 42, 0.03) !important;
}

.direct-intake .date-input-wrap > span {
  color: rgba(23, 38, 51, 0.62) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.direct-intake .date-input-wrap input {
  min-height: 30px !important;
  height: 30px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
}

@media (max-width: 820px) {
  .direct-intake .date-list-field {
    padding: 10px !important;
  }

  .direct-intake .date-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .direct-intake .date-row-title {
    grid-column: 1 / -1 !important;
    font-size: 14px !important;
  }

  .direct-intake .date-row .date-input-wrap:first-of-type {
    grid-column: 1 / -1 !important;
  }

  .direct-intake .date-input-wrap {
    min-width: 0 !important;
    padding: 9px 10px !important;
  }

  .direct-intake .date-input-wrap > span {
    font-size: 9px !important;
    letter-spacing: 0.055em !important;
    white-space: nowrap !important;
  }

  .direct-intake .date-input-wrap input {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 15px !important;
    text-align: left !important;
  }

  .direct-intake .date-input-wrap input[type="date"] {
    font-size: 15px !important;
  }
}

/* 2026-07-07: footer Contact grid cleanup and form-first call screening. */
.contact-card-note {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.site-footer .footer-contact,
.site-footer .footer-main > .footer-contact {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: auto auto repeat(2, minmax(54px, 58px)) !important;
  align-content: center !important;
}

.site-footer .footer-contact-note {
  grid-column: 1 / -1;
  max-width: 42ch;
  margin: -6px 0 16px !important;
  color: #40515c;
  font-size: clamp(12px, 0.84vw, 14px);
  font-weight: 750;
  line-height: 1.35;
}

.site-footer .footer-contact > .contact-method,
.site-footer .footer-contact > a[href^="mailto:"] {
  min-height: 56px !important;
  padding: 0 12px !important;
  gap: 8px !important;
  letter-spacing: 0 !important;
  white-space: normal !important;
  text-wrap: balance !important;
}

.site-footer .footer-contact svg {
  flex: 0 0 auto !important;
}

@media (max-width: 560px) {
  .site-footer .footer-contact,
  .site-footer .footer-main > .footer-contact {
    grid-template-rows: auto auto repeat(2, minmax(52px, auto)) !important;
  }

  .site-footer .footer-contact-note {
    margin-bottom: 14px !important;
    font-size: 13px;
  }
}

/* Private project route: Still Life shell controlled by DavidBrotsky.com. */
.project-private-page {
  max-width: 1180px;
}

.project-private-hero p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.35;
}

.project-lock-card {
  display: grid;
  gap: 14px;
  max-width: 520px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-lock-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--dark);
}

.project-lock-card h2,
.project-section-card h2,
.project-packet-panel h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.project-lock-card p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.5;
}

.project-lock-card label {
  color: #2d3035;
  font-size: 13px;
  font-weight: 850;
}

.project-lock-card input {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
}

.project-lock-card small {
  color: #9d3d24;
  font-size: 13px;
  font-weight: 800;
}

.project-private-content {
  display: grid;
  gap: 22px;
}

.project-status-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: #f5f8f7;
  background: #435356;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.project-status-bar strong,
.project-status-bar span,
.project-packet-panel > div > span {
  font-family: var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-status-bar span {
  color: rgba(245, 248, 247, 0.78);
  font-size: 13px;
}

.project-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-section-card,
.project-packet-panel {
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
}

.project-section-card h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.project-section-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.project-packet-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: start;
}

.project-packet-panel > div > span {
  color: var(--brass-dark);
  font-size: 13px;
  font-weight: 900;
}

.project-packet-panel h2 {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 62px);
}

.project-packet-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-packet-panel li {
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 850;
}

@media (max-width: 820px) {
  .project-section-grid,
  .project-packet-panel {
    grid-template-columns: 1fr;
  }
}

.private-record-route {
  min-height: 100vh;
  background: #f4f0e7;
}

.private-record-route main {
  min-height: 100vh;
}

.intake-record-viewer {
  min-height: 100vh;
  background: #f4f0e7;
}

.intake-record-frame {
  display: block;
  width: 100%;
  min-height: 100vh;
  border: 0;
  background: #f4f0e7;
}

.intake-record-state {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 10vw, 96px) 0;
}

.intake-record-state span {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intake-record-state h1 {
  margin: 12px 0;
  font-size: clamp(42px, 8vw, 86px);
}

.intake-record-state p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 750;
}

/* 2026-07-08: cohesive light/floating footer and mobile navigation system. */
.site-footer .footer-main {
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 145, 164, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(247, 250, 251, 0.94)) !important;
}

.site-footer .footer-contact,
.site-footer .footer-main > .footer-contact {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: auto auto repeat(2, minmax(64px, auto)) !important;
  gap: clamp(10px, 1vw, 14px) !important;
  align-content: center !important;
  padding: clamp(30px, 3.3vw, 52px) clamp(28px, 3.4vw, 58px) !important;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.70), rgba(246, 250, 251, 0.72)) !important;
}

.site-footer .footer-contact h2 {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  color: #101820 !important;
  font-size: clamp(46px, 4vw, 66px) !important;
  line-height: 0.86 !important;
  letter-spacing: 0 !important;
}

.site-footer .footer-contact h2::after {
  display: block !important;
  width: clamp(52px, 4.4vw, 78px) !important;
  height: 3px !important;
  margin-top: 13px !important;
  background: linear-gradient(90deg, #6f91a4, rgba(111, 145, 164, 0.18)) !important;
  content: "" !important;
}

.site-footer .footer-contact-note {
  grid-column: 1 / -1 !important;
  max-width: 42ch !important;
  margin: 4px 0 clamp(14px, 1.5vw, 22px) !important;
  color: #2d3a42 !important;
  font-size: clamp(13px, 0.88vw, 15px) !important;
  font-weight: 850 !important;
  line-height: 1.42 !important;
}

.site-footer .footer-contact > .contact-method,
.site-footer .footer-contact > a[href^="mailto:"] {
  display: flex !important;
  min-height: clamp(58px, 4.4vw, 72px) !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  margin: 0 !important;
  padding: 0 clamp(12px, 1.2vw, 18px) !important;
  border: 1px solid rgba(49, 84, 105, 0.20) !important;
  border-radius: 999px !important;
  background: rgba(255, 254, 250, 0.68) !important;
  color: #101820 !important;
  box-shadow:
    0 16px 34px rgba(18, 31, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  font-family: var(--display) !important;
  font-size: clamp(12px, 0.92vw, 15px) !important;
  line-height: 1 !important;
  letter-spacing: 0.055em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: normal !important;
  text-wrap: balance !important;
  backdrop-filter: blur(14px) !important;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease !important;
}

.site-footer .footer-contact > a[href="/need-locations"] {
  background: linear-gradient(135deg, rgba(111, 145, 164, 0.98), rgba(56, 87, 105, 0.96)) !important;
  border-color: rgba(56, 87, 105, 0.48) !important;
  color: #fffefa !important;
}

.site-footer .footer-contact > .contact-method:hover,
.site-footer .footer-contact > .contact-method:focus-visible,
.site-footer .footer-contact > a[href^="mailto:"]:hover,
.site-footer .footer-contact > a[href^="mailto:"]:focus-visible {
  border-color: rgba(49, 84, 105, 0.38) !important;
  background: rgba(237, 246, 249, 0.88) !important;
  box-shadow:
    0 18px 42px rgba(18, 31, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  outline: none !important;
  transform: translateY(-1px);
}

.site-footer .footer-contact > a[href="/need-locations"]:hover,
.site-footer .footer-contact > a[href="/need-locations"]:focus-visible {
  background: linear-gradient(135deg, rgba(94, 129, 149, 0.98), rgba(44, 72, 88, 0.98)) !important;
  color: #fffefa !important;
}

.site-footer .footer-contact svg {
  width: clamp(18px, 1.45vw, 24px) !important;
  height: clamp(18px, 1.45vw, 24px) !important;
  color: currentColor !important;
  stroke-width: 1.9 !important;
}

.site-footer .footer-links {
  gap: clamp(9px, 0.9vw, 12px) !important;
  padding: clamp(30px, 3.3vw, 52px) clamp(28px, 3.4vw, 58px) !important;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.64), rgba(246, 250, 251, 0.72)) !important;
}

.site-footer .footer-links a {
  min-height: clamp(42px, 3.4vw, 54px) !important;
  margin: 0 !important;
  padding: 0 clamp(12px, 1.2vw, 18px) !important;
  border: 1px solid rgba(49, 84, 105, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(255, 254, 250, 0.70) !important;
  color: #101820 !important;
  box-shadow:
    0 12px 28px rgba(18, 31, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  font-size: clamp(11px, 0.84vw, 14px) !important;
  letter-spacing: 0.055em !important;
  backdrop-filter: blur(14px) !important;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease !important;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  border-color: rgba(49, 84, 105, 0.34) !important;
  background: rgba(237, 246, 249, 0.90) !important;
  color: #101820 !important;
  box-shadow:
    0 16px 36px rgba(18, 31, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  outline: none !important;
  transform: translateY(-1px);
}

.menu-toggle {
  border-color: rgba(49, 84, 105, 0.26) !important;
  border-radius: 999px !important;
  background: rgba(255, 254, 250, 0.78) !important;
  color: #101820 !important;
  box-shadow:
    0 12px 30px rgba(18, 31, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;
  backdrop-filter: blur(14px) !important;
}

.mobile-nav,
.home-route .mobile-nav {
  position: fixed !important;
  top: calc(78px + env(safe-area-inset-top, 0px)) !important;
  right: 18px !important;
  left: 18px !important;
  z-index: 90 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  overflow: visible !important;
  padding: 14px !important;
  border: 1px solid rgba(49, 84, 105, 0.18) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 145, 164, 0.15), transparent 40%),
    rgba(255, 254, 250, 0.94) !important;
  box-shadow: 0 30px 80px rgba(18, 31, 42, 0.16) !important;
  backdrop-filter: blur(22px) !important;
}

.mobile-nav a,
.home-route .mobile-nav a {
  display: flex !important;
  min-height: 50px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 12px !important;
  border: 1px solid rgba(49, 84, 105, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(255, 254, 250, 0.86) !important;
  color: #101820 !important;
  box-shadow:
    0 10px 24px rgba(18, 31, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.74) !important;
  font-family: var(--display) !important;
  font-size: clamp(13px, 3.2vw, 17px) !important;
  letter-spacing: 0.055em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.home-route .mobile-nav a:hover,
.home-route .mobile-nav a:focus-visible {
  border-color: rgba(49, 84, 105, 0.34) !important;
  background: rgba(237, 246, 249, 0.92) !important;
  outline: none !important;
}

.contact-card {
  padding: clamp(22px, 3vw, 34px) !important;
  border: 1px solid rgba(49, 84, 105, 0.18) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 145, 164, 0.13), transparent 42%),
    rgba(255, 254, 250, 0.94) !important;
  color: #101820 !important;
  box-shadow:
    0 28px 70px rgba(18, 31, 42, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(18px) !important;
}

.contact-card h3 {
  margin: 0 !important;
  color: #101820 !important;
  font-size: clamp(34px, 4vw, 52px) !important;
  line-height: 0.9 !important;
}

.contact-card-note {
  color: #2d3a42 !important;
}

.contact-card a,
.contact-card .contact-method {
  min-height: 54px !important;
  padding: 0 15px !important;
  border: 1px solid rgba(49, 84, 105, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(255, 254, 250, 0.84) !important;
  color: #101820 !important;
  box-shadow:
    0 12px 28px rgba(18, 31, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  font-family: var(--display) !important;
  font-size: 13px !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
}

.contact-card a:hover,
.contact-card a:focus-visible,
.contact-card .contact-method:hover,
.contact-card .contact-method:focus-visible {
  border-color: rgba(49, 84, 105, 0.34) !important;
  background: rgba(237, 246, 249, 0.92) !important;
  outline: none !important;
}

@media (max-width: 980px) {
  .site-footer .footer-contact,
  .site-footer .footer-main > .footer-contact,
  .site-footer .footer-links {
    padding: clamp(26px, 5vw, 42px) clamp(18px, 5vw, 42px) !important;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-contact,
  .site-footer .footer-main > .footer-contact {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto repeat(4, minmax(54px, auto)) !important;
    gap: 10px !important;
    padding: 24px 16px !important;
  }

  .site-footer .footer-contact h2 {
    font-size: clamp(46px, 15vw, 62px) !important;
  }

  .site-footer .footer-contact-note {
    margin-bottom: 12px !important;
    font-size: 13px !important;
  }

  .site-footer .footer-contact > .contact-method,
  .site-footer .footer-contact > a[href^="mailto:"] {
    min-height: 56px !important;
    font-size: 13px !important;
  }

  .site-footer .footer-links {
    gap: 8px !important;
    padding: 24px 16px !important;
  }

  .site-footer .footer-links a {
    min-height: 48px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    line-height: 1.05 !important;
    white-space: normal !important;
    text-wrap: balance !important;
  }

  .mobile-nav,
  .home-route .mobile-nav {
    right: 12px !important;
    left: 12px !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 12px !important;
    border-radius: 18px !important;
  }
}

/* 2026-07-08: oval icon system for navigation, CTAs, and proof links. */
.btn,
.header-cta,
.desktop-nav a,
.mobile-nav a,
.home-route .mobile-nav a,
.site-footer .footer-links a,
.site-footer .footer-profiles a,
.site-footer .footer-contact > .contact-method,
.site-footer .footer-contact > a[href^="mailto:"],
.contact-card a,
.contact-card .contact-method,
.choice-grid button,
.direct-intake .choice-grid button,
.form-nav .btn,
.zone-map-toolbar .btn,
.resources-hero .btn,
.mome-alert .btn,
.add-day-button,
.tag-list button,
.suggestion-row button,
.form-error button,
.vehicle-option-grid button,
.vehicle-quantity-row button {
  border-radius: 999px !important;
}

.desktop-nav a,
.mobile-nav a,
.home-route .mobile-nav a,
.site-footer .footer-links a,
.site-footer .footer-profiles a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
}

.desktop-nav a {
  min-height: 36px !important;
  padding: 0 10px !important;
  border: 1px solid rgba(49, 84, 105, 0.14) !important;
  background: rgba(255, 254, 250, 0.58) !important;
  box-shadow:
    0 10px 24px rgba(18, 31, 42, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(12px) !important;
}

.desktop-nav {
  gap: 8px !important;
  max-width: min(900px, calc(100vw - 360px)) !important;
  min-width: 0 !important;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-color: rgba(49, 84, 105, 0.30) !important;
  background: rgba(237, 246, 249, 0.84) !important;
  color: #101820 !important;
  outline: none !important;
}

.desktop-nav a svg,
.mobile-nav a svg,
.home-route .mobile-nav a svg,
.site-footer .footer-links a svg,
.site-footer .footer-profiles a svg {
  flex: 0 0 auto !important;
  color: #315469 !important;
  stroke-width: 1.85 !important;
}

.mobile-nav a,
.home-route .mobile-nav a {
  gap: 10px !important;
  justify-content: center !important;
}

.site-footer .footer-bio {
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 145, 164, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.72), rgba(246, 250, 251, 0.64)) !important;
}

.site-footer .footer-bio span + span {
  border-top-color: rgba(49, 84, 105, 0.18) !important;
}

.site-footer .footer-profiles {
  gap: 10px !important;
}

.site-footer .footer-profiles a {
  min-height: 40px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(49, 84, 105, 0.18) !important;
  background: rgba(255, 254, 250, 0.78) !important;
  box-shadow:
    0 12px 28px rgba(18, 31, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(14px) !important;
}

.site-footer .footer-profiles a:hover,
.site-footer .footer-profiles a:focus-visible {
  border-color: rgba(49, 84, 105, 0.34) !important;
  background: rgba(237, 246, 249, 0.92) !important;
  outline: none !important;
  transform: translateY(-1px);
}

.site-footer .footer-links a {
  gap: 9px !important;
  justify-content: center !important;
}

.site-footer .footer-links a span,
.desktop-nav a span,
.mobile-nav a span,
.home-route .mobile-nav a span {
  min-width: 0 !important;
}

.floating-contact a {
  border-color: rgba(49, 84, 105, 0.20) !important;
  border-radius: 50% !important;
  background: rgba(255, 254, 250, 0.82) !important;
  color: #101820 !important;
  box-shadow:
    0 18px 40px rgba(18, 31, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(14px) !important;
}

@media (max-width: 820px) {
  .desktop-nav a {
    min-height: 34px !important;
    padding: 0 11px !important;
  }
}

@media (min-width: 981px) {
  .site-footer .footer-main {
    grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.05fr) minmax(360px, 0.86fr) !important;
  }

  .site-footer .footer-links {
    padding-inline: clamp(18px, 2vw, 30px) !important;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-links a,
  .mobile-nav a,
  .home-route .mobile-nav a {
    justify-content: center !important;
  }
}

/* 2026-07-08: shift homepage desktop nav left to clear the Freedom Tower top and B"H mark. */
@media (min-width: 1181px) {
  .home-route .desktop-nav {
    transform: translateX(clamp(-170px, -7vw, -120px)) !important;
  }
}

/* 2026-07-08: contact page cleanup to match the rounded site system. */
.contact-page {
  padding-bottom: clamp(70px, 8vw, 120px) !important;
}

.contact-page .page-hero {
  max-width: 1120px !important;
  margin-bottom: clamp(28px, 4vw, 46px) !important;
}

.contact-page .page-hero p {
  max-width: 760px !important;
  color: #2d3a42 !important;
  font-size: clamp(18px, 1.75vw, 23px) !important;
  font-weight: 650 !important;
  line-height: 1.48 !important;
  text-wrap: pretty !important;
}

.contact-page .contact-grid {
  grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 0.58fr) !important;
  gap: clamp(24px, 3.4vw, 48px) !important;
  align-items: start !important;
}

.contact-page .contact-card,
.contact-page .contact-form {
  border: 1px solid rgba(49, 84, 105, 0.18) !important;
  border-radius: clamp(24px, 2.8vw, 34px) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 145, 164, 0.14), transparent 42%),
    rgba(255, 254, 250, 0.94) !important;
  box-shadow:
    0 30px 78px rgba(18, 31, 42, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(18px) !important;
}

.contact-page .contact-card {
  gap: clamp(12px, 1.2vw, 16px) !important;
  padding: clamp(26px, 3.5vw, 48px) !important;
}

.contact-page .contact-card h3,
.contact-page .contact-form h3 {
  color: #101820 !important;
  line-height: 0.92 !important;
  text-wrap: balance !important;
}

.contact-page .contact-card h3 {
  max-width: 11ch !important;
  font-size: clamp(40px, 5.3vw, 72px) !important;
}

.contact-page .contact-card-note {
  max-width: 44ch !important;
  margin: 2px 0 8px !important;
  color: #2d3a42 !important;
  font-size: clamp(15px, 1vw, 17px) !important;
  font-weight: 750 !important;
  line-height: 1.42 !important;
}

.contact-page .contact-card a,
.contact-page .contact-card .contact-method {
  min-height: clamp(58px, 4.7vw, 72px) !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  padding: 0 clamp(18px, 1.8vw, 24px) !important;
  border-color: rgba(49, 84, 105, 0.20) !important;
  background: rgba(255, 254, 250, 0.80) !important;
  font-size: clamp(13px, 1vw, 16px) !important;
  box-shadow:
    0 14px 34px rgba(18, 31, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.74) !important;
}

.contact-page .contact-card a:hover,
.contact-page .contact-card a:focus-visible,
.contact-page .contact-card .contact-method:hover,
.contact-page .contact-card .contact-method:focus-visible {
  border-color: rgba(49, 84, 105, 0.38) !important;
  background: rgba(237, 246, 249, 0.92) !important;
  transform: translateY(-1px);
}

.contact-page .contact-form {
  gap: clamp(13px, 1.25vw, 17px) !important;
  padding: clamp(24px, 3vw, 40px) !important;
}

.contact-page .contact-form h3 {
  margin: 0 0 2px !important;
  font-size: clamp(34px, 4vw, 52px) !important;
}

.contact-page .contact-form-prereq {
  gap: 12px !important;
  max-width: none !important;
  margin: 0 0 6px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(49, 84, 105, 0.16) !important;
  border-radius: 24px !important;
  background: rgba(237, 246, 249, 0.58) !important;
  color: #2d3a42 !important;
  font-size: clamp(14px, 0.95vw, 15px) !important;
  font-weight: 760 !important;
  line-height: 1.42 !important;
  text-align: center !important;
}

.contact-page .contact-form-prereq-copy {
  display: grid !important;
  gap: 2px !important;
  justify-items: center !important;
  text-wrap: balance !important;
}

.contact-page .contact-form-prereq-copy span {
  display: block !important;
}

.contact-page .contact-form-prereq-links {
  gap: 8px !important;
  justify-content: center !important;
}

.contact-page .contact-form-prereq a {
  display: inline-flex !important;
  min-height: 34px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 13px !important;
  border: 1px solid rgba(49, 84, 105, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(255, 254, 250, 0.82) !important;
  color: #101820 !important;
  width: 218px !important;
  max-width: 100% !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  font-family: var(--display) !important;
  font-size: 12px !important;
  letter-spacing: 0.055em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

.contact-page .contact-form label {
  color: #24333d !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  min-height: 58px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(49, 84, 105, 0.24) !important;
  border-radius: 999px !important;
  background-color: rgba(255, 254, 250, 0.88) !important;
  color: #101820 !important;
  box-shadow:
    0 10px 24px rgba(18, 31, 42, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  outline: none !important;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  border-color: rgba(49, 84, 105, 0.50) !important;
  box-shadow:
    0 0 0 4px rgba(111, 145, 164, 0.17),
    0 12px 28px rgba(18, 31, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;
}

.contact-page .contact-form select {
  appearance: none !important;
  padding-right: 46px !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #315469 50%),
    linear-gradient(135deg, #315469 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 18px) 50%;
  background-repeat: no-repeat;
  background-size: 7px 7px, 7px 7px;
}

.contact-page .contact-form textarea {
  min-height: 142px !important;
  padding: 18px !important;
  border-radius: 28px !important;
  line-height: 1.42 !important;
}

.contact-page .voice-input-wrap input,
.contact-page .voice-input-wrap textarea {
  padding-right: 64px !important;
}

.contact-page .voice-input-button {
  top: 50% !important;
  right: 11px !important;
  transform: translateY(-50%) !important;
  width: 40px !important;
  height: 40px !important;
}

.contact-page textarea + .voice-input-button,
.contact-page .voice-input-wrap textarea ~ .voice-input-button {
  top: 30px !important;
}

.contact-page .human-check {
  gap: 10px !important;
  padding: 16px !important;
  border-color: rgba(49, 84, 105, 0.18) !important;
  border-radius: 26px !important;
  background: rgba(237, 246, 249, 0.58) !important;
}

.contact-page .human-check-row input {
  border-radius: 999px !important;
}

.contact-page .contact-form .btn.primary {
  width: 100% !important;
  min-height: 62px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(111, 145, 164, 0.98), rgba(35, 70, 92, 0.98)) !important;
  color: #fffefa !important;
  box-shadow:
    0 18px 42px rgba(18, 31, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
  letter-spacing: 0.07em !important;
}

@media (max-width: 980px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-page .contact-card h3 {
    max-width: 14ch !important;
  }
}

@media (max-width: 560px) {
  .contact-page .page-hero h1 {
    font-size: clamp(46px, 16vw, 72px) !important;
  }

  .contact-page .contact-card,
  .contact-page .contact-form {
    border-radius: 24px !important;
  }

  .contact-page .contact-card {
    padding: 22px 16px !important;
  }

  .contact-page .contact-card h3 {
    max-width: 8ch !important;
    font-size: clamp(38px, 11vw, 46px) !important;
  }

  .contact-page .contact-card a,
  .contact-page .contact-card .contact-method {
    min-height: 56px !important;
    padding-inline: 14px !important;
    font-size: 12px !important;
  }

  .contact-page .contact-form {
    padding: 20px 14px !important;
  }

  .contact-page .contact-form-prereq {
    border-radius: 20px !important;
  }

  .contact-page .contact-form-prereq-copy {
    display: block !important;
  }

  .contact-page .contact-form-prereq-copy span {
    display: inline !important;
  }

  .contact-page .contact-form-prereq-copy span + span::before {
    content: " ";
  }

  .contact-page .contact-form-prereq a {
    width: min(100%, 260px) !important;
  }
}
