/* truelogic global styles — nav, home, inner pages, contact */

:root {
	--tl-primary: #3368A0;
	--tl-secondary: #66A3BF;
	--tl-mist: #C8DFDB;
	--tl-cream: #F2EFE7;
	--tl-ink: #14304F;
	--tl-muted: #51637A;
	--tl-radius: 12px;
	--tl-shadow: 0 10px 30px rgba(20, 48, 79, .10);
	--tl-font: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI',
		Roboto, Arial, sans-serif;
}

/* base */
html {
	scroll-padding-top: 64px;
}

.tl-nav,
.tl-home,
.tl-skip {
	font-family: var(--tl-font);
}

.tl-nav,
.tl-home {
	font-size: 16px;
	color: var(--tl-ink);
	line-height: 1.6;
}

.tl-nav *,
.tl-home * {
	box-sizing: border-box;
}

.tl-home :where(h1, h2, h3, p, figure, blockquote) {
	margin: 0;
}

.tl-nav a,
.tl-home a {
	text-decoration: none;
}

.tl-wrap {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

/* focus states */
.tl-nav a:focus:not(:focus-visible),
.tl-nav button:focus:not(:focus-visible),
.tl-home a:focus:not(:focus-visible),
.tl-home button:focus:not(:focus-visible) {
	outline: 0;
}

.tl-nav a:focus-visible,
.tl-nav button:focus-visible,
.tl-home a:focus-visible,
.tl-home button:focus-visible {
	outline: 3px solid var(--tl-primary);
	outline-offset: 3px;
}

.tl-hero a:focus-visible,
.tl-quotes a:focus-visible,
.tl-cta a:focus-visible,
.tl-card--featured a:focus-visible {
	outline-color: #fff;
}

.tl-skip {
	position: absolute;
	left: 12px;
	top: -60px;
	z-index: 100;
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--tl-ink);
	color: #fff;
	text-decoration: none;
}

.tl-skip:focus {
	top: 12px;
	color: #fff;
}

/* buttons */
.tl-btn {
	display: inline-block;
	padding: 12px 22px;
	border: 0;
	border-radius: 8px;
	font-family: var(--tl-font);
	font-size: 14.4px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	appearance: none;
	-webkit-appearance: none;
	transition:
		background-color .15s,
		color .15s,
		transform .15s,
		box-shadow .15s;
}

.tl-btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(20, 48, 79, .16);
}

.tl-btn:active {
	transform: translateY(0);
	box-shadow: none;
}

.tl-btn--primary,
a.tl-btn--primary:visited {
	background: var(--tl-primary);
	color: #fff;
}

.tl-btn--primary:hover {
	background: var(--tl-ink);
	color: #fff;
}

.tl-btn--accent,
a.tl-btn--accent:visited {
	background: var(--tl-secondary);
	color: var(--tl-ink);
}

.tl-btn--accent:hover {
	background: var(--tl-mist);
	color: var(--tl-ink);
}

.tl-btn--light,
a.tl-btn--light:visited {
	background: #fff;
	color: var(--tl-ink);
}

.tl-btn--light:hover {
	background: var(--tl-mist);
	color: var(--tl-ink);
}

.tl-btn--dark,
a.tl-btn--dark:visited {
	background: var(--tl-ink);
	color: #fff;
}

.tl-btn--dark:hover {
	background: var(--tl-primary);
	color: #fff;
}

/* navbar */
.tl-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	box-shadow: 0 1px 0 rgba(20, 48, 79, .08);
}

.tl-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 56px;
}

a.tl-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	font-weight: 700;
	color: var(--tl-ink);
}

.tl-brand:hover {
	color: var(--tl-ink);
}

.tl-brand__logo {
	display: block;
	width: auto;
	height: 32px;
	max-width: 170px;
}

.tl-brand__fallback {
	display: none;
	align-items: center;
	gap: 10px;
}

.tl-brand.no-logo .tl-brand__fallback {
	display: inline-flex;
}

