/* 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(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}


/* ---- site ---- */
:root {
  --navy: #123657;
  --navy-deep: #09253f;
  --navy-mid: #2b5c8a;
  --orange: #bf661d;
  --orange-text: #8d470d;
  /* Accent text on navy. --orange-text is unreadable there, and --orange
     clears 4.5:1 on neither cream nor navy, so the accent needs one value
     per background rather than one brand orange used everywhere. */
  --orange-on-navy: #e8893b;
  --charcoal: #263039;
  --cream: #f7f3ea;
  --mist: #f6f7f9;
  --white: #fff;
  --line: #f6f7f9;
  --muted: #5e6b6b;
  --shadow: 0 22px 60px rgb(18 54 87 / 10%);
  --radius: 18px;
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--charcoal); background: var(--cream); font-family: var(--font-sans); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { color: var(--navy-deep); font-weight: 760; letter-spacing: -.035em; line-height: 1.08; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.75rem, 6vw, 5.65rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.25rem; letter-spacing: -.02em; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
::selection { background: var(--orange); color: var(--white); }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: 12px; padding: 10px 16px; background: var(--white); color: var(--navy); transform: translateY(-200%); }
.skip-link:focus { transform: none; }
.preview-bar { background: var(--navy-deep); color: var(--white); font-size: .78rem; }
.preview-bar__inner { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.preview-bar span { color: var(--navy-deep); background: #e29759; border-radius: 99px; font-size: .66rem; font-weight: 800; letter-spacing: .09em; padding: 2px 8px; text-transform: uppercase; }
.preview-bar p { opacity: .78; }
.site-header { background: rgb(247 243 234 / 92%); border-bottom: 1px solid rgb(18 54 87 / 10%); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; line-height: 1; }
.wordmark__mark { width: 39px; height: 39px; }
.wordmark strong { display: block; font-size: 1.1rem; letter-spacing: -.03em; }
/* The logo sets "Line" in orange. --orange itself is 3.39:1 on cream and
   3.96:1 on navy — both below AA for 17.6px bold — so each context gets the
   nearest passing shade: 5.90:1 and 6.17:1 respectively. */
.wordmark__accent { color: var(--orange-text); }
.wordmark--light .wordmark__accent { color: var(--orange-on-navy); }
.wordmark small { display: block; font-size: .69rem; font-weight: 750; letter-spacing: .17em; margin-top: 5px; text-transform: uppercase; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.desktop-nav a { color: #4a5560; font-size: .82rem; font-weight: 700; text-decoration: none; }
.desktop-nav a:hover { color: var(--orange); }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; cursor: pointer; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 23px; height: 2px; background: var(--navy); }
.mobile-menu nav { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; min-width: 250px; padding: 12px; position: absolute; right: 0; top: 54px; }
.mobile-menu nav a { border-radius: 8px; font-weight: 700; padding: 10px 12px; text-decoration: none; }
.mobile-menu nav a:hover { background: var(--mist); }
.button { align-items: center; background: var(--navy); border: 1px solid var(--navy); border-radius: 999px; color: var(--white); cursor: pointer; display: inline-flex; font-size: .86rem; font-weight: 800; gap: 8px; justify-content: center; letter-spacing: .01em; min-height: 52px; padding: 13px 22px; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button svg { width: 19px; }
.button--small { min-height: 44px; padding: 10px 18px; }
.button--secondary { background: transparent; color: var(--navy); }
.button--secondary:hover { color: var(--white); }
.button--cream { background: var(--cream); border-color: var(--cream); color: var(--navy); }
.button--cream:hover { background: var(--white); border-color: var(--white); }
.button--ghost-light { background: transparent; border-color: rgb(255 255 255 / 38%); color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.eyebrow { color: var(--orange-text); font-size: .73rem; font-weight: 850; letter-spacing: .14em; margin-bottom: 16px; text-transform: uppercase; }
.eyebrow--light { color: #ed9a56; }
.lede { color: #4f5f6e; font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.65; margin-top: 24px; max-width: 720px; }
.page-hero { overflow: hidden; padding: clamp(80px, 10vw, 136px) 0 90px; position: relative; }
.page-hero::before { background-image: radial-gradient(circle at center, rgb(191 102 29 / 15%) 0 1px, transparent 1.5px); background-size: 22px 22px; content: ""; height: 280px; opacity: .45; position: absolute; right: -40px; top: 0; width: 420px; }
.page-hero__inner { position: relative; }
.page-hero__inner > div { max-width: 900px; }
.page-hero--compact { padding-block: 72px 64px; }
.page-hero--compact h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
.hero-home { padding-block: clamp(58px, 8vw, 100px); }
.hero-grid { align-items: center; display: grid; gap: clamp(40px, 7vw, 90px); grid-template-columns: 1.08fr .92fr; }
.hero-copy h1 { max-width: 780px; }
.hero-trust { align-items: center; border-top: 1px solid var(--line); color: var(--muted); display: flex; font-size: .88rem; gap: 12px; margin-top: 34px; padding-top: 20px; }
.hero-trust span { background: var(--orange); border-radius: 50%; height: 7px; width: 7px; }
.hero-media { margin: 0; min-width: 0; }
.hero-artwork { aspect-ratio: 3 / 2; background: var(--navy); border-radius: 26px; box-shadow: 0 30px 70px rgb(10 38 63 / 25%); overflow: hidden; position: relative; }
/* Framed photos fill their aspect-ratio container. Next.js's <Image fill> applied
   this automatically; with plain <img> it has to be declared. */
.hero-artwork > img, .editorial-photo__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-artwork::after { background: linear-gradient(180deg, transparent 50%, rgb(5 25 43 / 42%)); content: ""; inset: 0; pointer-events: none; position: absolute; }
.hero-media figcaption { color: var(--muted); font-size: .67rem; line-height: 1.45; margin-top: 10px; }
.art-sky-line { fill: none; opacity: .25; stroke: var(--mist); stroke-width: 2; }
.art-sun { fill: #e89855; opacity: .9; }
.art-hill--back { fill: #254f75; }
.art-hill { fill: #1d4366; }
.art-house { fill: var(--cream); }
.art-roof { fill: none; stroke: #f29e59; stroke-linecap: round; stroke-width: 12; }
.art-window { fill: #e89855; }
.art-door { fill: #2c5e8b; }
.art-signal { fill: none; stroke: var(--orange); stroke-linecap: round; stroke-width: 5; }
.art-node { fill: #f5b580; }
.art-network { fill: none; stroke: #f5b580; stroke-dasharray: 6 8; stroke-width: 2; }
.art-pines { fill: #0d273f; }
.art-status { align-items: center; background: var(--white); border-radius: 13px; bottom: 22px; box-shadow: 0 14px 30px rgb(0 0 0 / 20%); color: var(--navy); display: flex; font-size: .73rem; font-weight: 700; gap: 8px; left: 22px; padding: 12px 14px; position: absolute; z-index: 2; }
.art-status span { background: #55a773; border-radius: 50%; height: 8px; width: 8px; }
.art-status strong { border-left: 1px solid var(--line); font-size: .68rem; margin-left: 5px; padding-left: 10px; }
.section { padding: clamp(74px, 9vw, 120px) 0; }
.section--white { background: var(--white); }
.section--mist { background: var(--mist); }
.section--gallery { background: #f0ece3; }
.section--equipment { background: var(--navy-deep); color: var(--white); }
.section--equipment h2, .section--equipment h3 { color: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-heading { margin-bottom: 44px; max-width: 750px; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin-top: 20px; }
.section-heading--centered { margin-inline: auto; text-align: center; }
.card-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card--tinted { background: var(--mist); border-color: transparent; }
.card--dark { background: #1e4366; border-color: rgb(255 255 255 / 10%); color: #f6f7f9; }
.card--dark h3 { color: var(--white); }
.card__number { color: var(--orange-text); font-size: .73rem; font-weight: 850; letter-spacing: .12em; margin-bottom: 36px; }
.card h3 { margin-bottom: 14px; }
.card p { color: var(--muted); font-size: .93rem; }
.card--dark p { color: #f6f7f9; }
.price { color: var(--orange-text); display: block; font-size: .78rem; font-weight: 850; letter-spacing: .08em; margin-bottom: 10px; text-transform: uppercase; }
.text-link { align-items: center; color: var(--navy); display: inline-flex; font-size: .83rem; font-weight: 850; gap: 6px; margin-top: 20px; text-decoration: none; }
.text-link svg { width: 18px; }
.split { align-items: center; display: grid; gap: clamp(40px, 8vw, 100px); grid-template-columns: 1fr 1fr; }
.split--top { align-items: start; }
.editorial-photo { margin: 0; }
.editorial-photo__frame { aspect-ratio: 3 / 2; background: var(--navy); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; position: relative; }
.editorial-photo__frame img { object-fit: cover; transition: transform .45s ease; }
.editorial-photo:hover .editorial-photo__frame img { transform: scale(1.015); }
.editorial-photo__frame::after { background: linear-gradient(180deg, transparent 55%, rgb(5 25 43 / 45%)); content: ""; inset: 0; pointer-events: none; position: absolute; }
.editorial-photo__label { background: var(--cream); border-radius: 999px; bottom: 16px; color: var(--navy); font-size: .67rem; font-weight: 850; left: 16px; letter-spacing: .08em; padding: 7px 11px; position: absolute; text-transform: uppercase; z-index: 2; }
.editorial-photo figcaption, .equipment-photo figcaption { color: var(--muted); font-size: .67rem; line-height: 1.45; margin-top: 9px; }
.photo-story-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.photo-story { background: var(--white); border: 1px solid rgb(18 54 87 / 12%); border-radius: 24px; box-shadow: 0 18px 48px rgb(18 54 87 / 7%); overflow: hidden; }
.photo-story .editorial-photo__frame { border-radius: 0; box-shadow: none; }
.photo-story .editorial-photo figcaption { padding-inline: 22px; }
.photo-story__copy { padding: 14px 22px 26px; }
.photo-story__copy h3 { margin-bottom: 9px; }
.photo-story__copy p { color: var(--muted); font-size: .9rem; }
.equipment-intro { align-items: center; display: grid; gap: clamp(36px, 7vw, 88px); grid-template-columns: .82fr 1.18fr; margin-bottom: 42px; }
.equipment-intro > div > p:not(.eyebrow) { color: #f6f7f9; font-size: 1.04rem; margin-top: 20px; }
.equipment-photo { margin: 0; }
.equipment-photo .editorial-photo__frame { box-shadow: 0 24px 56px rgb(0 0 0 / 22%); }
.equipment-photo figcaption { color: #d6dde3; }
.equipment-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.equipment-card { background: #123657; border: 1px solid rgb(255 255 255 / 12%); border-radius: var(--radius); display: flex; flex-direction: column; padding: 26px; }
.equipment-card .price { color: #f2a05d; }
.equipment-card > p { color: #f6f7f9; font-size: .88rem; }
.equipment-card__fit { border-top: 1px solid rgb(255 255 255 / 12%); margin-top: 18px; padding-top: 15px; }
.equipment-card__fit strong { color: var(--white); }
.equipment-card .text-link { color: #f5b682; margin-top: auto; padding-top: 18px; }
.equipment-notice { background: rgb(255 255 255 / 8%); border-color: rgb(255 255 255 / 18%); color: #f6f7f9; margin-top: 20px; }
.feature-panel { background: var(--navy); border-radius: 24px; color: var(--white); padding: clamp(30px, 5vw, 58px); position: relative; overflow: hidden; }
.feature-panel::after { border: 1px solid rgb(255 255 255 / 13%); border-radius: 50%; content: ""; height: 280px; position: absolute; right: -110px; top: -80px; width: 280px; }
.feature-panel h2, .feature-panel h3 { color: var(--white); }
.feature-panel p { color: #f6f7f9; }
.check-list { display: grid; gap: 14px; list-style: none; margin: 26px 0 0; padding: 0; }
.check-list li { align-items: flex-start; display: flex; gap: 11px; }
.check-list svg { background: var(--mist); border-radius: 50%; color: var(--navy); flex: 0 0 auto; margin-top: 3px; padding: 4px; width: 23px; }
.feature-panel .check-list svg { background: rgb(255 255 255 / 12%); color: #f3a566; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); }
.step { border-left: 1px solid var(--line); padding: 18px 38px 10px; }
.step:first-child { border-left: 0; padding-left: 0; }
.step::before { color: var(--orange-text); content: "0" counter(step); counter-increment: step; display: block; font-size: .72rem; font-weight: 850; letter-spacing: .1em; margin-bottom: 30px; }
.step h3 { margin-bottom: 12px; }
.step p { color: var(--muted); font-size: .94rem; }
.area-list { align-items: start; display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.area-list > div { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.area-list h3 { margin-bottom: 15px; }
.area-list ul { list-style: none; margin: 0; padding: 0; }
.area-list li { border-top: 1px solid #f6f7f8; padding: 8px 0; }
.service-map { background: #f6f7f9; border-radius: 24px; margin: 0; overflow: hidden; padding: 12px; }
.service-map__provider-toolbar { align-items: flex-end; background: rgb(255 255 255 / 88%); border: 1px solid rgb(18 54 87 / 13%); border-radius: 17px; display: grid; gap: 18px; grid-template-columns: minmax(190px, .55fr) 1.45fr; margin-bottom: 12px; padding: 20px; }
.service-map__provider-toolbar .eyebrow { margin-bottom: 7px; }
.service-map__provider-toolbar h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); }
.service-map__provider-buttons { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.service-map__provider-button { --provider-color: var(--navy); background: var(--white); border: 1px solid #dadee1; border-radius: 999px; color: var(--navy); cursor: pointer; font-size: .72rem; font-weight: 800; min-height: 38px; padding: 8px 13px; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.service-map__provider-button:hover { border-color: var(--provider-color); transform: translateY(-1px); }
.service-map__provider-button[aria-pressed="true"] { border-color: var(--provider-color); box-shadow: inset 0 0 0 2px var(--provider-color); }
.service-map__viewport { border: 1px solid rgb(18 54 87 / 16%); border-radius: 18px; overflow: hidden; position: relative; }
.service-map__leaflet, .service-map__loading { height: 610px; width: 100%; }
.service-map__leaflet { background: #f6f7f9; font-family: var(--font-sans); z-index: 0; }
.service-map__loading { align-items: center; color: var(--navy); display: flex; font-size: .84rem; font-weight: 800; justify-content: center; }
.service-map__legend { background: rgb(255 255 255 / 94%); border: 1px solid rgb(18 54 87 / 15%); border-radius: 12px; box-shadow: 0 10px 28px rgb(18 54 87 / 16%); display: grid; gap: 8px; padding: 11px 13px; position: absolute; right: 14px; top: 14px; z-index: 500; }
.service-map__legend p { align-items: center; color: var(--navy); display: flex; font-size: .68rem; font-weight: 800; gap: 8px; margin: 0; }
.service-map__dot { border: 2px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px rgb(18 54 87 / 22%); height: 11px; width: 11px; }
.service-map__dot--core { background: var(--navy); }
.service-map__dot--regional { background: var(--orange); }
.service-map__boundary-key { border-top: 3px dashed var(--navy); height: 1px; width: 15px; }
.service-map__provider-card { --provider-color: var(--navy); align-items: center; background: rgb(255 255 255 / 96%); border: 1px solid rgb(18 54 87 / 15%); border-left: 5px solid var(--provider-color); border-radius: 14px; box-shadow: 0 10px 30px rgb(18 54 87 / 10%); color: var(--muted); display: grid; gap: 22px; grid-template-columns: minmax(170px, .45fr) minmax(220px, 1fr) minmax(250px, .85fr); margin-top: 12px; padding: 18px; }
.service-map__provider-card h3 { font-size: 1.35rem; margin-top: 2px; }
.service-map__provider-card > p { font-size: .78rem; line-height: 1.55; }
.service-map__provider-label { align-items: center; color: var(--navy); display: flex; font-size: .64rem; font-weight: 850; gap: 7px; letter-spacing: .1em; text-transform: uppercase; }
.service-map__provider-label span { background: var(--provider-color); border-radius: 50%; height: 8px; width: 8px; }
.service-map__technology { color: var(--provider-color); font-size: .7rem; font-weight: 850; margin-top: 5px; }
.service-map__provider-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.service-map__provider-links a { background: var(--navy); border: 1px solid var(--navy); border-radius: 999px; color: var(--white); font-size: .67rem; font-weight: 800; line-height: 1.25; padding: 9px 12px; text-decoration: none; }
.service-map__provider-links a:last-child { background: transparent; color: var(--navy); }
.service-map__provider-links a:hover { background: var(--navy-mid); color: var(--white); }
.service-map .leaflet-popup-content { display: grid; gap: 4px; margin: 14px 17px; }
.service-map .leaflet-popup-content strong { color: var(--navy); font-size: .9rem; }
.service-map .leaflet-popup-content span { color: var(--muted); font-size: .72rem; }
.service-map .leaflet-tooltip { border: 0; border-radius: 8px; box-shadow: var(--shadow); color: var(--navy); font-family: var(--font-sans); font-size: .7rem; font-weight: 800; padding: 6px 8px; }
.service-map figcaption { color: var(--muted); font-size: .72rem; line-height: 1.5; padding: 11px 10px 3px; text-align: center; }
.service-area__context { align-items: start; margin-top: 50px; }
.service-area__context .section-heading { margin-bottom: 0; }
.service-area__context .notice + .notice { margin-top: 12px; }
.notice { background: #fbe1cc; border: 1px solid #ecb689; border-radius: 14px; color: #643f21; font-size: .88rem; padding: 17px 20px; }
.service-stack { display: grid; gap: 18px; }
.service-detail { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); display: grid; gap: 30px; grid-template-columns: 1fr 2fr; padding: 30px; }
.service-detail h2 { font-size: 1.55rem; }
.service-detail p { color: var(--muted); }
.comparison-wrap { overflow-x: auto; }
.comparison { border-collapse: collapse; font-size: .82rem; min-width: 900px; width: 100%; }
.comparison th, .comparison td { border-bottom: 1px solid var(--line); padding: 15px 12px; text-align: left; vertical-align: top; }
.comparison thead th { color: var(--navy); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.comparison tbody th { color: var(--navy); min-width: 185px; }
.comparison tr:hover td, .comparison tr:hover th { background: rgb(246 247 249 / 65%); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { align-items: center; color: var(--navy-deep); cursor: pointer; display: flex; font-size: 1.05rem; font-weight: 760; justify-content: space-between; list-style: none; padding: 22px 0; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 1.6rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); max-width: 850px; padding: 0 50px 24px 0; }
.section--cta { background: var(--navy); padding-block: 64px; }
.cta-banner { align-items: center; color: #f6f7f9; display: grid; gap: 48px; grid-template-columns: 1.3fr .7fr; }
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.35rem); }
.cta-banner p:not(.eyebrow) { margin-top: 14px; max-width: 680px; }
.cta-banner .button-row { justify-content: flex-end; margin: 0; }
.lead-form { background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: clamp(24px, 5vw, 52px); }
.form-intro { align-items: end; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; margin-bottom: 30px; padding-bottom: 25px; }
.form-intro h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.form-intro > p { color: var(--muted); font-size: .86rem; max-width: 280px; }
.form-grid { display: grid; gap: 22px 18px; grid-template-columns: 1fr 1fr; }
.form-grid__full { grid-column: 1 / -1; }
.lead-form label { color: var(--navy-deep); display: grid; font-size: .78rem; font-weight: 780; gap: 7px; }
.lead-form label > span:not(.field-error) { color: var(--muted); font-weight: 500; }
.lead-form input, .lead-form select, .lead-form textarea { background: #f5f7f9; border: 1px solid #dadee1; border-radius: 9px; color: var(--charcoal); min-height: 48px; padding: 10px 12px; width: 100%; }
.lead-form textarea { resize: vertical; }
.lead-form input[aria-invalid="true"], .lead-form select[aria-invalid="true"], .lead-form textarea[aria-invalid="true"] { border-color: #a33a2a; }
.field-error { color: #922f22 !important; font-size: .75rem; font-weight: 650 !important; }
.honeypot { height: 0; opacity: 0; overflow: hidden; position: absolute; width: 0; }
.consent { align-items: flex-start; display: flex !important; font-size: .78rem !important; gap: 11px !important; margin-top: 24px; }
.consent input { flex: 0 0 auto; height: 20px; margin-top: 2px; min-height: 0; width: 20px; }
.form-submit { align-items: center; display: flex; gap: 22px; margin-top: 28px; }
.form-submit p { color: var(--muted); font-size: .72rem; max-width: 480px; }
.form-message { border-radius: 10px; margin-bottom: 24px; padding: 14px 16px; }
.form-message a { display: inline-block; font-weight: 800; margin-left: 8px; }
.form-message--error { background: #fff0ed; border: 1px solid #e6b1a8; color: #7f2e22; }
.form-success { background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: clamp(36px, 7vw, 72px); text-align: center; }
.form-success h2 { margin-bottom: 16px; }
.form-success > p:not(.eyebrow) { color: var(--muted); margin: 0 auto 25px; max-width: 650px; }
.success-mark { align-items: center; background: var(--mist); border-radius: 50%; color: var(--navy); display: flex; font-size: 1.4rem; height: 58px; justify-content: center; margin: 0 auto 25px; width: 58px; }
.legal-copy { max-width: 800px; }
.legal-copy h2 { font-size: 1.65rem; margin: 46px 0 14px; }
.legal-copy h3 { margin: 28px 0 8px; }
.legal-copy p, .legal-copy li { color: #5b6875; }
.legal-copy ul { padding-left: 22px; }
.confirmation-flag { background: #f8cfad; border-radius: 999px; color: #803f0a !important; display: inline-block; font-size: .67rem !important; font-weight: 800; letter-spacing: .04em; margin-top: 14px; padding: 5px 9px; text-transform: uppercase; }
.site-footer { background: #0b2842; color: #f6f7f9; padding: 74px 0 25px; }
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; }
.wordmark--light { color: var(--white); }
.footer-brand > p { font-size: .92rem; margin-top: 20px; max-width: 290px; }
.footer-brand .footer-note { color: #b4bfc9; font-size: .76rem; margin-top: 8px; }
.site-footer h2 { color: var(--white); font-size: .76rem; letter-spacing: .12em; margin-bottom: 20px; text-transform: uppercase; }
.footer-links, .footer-contact { display: grid; gap: 9px; list-style: none; margin: 0; padding: 0; }
.footer-links a, .footer-contact a { color: #f6f7f9; font-size: .82rem; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); text-decoration: underline; }
.footer-contact li { align-items: flex-start; display: flex; gap: 9px; }
.footer-contact svg, .footer-contact li > span:first-child { color: #e8893b; flex: 0 0 auto; margin-top: 5px; width: 16px; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / 10%); display: flex; font-size: .67rem; justify-content: space-between; margin-top: 60px; padding-top: 22px; }
.mobile-actions { display: none; }

/* ---- Header phone. A manager mid-turnover calls; they don't fill in forms. ---- */
.header-contact { align-items: center; color: var(--navy); display: inline-flex; font-size: .84rem; font-weight: 850; gap: 7px; letter-spacing: .01em; text-decoration: none; white-space: nowrap; }
.header-contact:hover { color: var(--orange-text); }
.header-contact svg { width: 17px; }

/* ---- Risk reversal ---- */
.guarantee { align-items: flex-start; color: var(--navy); display: flex; font-size: .87rem; font-weight: 700; gap: 10px; line-height: 1.5; margin-top: 26px; max-width: 620px; }
.guarantee svg { background: var(--mist); border-radius: 50%; color: var(--navy); flex: 0 0 auto; margin-top: 1px; padding: 4px; width: 22px; }
.guarantee--light, .feature-panel .guarantee, .cta-banner .guarantee { color: var(--white); }
.guarantee--light svg { background: rgb(255 255 255 / 14%); color: #f3a566; }

/* ---- Audience split. Let visitors self-select early. ---- */
.audience-split { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.audience-split article { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); }
.audience-split h3 { font-size: 1.5rem; margin-bottom: 12px; }
.audience-split p:not(.eyebrow) { color: var(--muted); font-size: .95rem; }

/* ---- Sample scorecard. The deliverable, shown rather than described. ---- */
.scorecard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin: 0; overflow: hidden; }
.scorecard__cap { border-bottom: 1px solid var(--line); padding: 24px 28px; }
.scorecard__cap .eyebrow { margin-bottom: 8px; }
.scorecard__cap p { color: var(--muted); font-size: .87rem; }
.scorecard__rows { list-style: none; margin: 0; padding: 0; }
.sc-row { border-bottom: 1px solid var(--line); border-left: 4px solid var(--line); padding: 20px 28px; }
.sc-row:last-child { border-bottom: 0; }
.sc-row--red { border-left-color: #a3372c; }
.sc-row--yellow { border-left-color: #83410b; }
.sc-row--green { border-left-color: #2d5981; }
.sc-row__head { align-items: baseline; display: flex; flex-wrap: wrap; gap: 10px 16px; justify-content: space-between; margin-bottom: 8px; }
.sc-row h3 { font-size: 1.02rem; letter-spacing: -.015em; }
.sc-row p { color: var(--muted); font-size: .91rem; max-width: 78ch; }
.sc-flag { border-radius: 999px; font-size: .64rem; font-weight: 850; letter-spacing: .09em; padding: 4px 10px; text-transform: uppercase; white-space: nowrap; }
.sc-flag--red { background: #fbe9e6; color: #8f2f25; }
.sc-flag--yellow { background: #fdf3dd; color: #6e3609; }
.sc-flag--green { background: #f4f7fa; color: #254b6e; }

/* ---- The refund exposure, stated in money. ---- */
.stakes { background: #fbe1cc; border: 1px solid #ecb689; border-left: 4px solid var(--orange); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); }
.stakes h2 { color: #643f21; font-size: clamp(1.35rem, 2.6vw, 1.9rem); }
.stakes p { color: #6d4727; font-size: .95rem; margin-top: 14px; }
.stakes__cite { font-size: .76rem !important; }
.stakes__cite a { color: #82420d; }

/* ---- Three tiers, matching the three-step funnel. ---- */
.tier-grid { align-items: start; display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; padding: clamp(26px, 3.5vw, 36px); }
.tier--full { background: var(--cream); }
.tier__step { color: var(--orange-text); font-size: .68rem; font-weight: 850; letter-spacing: .13em; margin-bottom: 12px; text-transform: uppercase; }
.tier h2, .tier h3 { font-size: 1.32rem; letter-spacing: -.02em; }
.tier__price { color: var(--navy); font-size: 1.75rem; font-weight: 800; letter-spacing: -.03em; margin-top: 16px; }
.tier__note { color: var(--muted); font-size: .78rem; margin-top: 6px; }
.tier__summary { color: var(--muted); font-size: .93rem; margin-top: 18px; }
.tier .check-list { margin-top: 20px; }
.tier .check-list li { font-size: .89rem; }
.tier .text-link { margin-top: auto; padding-top: 20px; }

/* ---- Manager program: they earn, they don't pay. ---- */
.program-panel { align-items: center; display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1.25fr .75fr; }
.program-panel h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
.program-panel > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; margin-top: 18px; }
.program-math { background: var(--navy); border-radius: 24px; color: #f6f7f9; padding: clamp(28px, 4vw, 40px); }
.program-math .eyebrow { color: #ed9a56; }
.program-math dl { display: grid; gap: 18px; margin: 0; }
.program-math dt { font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.program-math dd { color: var(--white); font-size: 2.1rem; font-weight: 800; letter-spacing: -.03em; margin: 4px 0 0; }
.program-math dd span { color: #d6dde3; font-size: .8rem; font-weight: 600; letter-spacing: 0; margin-left: 7px; }
.program-math .fine-print { border-top: 1px solid rgb(255 255 255 / 14%); color: #d6dde3; margin-top: 24px; padding-top: 18px; }

/* ---- Optional form fields, folded away so five required ones read as five. ---- */
.form-optional { border-top: 1px solid var(--line); margin-top: 26px; padding-top: 22px; }
.form-optional summary { color: var(--navy); cursor: pointer; font-size: .82rem; font-weight: 800; list-style: none; }
.form-optional summary::-webkit-details-marker { display: none; }
.form-optional summary::before { content: "+ "; color: var(--orange); font-weight: 400; }
.form-optional[open] summary::before { content: "– "; }
.form-optional .form-grid { margin-top: 22px; }
.form-submit strong { color: var(--navy); }

/* ---- Answer blocks. Open text, not an accordion: crawlers and assistants
       weigh visible prose more readily than collapsed panels. ---- */
.answers { columns: 2; column-gap: 44px; }
.answer { break-inside: avoid; margin-bottom: 30px; }
.answer h3 { color: var(--navy-deep); font-size: 1.08rem; letter-spacing: -.015em; margin-bottom: 10px; }
.answer p { color: var(--muted); font-size: .93rem; }

/* ---- Shared small pieces ---- */
.numbered-list { counter-reset: item; list-style: none; margin: 26px 0 0; padding: 0; }
.numbered-list li { border-top: 1px solid var(--line); color: var(--navy-deep); font-weight: 700; padding: 14px 0 14px 44px; position: relative; }
.numbered-list li::before { color: var(--orange-text); content: "0" counter(item); counter-increment: item; font-size: .74rem; font-weight: 850; left: 0; letter-spacing: .08em; position: absolute; top: 16px; }
.fine-print { color: var(--muted); font-size: .78rem; line-height: 1.55; margin-top: 14px; }
.service-detail h3 { font-size: 1.35rem; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-contact { margin-left: auto; }
  .header-cta { margin-left: 12px; }
  .mobile-menu { display: block; margin-left: 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .program-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 66px; }
  .container { width: min(100% - 28px, 1180px); }
  .preview-bar__inner { justify-content: flex-start; min-height: 42px; }
  .preview-bar p { line-height: 1.25; }
  .header-inner { min-height: 68px; }
  .header-cta { display: none; }
  /* The sticky bottom bar already carries Call and Book, so the header stays clean. */
  .header-contact { display: none; }
  .wordmark__mark { width: 34px; }
  .audience-split, .tier-grid { grid-template-columns: 1fr; }
  .answers { columns: 1; }
  .sc-row { padding: 18px 20px; }
  .sc-row__head { flex-direction: column; gap: 8px; }
  .scorecard__cap { padding: 20px; }
  .hero-grid, .split, .cta-banner, .equipment-intro { grid-template-columns: 1fr; }
  .card-grid, .card-grid--3, .area-list, .photo-story-grid, .equipment-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:first-child { border-left: 0; border-top: 1px solid var(--line); padding: 25px 0; }
  .step:first-child { border-top: 0; }
  .service-detail { gap: 12px; grid-template-columns: 1fr; }
  .service-map__provider-toolbar { align-items: start; grid-template-columns: 1fr; }
  .service-map__provider-buttons { justify-content: flex-start; }
  .service-map__leaflet, .service-map__loading { height: 540px; }
  .service-map__provider-card { align-items: start; gap: 12px; grid-template-columns: 1fr; }
  .service-map__provider-links { justify-content: flex-start; }
  .service-map__legend { right: 10px; top: 10px; }
  .area-list > div:last-child ul { columns: 2; column-gap: 24px; }
  .form-intro, .form-submit { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }
  .cta-banner .button-row { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 8px; }
  .mobile-actions { background: var(--cream); border-top: 1px solid var(--line); bottom: 0; display: grid; grid-template-columns: 1fr 1.2fr; left: 0; padding: 8px; position: fixed; right: 0; z-index: 60; }
  .mobile-actions a { align-items: center; border-radius: 8px; color: var(--navy); display: flex; font-size: .74rem; font-weight: 800; gap: 6px; justify-content: center; min-height: 48px; text-decoration: none; }
  .mobile-actions a:last-child { background: var(--navy); color: var(--white); }
  .mobile-actions svg { width: 17px; }
}

@media (max-width: 430px) {
  h1 { font-size: 2.65rem; }
  .page-hero { padding-top: 62px; }
  .button-row .button { width: 100%; }
  .art-status { bottom: 14px; left: 14px; right: 14px; }
  .card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