.tl-brand__mark {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: var(--tl-primary);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.tl-nav__menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.tl-nav__menu ul {
	display: flex;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tl-nav__menu li a {
	position: relative;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	font-size: 14px;
	font-weight: 500;
	color: var(--tl-ink);
	transition: color .15s;
}

.tl-nav__menu li a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -2px;
	height: 2px;
	background: var(--tl-primary);
	transition: right .25s ease;
}

.tl-nav__menu li a:hover::after,
.tl-nav__menu li a.is-active::after {
	right: 0;
}

.tl-nav__cta {
	padding: 8px 16px;
	font-size: 13.6px;
}

.tl-nav__menu li a:hover {
	color: var(--tl-primary);
}

.tl-nav__menu li a.is-active {
	color: var(--tl-primary);
	border-bottom-color: transparent;
}

.tl-nav__toggle {
	display: none;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	cursor: pointer;
	position: relative;
}

.tl-nav__toggle span,
.tl-nav__toggle span::before,
.tl-nav__toggle span::after {
	position: absolute;
	left: 8px;
	width: 22px;
	height: 2px;
	background: var(--tl-ink);
	content: "";
	transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

.tl-nav__toggle span {
	top: 18px;
}

.tl-nav__toggle span::before {
	left: 0;
	top: -7px;
}

.tl-nav__toggle span::after {
	left: 0;
	top: 7px;
}

/* hero */
.tl-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: 460px;
	color: #fff;
	background-color: var(--tl-primary);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.tl-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			100deg,
			rgba(20, 48, 79, .94) 0%,
			rgba(20, 48, 79, .78) 45%,
			rgba(51, 104, 160, .45) 100%
		);
}

.tl-hero__body {
	max-width: 600px;
	padding: 72px 0;
}

.tl-hero__tag {
	display: inline-block;
	margin-bottom: 18px;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .16);
	font-size: 12.8px;
}

.tl-hero h1 {
	margin-bottom: 18px;
	font-size: clamp(32px, 4.6vw, 51.2px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -.01em;
	color: #fff;
}

.tl-hero p {
	max-width: 52ch;
	margin-bottom: 28px;
	font-size: 16.32px;
	color: rgba(255, 255, 255, .9);
}

.tl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* stats */
.tl-stats {
	padding: 44px 0;
	background: #fff;
}

.tl-stats__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px 40px;
}

.tl-stats h2 {
	max-width: 15em;
	font-size: clamp(22.4px, 2.6vw, 30.4px);
	font-weight: 700;
	line-height: 1.25;
}

.tl-stats__list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tl-stat {
	padding: 0 28px;
	border-left: 1px solid rgba(20, 48, 79, .15);
	text-align: center;
}

.tl-stat:first-child {
	padding-left: 0;
	border-left: 0;
}

.tl-stat:last-child {
	padding-right: 0;
}

.tl-stat__value {
	display: block;
	font-size: 35.2px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--tl-primary);
	font-variant-numeric: tabular-nums;
}

.tl-stat__label {
	display: block;
	font-size: 13.12px;
	color: var(--tl-muted);
}

/* about */
.tl-about {
	padding: 84px 0;
	background: var(--tl-cream);
}

.tl-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.tl-collage {
	position: relative;
	width: 100%;
	max-width: 500px;
	aspect-ratio: 1 / .95;
}

.tl-collage > div {
	position: absolute;
	border-radius: var(--tl-radius);
	background-size: cover;
	background-position: center;
}

.tl-collage__a {
	left: 0;
	top: 6%;
	width: 48%;
	height: 42%;
	background-color: var(--tl-secondary);
	box-shadow: var(--tl-shadow);
}

.tl-collage__block {
	left: 44%;
	top: 0;
	width: 24%;
	height: 28%;
	background-color: var(--tl-mist);
}

.tl-collage__b {
	left: 44%;
	top: 20%;
	width: 56%;
	height: 68%;
	background-color: var(--tl-primary);
	box-shadow: var(--tl-shadow);
}

.tl-collage__dot {
	left: 14%;
	top: 54%;
	width: 14%;
	height: 15%;
	background-color: var(--tl-primary);
}

.tl-rule {
	display: block;
	width: 48px;
	height: 3px;
	margin-bottom: 18px;
	background: var(--tl-secondary);
}

.tl-about h2 {
	margin-bottom: 14px;
	font-size: clamp(25.6px, 3vw, 33.6px);
	font-weight: 700;
	line-height: 1.2;
}

.tl-about__lead {
	max-width: 56ch;
	margin-bottom: 28px;
	color: var(--tl-muted);
}

.tl-point {
	display: flex;
	gap: 16px;
	margin-bottom: 22px;
}

.tl-point h3 {
	margin-bottom: 4px;
	font-size: 16.8px;
	font-weight: 600;
}

.tl-point p {
	font-size: 14.88px;
	color: var(--tl-muted);
}

.tl-about .tl-btn {
	margin-top: 8px;
}

.tl-icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--tl-primary);
	color: #fff;
	font-size: 16px;
	transition: transform .2s ease;
}

.tl-point:hover .tl-icon {
	transform: scale(1.08) rotate(-4deg);
}

/* services */
.tl-services {
	padding: 84px 0;
	background: #fff;
}

.tl-services__head {
	max-width: 640px;
	margin: 0 auto 44px;
	text-align: center;
}

.tl-services__kicker {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
	font-size: 13.6px;
	color: var(--tl-muted);
}

.tl-services__kicker::before,
.tl-services__kicker::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(20, 48, 79, .15);
}

.tl-services h2 {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	line-height: 1.25;
}

.tl-card {
	display: flex;
	flex-direction: column;
	padding: 30px 26px;
	border-radius: var(--tl-radius);
	background: #fff;
	box-shadow: var(--tl-shadow);
	transition: transform .25s ease, box-shadow .25s ease;
}

.tl-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 34px rgba(20, 48, 79, .16);
}

.tl-card h3 {
	margin: 20px 0 8px;
	font-size: 16.8px;
	font-weight: 600;
	line-height: 1.35;
}

.tl-card p {
	margin-bottom: 22px;
	font-size: 14.88px;
	color: var(--tl-muted);
}

a.tl-card__link {
	margin-top: auto;
	font-size: 13.6px;
	font-weight: 600;
	color: var(--tl-primary);
	transition: gap .15s ease;
}

.tl-card__link:hover {
	color: var(--tl-ink);
	text-decoration: underline;
}

.tl-card--featured {
	background: linear-gradient(
		165deg,
		var(--tl-primary) 0%,
		var(--tl-ink) 100%
	);
	color: #fff;
}

.tl-card--featured h3 {
	color: #fff;
}

.tl-card--featured p {
	color: rgba(255, 255, 255, .88);
}

.tl-card--featured .tl-icon {
	background: #fff;
	color: var(--tl-primary);
}

.tl-card--featured .tl-card__link {
	color: var(--tl-mist);
}

.tl-card--featured .tl-card__link:hover {
	color: #fff;
}

.tl-card .tl-icon {
	width: 54px;
	height: 54px;
	font-size: 22px;
}

/* carousel */
.tl-carousel {
	--tl-pv: 3;
	--tl-gap: 28px;
	position: relative;
}

.tl-carousel__viewport {
	margin: 0 -12px;
	padding: 12px 12px 30px;
	overflow: hidden;
	touch-action: pan-y;
}

.tl-carousel:not(.is-ready) .tl-carousel__viewport {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
}

.tl-carousel__track {
	position: relative;
	display: flex;
	gap: var(--tl-gap);
	transition: transform .5s cubic-bezier(.22, .61, .36, 1);
	will-change: transform;
}

.tl-carousel .tl-card {
	flex: 0 0 calc(
		(100% - var(--tl-gap) * (var(--tl-pv) - 1))
		/ var(--tl-pv)
	);
	scroll-snap-align: start;
	box-shadow: 0 6px 14px rgba(20, 48, 79, .12);
}

.tl-carousel__controls {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 4px;
}

.tl-carousel.is-ready .tl-carousel__controls {
	display: flex;
}

.tl-carousel__btn {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--tl-primary);
	color: #fff;
	font-size: 15px;
	cursor: pointer;
	transition: background-color .15s, color .15s, transform .15s;
}

.tl-carousel__btn:hover {
	background: var(--tl-ink);
	transform: scale(1.08);
}

.tl-carousel__btn--quiet {
	background: var(--tl-cream);
	color: var(--tl-ink);
}

.tl-carousel__btn--quiet:hover {
	background: var(--tl-mist);
}

.tl-services__more {
	margin-top: 36px;
	text-align: center;
}

.tl-services__more a {
	font-weight: 600;
	color: var(--tl-primary);
	border-bottom: 2px solid var(--tl-mist);
	padding-bottom: 2px;
	transition: border-color .15s, color .15s;
}

.tl-services__more a:hover {
	color: var(--tl-ink);
	border-bottom-color: var(--tl-primary);
}

/* testimonials */
.tl-quotes {
	padding: 84px 0;
	background: var(--tl-ink);
}

.tl-quotes h2 {
	margin-bottom: 40px;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	color: #fff;
}

.tl-quotes__cols {
	column-count: 3;
	column-gap: 24px;
}

.tl-quote {
	display: inline-block;
	width: 100%;
	margin: 0 0 24px;
	padding: 24px;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	border-radius: var(--tl-radius);
	background: var(--tl-cream);
	color: var(--tl-ink);
	transition: transform .25s ease, box-shadow .25s ease;
}

.tl-quote:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.tl-quote blockquote {
	margin-bottom: 20px;
	padding: 0;
	border: 0;
	font-size: 15.2px;
	line-height: 1.65;
	color: var(--tl-ink);
}

.tl-quote figcaption {
	display: flex;
	align-items: center;
	gap: 14px;
}

.tl-quote img {
	flex: none;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--tl-mist);
}

.tl-quote__name {
	display: block;
	font-size: 15.2px;
	font-weight: 600;
	line-height: 1.3;
}

.tl-quote__role {
	display: block;
	font-size: 13.12px;
	line-height: 1.4;
	color: var(--tl-muted);
}

/* stagger testimonial reveal by column */
.tl-quote:nth-of-type(1) { transition-delay: 0ms; }
.tl-quote:nth-of-type(2) { transition-delay: 80ms; }
.tl-quote:nth-of-type(3) { transition-delay: 160ms; }
.tl-quote:nth-of-type(4) { transition-delay: 0ms; }
.tl-quote:nth-of-type(5) { transition-delay: 80ms; }
.tl-quote:nth-of-type(6) { transition-delay: 160ms; }
.tl-quote:nth-of-type(7) { transition-delay: 0ms; }

/* closing cta */
.tl-cta {
	padding: 56px 0;
	background: var(--tl-primary);
	color: #fff;
}

.tl-cta__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.tl-cta h2 {
	margin-bottom: 4px;
	font-size: 25.6px;
	font-weight: 700;
	color: #fff;
}

.tl-cta p {
	color: rgba(255, 255, 255, .9);
}

/* inner pages */
.tl-hero--page {
	min-height: 0;
}

.tl-hero--page .tl-hero__body {
	max-width: 680px;
	padding: 56px 0 60px;
}

.tl-hero--page h1 {
	margin-bottom: 12px;
	font-size: clamp(30px, 4vw, 44px);
}

.tl-hero--page p {
	margin-bottom: 0;
}

.tl-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	font-size: 13.5px;
	color: rgba(255, 255, 255, .82);
}

.tl-crumbs li + li::before {
	content: "/";
	margin-right: 8px;
	opacity: .6;
}

.tl-crumbs a {
	color: #fff;
}

.tl-crumbs a:hover {
	color: #fff;
	text-decoration: underline;
}

.tl-pull {
	padding: 72px 0;
	background: var(--tl-cream);
	text-align: center;
}

.tl-pull figure {
	max-width: 820px;
	margin: 0 auto;
}

.tl-pull .tl-icon {
	width: 52px;
	height: 52px;
	margin: 0 auto 22px;
	font-size: 20px;
}

.tl-pull blockquote {
	padding: 0;
	border: 0;
	font-size: clamp(22px, 3.2vw, 32px);
	font-weight: 600;
	line-height: 1.35;
	color: var(--tl-ink);
}

.tl-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.tl-cards .tl-card p {
	margin-bottom: 0;
}

.tl-collage__badge {
	left: 0;
	bottom: 0;
	width: 40%;
	padding: 16px 18px;
	background-color: var(--tl-primary);
	color: #fff;
	box-shadow: var(--tl-shadow);
}

.tl-collage__badge strong {
	display: block;
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
}

.tl-collage__badge span {
	display: block;
	margin-top: 6px;
	font-size: 13.5px;
	line-height: 1.3;
}

.tl-tiles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tl-tile {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border-radius: var(--tl-radius);
	background: var(--tl-cream);
	font-weight: 500;
	line-height: 1.4;
	transition: transform .2s ease, box-shadow .2s ease;
}

.tl-tile:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(20, 48, 79, .12);
}

.tl-tiles__note {
	margin-top: 24px;
	text-align: center;
	color: var(--tl-muted);
}

.tl-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

a.tl-btn--outline {
	background: transparent;
	color: #fff;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .75);
}

a.tl-btn--outline:hover {
	background: #fff;
	color: var(--tl-ink);
}

/* contact page */
.tl-alert {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	padding: 14px 18px;
	border-radius: var(--tl-radius);
	font-size: .92rem;
	font-weight: 500;
}

.tl-alert--success {
	background: #E4F3EA;
	color: #1F6A3D;
}

.tl-alert--error {
	background: #FBE7E7;
	color: #A32E2E;
}

/* contact hero image swap, keeps contact_us.php untouched */
#main.tl-home .tl-hero--page {
	background-image:
		url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=2400&q=85") !important;
	background-size: cover !important;
	background-position: center 48% !important;
	background-repeat: no-repeat !important;
}

#main.tl-home .tl-hero--page::before {
	background:
		linear-gradient(
			105deg,
			rgba(20, 48, 79, .94) 0%,
			rgba(20, 48, 79, .82) 42%,
			rgba(51, 104, 160, .55) 100%
		);
}

/* contact info cards — overrides the dark bootstrap default */
#main.tl-home .tl-contact-intro {
	display: block !important;
	width: 100%;
	padding: 56px 0 28px !important;
	background: #ffffff !important;
	color: var(--tl-ink) !important;
}

#main.tl-home .tl-contact-intro .tl-wrap {
	background: transparent !important;
}

#main.tl-home .tl-info-row {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	width: 100%;
}

#main.tl-home .tl-info-card {
	display: flex !important;
	align-items: center;
	gap: 17px;
	min-width: 0;
	padding: 22px 22px !important;
	border: 1px solid rgba(20, 48, 79, .08);
	border-radius: var(--tl-radius);
	background: #ffffff !important;
	color: var(--tl-ink) !important;
	box-shadow:
		0 10px 28px rgba(20, 48, 79, .09) !important;
	transition:
		transform .2s ease,
		box-shadow .2s ease;
}

#main.tl-home .tl-info-card:hover {
	transform: translateY(-3px);
	box-shadow:
		0 16px 34px rgba(20, 48, 79, .14) !important;
}

#main.tl-home .tl-info-card .tl-icon {
	flex: 0 0 48px;
	width: 48px !important;
	height: 48px !important;
	margin: 0;
	border-radius: 50%;
	background: var(--tl-primary) !important;
	color: #ffffff !important;
	font-size: 17px;
	box-shadow: 0 5px 14px rgba(51, 104, 160, .22);
}

#main.tl-home .tl-info-card > div {
	min-width: 0;
	flex: 1;
}

#main.tl-home .tl-info-card__label {
	display: block !important;
	margin: 0 0 4px;
	font-size: 12px !important;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--tl-muted) !important;
}

#main.tl-home .tl-info-card__value {
	display: block !important;
	margin: 0 !important;
	font-size: 15px !important;
	font-weight: 600;
	line-height: 1.45;
	color: var(--tl-ink) !important;
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: clip !important;
	word-break: break-word;
}

/* contact map + form */
#main.tl-home .tl-services {
	display: block !important;
	width: 100%;
	padding: 42px 0 88px !important;
	background: #ffffff !important;
	color: var(--tl-ink) !important;
}

#main.tl-home .tl-contact__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 32px;
	align-items: stretch;
	width: 100%;
}

#main.tl-home .tl-map {
	position: relative;
	overflow: hidden;
	min-height: 520px !important;
	height: 100%;
	border-radius: var(--tl-radius);
	background: #e8eef3 !important;
	box-shadow:
		0 12px 32px rgba(20, 48, 79, .12) !important;
	line-height: 0;
}

#main.tl-home .tl-map iframe {
	display: block;
	width: 100% !important;
	height: 100% !important;
	min-height: 520px;
	border: 0;
}

#main.tl-home .tl-form {
	display: flex !important;
	flex-direction: column;
	padding: 34px 32px !important;
	border: 1px solid rgba(20, 48, 79, .08);
	border-radius: var(--tl-radius);
	background: #ffffff !important;
	color: var(--tl-ink) !important;
	box-shadow:
		0 12px 32px rgba(20, 48, 79, .10) !important;
}

#main.tl-home .tl-form__row {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 20px;
}

#main.tl-home .tl-field {
	margin-bottom: 21px;
}

#main.tl-home .tl-field label {
	display: block !important;
	margin-bottom: 8px;
	font-size: .88rem !important;
	font-weight: 600;
	line-height: 1.4;
	color: var(--tl-ink) !important;
}

#main.tl-home .tl-input {
	display: block !important;
	width: 100% !important;
	padding: 13px 17px !important;
	border: 1px solid rgba(20, 48, 79, .12) !important;
	border-radius: 10px !important;
	outline: none;
	background: #f7f9fb !important;
	font-family: var(--tl-font);
	font-size: .95rem;
	line-height: 1.5;
	color: var(--tl-ink) !important;
	transition:
		border-color .15s ease,
		background-color .15s ease,
		box-shadow .15s ease;
}

#main.tl-home .tl-input::placeholder {
	color: #7b8998 !important;
	opacity: 1;
}

#main.tl-home .tl-input:hover {
	border-color: rgba(51, 104, 160, .28) !important;
}

#main.tl-home .tl-input:focus {
	outline: 0 !important;
	border-color: var(--tl-primary) !important;
	background: #ffffff !important;
	box-shadow:
		0 0 0 3px rgba(51, 104, 160, .14) !important;
}

#main.tl-home .tl-textarea {
	min-height: 150px;
	border-radius: 10px !important;
	resize: vertical;
}

#main.tl-home .tl-form .tl-btn {
	margin-top: 2px;
	border: 0 !important;
}

#main.tl-home .tl-btn--block {
	display: block;
	width: 100%;
	padding: 15px 22px;
	border-radius: 10px;
	text-align: center;
}

#main.tl-home .tl-form .tl-btn--primary {
	background: var(--tl-primary) !important;
	color: #ffffff !important;
	box-shadow: 0 8px 18px rgba(51, 104, 160, .20);
}

#main.tl-home .tl-form .tl-btn--primary:hover {
	background: var(--tl-ink) !important;
	color: #ffffff !important;
	transform: translateY(-1px);
}

#main.tl-home .tl-hero--page .tl-hero__body {
	position: relative;
	z-index: 2;
}

#main.tl-home .tl-hero--page .tl-crumbs {
	margin-bottom: 22px;
}

#main.tl-home .tl-hero--page .tl-hero__tag {
	margin-bottom: 20px;
	padding: 8px 18px;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 999px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	font-size: 13px;
	font-weight: 600;
}

#main.tl-home .tl-hero--page h1 {
	max-width: 760px;
	margin-bottom: 0;
	font-size: clamp(36px, 4.7vw, 58px);
	line-height: 1.08;
	letter-spacing: -.025em;
	color: #ffffff !important;
}

/* animations */
@keyframes tl-fade-up {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}

.tl-hero-anim {
	opacity: 0;
	animation: tl-fade-up .7s ease forwards;
}

.tl-delay-1 { animation-delay: .05s; }
.tl-delay-2 { animation-delay: .2s; }
.tl-delay-3 { animation-delay: .35s; }
.tl-delay-4 { animation-delay: .5s; }

.tl-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}

.tl-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tl-reveal--left {
	transform: translateX(-32px);
}

.tl-reveal--right {
	transform: translateX(32px);
}

.tl-reveal--left.is-visible,
.tl-reveal--right.is-visible {
	transform: translateX(0);
}

/* breakpoint: 960px */
@media (max-width: 960px) {

	.tl-about__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.tl-collage {
		margin: 0 auto;
	}

	.tl-carousel {
		--tl-pv: 2;
	}

	.tl-quotes__cols {
		column-count: 2;
	}

	#main.tl-home .tl-contact__grid {
		grid-template-columns: 1fr;
	}

	#main.tl-home .tl-map {
		min-height: 400px !important;
	}

	#main.tl-home .tl-map iframe {
		min-height: 400px;
	}
}

/* breakpoint: 860px */
@media (max-width: 860px) {

	.tl-nav__toggle {
		display: block;
	}

	.tl-nav__menu {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 16px 20px 22px;
		background: #fff;
		box-shadow: 0 14px 24px rgba(20, 48, 79, .12);
	}

	.tl-nav.is-open .tl-nav__menu {
		display: flex;
	}

	.tl-nav__menu ul {
		flex-direction: column;
		gap: 4px;
	}

	.tl-nav__menu li a {
		display: inline-block;
		padding: 8px 0;
	}

	.tl-nav__cta {
		text-align: center;
	}

	.tl-cards,
	.tl-tiles {
		grid-template-columns: 1fr;
	}

	#main.tl-home .tl-info-row {
		grid-template-columns: 1fr;
	}

	#main.tl-home .tl-info-card {
		width: 100%;
	}

}

/* breakpoint: 640px */
@media (max-width: 640px) {

	.tl-hero {
		min-height: 0;
	}

	.tl-brand__logo {
		height: 28px;
		max-width: 140px;
	}

	.tl-hero__body {
		padding: 56px 0;
	}

	.tl-stats__list {
		width: 100%;
		justify-content: space-between;
	}

	.tl-stat {
		padding: 0 12px;
	}

	.tl-stat__value {
		font-size: 28.8px;
	}

	.tl-about,
	.tl-services,
	.tl-quotes {
		padding: 60px 0;
	}

	.tl-carousel {
		--tl-pv: 1;
	}

	.tl-quotes__cols {
		column-count: 1;
	}

	.tl-pull {
		padding: 56px 0;
	}

	.tl-hero--page .tl-hero__body {
		padding: 44px 0 48px;
	}

	.tl-contact-intro {
		padding: 32px 0 4px;
	}

	.tl-form__row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	#main.tl-home .tl-contact-intro {
		padding: 38px 0 18px !important;
	}

	#main.tl-home .tl-services {
		padding: 24px 0 60px !important;
	}

	#main.tl-home .tl-form {
		padding: 26px 20px !important;
	}

	#main.tl-home .tl-hero--page h1 {
		font-size: clamp(34px, 10vw, 46px);
	}

	#main.tl-home .tl-map {
		min-height: 320px !important;
	}

	#main.tl-home .tl-map iframe {
		min-height: 320px;
	}
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {

	.tl-btn,
	.tl-carousel__btn,
	.tl-info-card,
	.tl-card,
	.tl-quote,
	.tl-tile,
	.tl-icon,
	.tl-nav__menu li a::after,
	.tl-nav__toggle span,
	.tl-nav__toggle span::before,
	.tl-nav__toggle span::after {
		transition: none;
	}

	.tl-carousel__track {
		transition: none;
	}

	.tl-hero-anim {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.tl-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}