:root {
	--thm-primary: #10cbc0;
	--thm-dark: #0e384b;
	--thm-ink: #1a1a1a;
	--thm-muted: #4a4a4a;
	--thm-light: #cddfe6;
	--thm-white: #ffffff;
	--thm-container: 1200px;
	--thm-radius: 20px;
	--thm-font: 'Zalando Sans', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.thm-site {
	margin: 0;
	font-family: var(--thm-font);
	color: var(--thm-ink);
	background: var(--thm-white);
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.thm-container {
	width: min(100% - 2rem, var(--thm-container));
	margin-inline: auto;
}

.thm-container--wide {
	width: min(100% - 2rem, 1500px);
}

.thm-skip {
	position: absolute;
	left: -9999px;
	top: auto;
}

.thm-skip:focus {
	left: 1rem;
	top: 1rem;
	z-index: 9999;
	background: #fff;
	padding: .5rem 1rem;
}

/* Header */
.thm-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--thm-white);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.thm-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 0;
	padding: 10px 0;
}

.thm-logo img {
	width: 260px;
	max-width: 260px;
	height: auto;
}

.thm-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: .5rem;
	cursor: pointer;
}

.thm-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--thm-ink);
}

.thm-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.thm-nav ul {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.thm-nav a {
	font-size: 1rem;
	font-weight: 600;
	color: var(--thm-ink);
}

.thm-nav a:hover {
	color: var(--thm-primary);
}

.thm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .875rem 1.5rem;
	border-radius: 999px;
	background: var(--thm-primary);
	color: var(--thm-white);
	font-family: var(--thm-font);
	font-size: 1rem;
	font-weight: 700;
	border: 0;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}

.thm-btn:hover {
	background: #0eb5ab;
	transform: translateY(-1px);
}

.thm-btn--phone svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.thm-btn--outline {
	background: transparent;
	border: 2px solid var(--thm-primary);
	color: var(--thm-primary);
}

.thm-btn--outline:hover {
	background: var(--thm-primary);
	color: var(--thm-white);
}

/* Hero */
.thm-hero {
	position: relative;
	min-height: 580px;
	display: grid;
	place-items: center;
	text-align: center;
	color: var(--thm-white);
	background-color: var(--thm-dark);
	background-image: linear-gradient(rgba(14, 56, 75, 0.72), rgba(14, 56, 75, 0.72)), var(--hero-bg-image);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.thm-hero__content {
	position: relative;
	z-index: 1;
	padding: 80px 0;
	max-width: 900px;
}

.thm-hero h1 {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.1;
	font-weight: 700;
}

.thm-hero h1 .thm-accent {
	color: var(--thm-primary);
}

.thm-hero h1 .thm-hero__mid {
	color: var(--thm-white);
}

.thm-hero__sub {
	margin: 0;
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--thm-white);
	font-weight: 400;
	max-width: 720px;
	margin-inline: auto;
}

/* Features card */
.thm-features-wrap {
	margin-top: -4.5rem;
	position: relative;
	z-index: 2;
	padding-bottom: 3rem;
}

.thm-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	background: var(--thm-white);
	border-radius: var(--thm-radius);
	box-shadow: 0 20px 60px rgba(14, 56, 75, .12);
	padding: 2.5rem 2rem;
}

.thm-feature {
	text-align: center;
}

.thm-feature__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: var(--thm-dark);
	display: grid;
	place-items: center;
}

.thm-feature__icon svg {
	width: 36px;
	height: 36px;
	fill: var(--thm-white);
}

.thm-feature h3 {
	margin: 0 0 .75rem;
	font-size: 1.25rem;
}

.thm-feature p {
	margin: 0;
	color: var(--thm-muted);
	font-size: .95rem;
}

/* Sections */
.thm-section {
	padding: 4rem 0;
}

.thm-split {
	padding: 1rem 0 2.5rem;
}

.thm-split--intro {
	padding-top: 0;
}

.thm-split__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 705px));
	justify-content: center;
	align-items: center;
	gap: 90px;
}

.thm-split__grid > * {
	width: 100%;
	max-width: 705px;
}

.thm-carousel {
	position: relative;
	overflow: hidden;
	border-radius: var(--thm-radius);
}

.thm-carousel__track {
	position: relative;
}

.thm-carousel__slide {
	display: none;
}

.thm-carousel__slide.is-active {
	display: block;
}

.thm-carousel__slide img {
	width: 100%;
	height: 537px;
	object-fit: cover;
}

.thm-carousel--garage figure {
	position: relative;
	margin: 0;
}

.thm-carousel--garage .thm-carousel__slide img {
	height: 469px;
}

.thm-carousel--garage figcaption {
	position: absolute;
	top: 30px;
	left: 30px;
	background: var(--thm-white);
	padding: .625rem 1.5rem;
	border-radius: 999px;
	font-weight: 700;
}

.thm-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	color: var(--thm-dark);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}

.thm-carousel__btn--prev { left: 1rem; }
.thm-carousel__btn--next { right: 1rem; }

.thm-cta-card {
	background: var(--thm-light);
	border-radius: var(--thm-radius);
	padding: 2.5rem;
}

.thm-cta-card h3 {
	margin: 0 0 1rem;
	font-size: 1.75rem;
	line-height: 1.2;
	color: var(--thm-dark);
}

.thm-cta-card p {
	margin: 0 0 1.5rem;
	color: var(--thm-muted);
}

.thm-cta-card--center {
	text-align: center;
	max-width: 760px;
	margin-inline: auto;
}

.thm-cta-banner {
	background: var(--thm-white);
}

/* Services */
.thm-services {
	background: var(--thm-white);
}

.thm-services .thm-eyebrow {
	text-align: center;
	margin: 0 0 .5rem;
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--thm-primary);
}

.thm-services h2 {
	text-align: center;
	margin: 0 0 2.5rem;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--thm-dark);
}

.thm-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-radius: var(--thm-radius);
	overflow: hidden;
}

.thm-service-card {
	padding: 2rem 1.5rem;
	text-align: center;
	background: var(--thm-white);
}

.thm-service-card--alt {
	background: var(--thm-light);
}

.thm-service-card h5 {
	margin: 0 0 .75rem;
	font-size: 1.1rem;
	color: var(--thm-dark);
}

.thm-service-card p {
	margin: 0;
	font-size: .95rem;
	color: var(--thm-muted);
}

/* Footer */
.thm-footer {
	background: var(--thm-dark);
	color: var(--thm-white);
	padding: 4rem 0 2rem;
}

.thm-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr .6fr;
	gap: 2.5rem;
	align-items: start;
}

.thm-footer__brand img {
	width: min(100%, 280px);
	margin-bottom: 1rem;
}

.thm-footer__brand p {
	margin: 0;
	color: rgba(255, 255, 255, .85);
	font-size: .95rem;
}

.thm-contact-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.thm-contact-item__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--thm-primary);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.thm-contact-item__icon svg {
	width: 20px;
	height: 20px;
	fill: var(--thm-white);
}

.thm-contact-item h3 {
	margin: 0 0 .25rem;
	font-size: 1rem;
}

.thm-contact-item p {
	margin: 0;
	color: rgba(255, 255, 255, .85);
}

.thm-contact-item a:hover {
	color: var(--thm-primary);
}

.thm-footer__nav h6 {
	margin: 0 0 1rem;
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.thm-footer__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.thm-footer__nav li + li {
	margin-top: .5rem;
}

.thm-footer__nav a {
	color: rgba(255, 255, 255, .85);
}

.thm-footer__nav a:hover {
	color: var(--thm-primary);
}

.thm-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .15);
	font-size: .9rem;
	color: rgba(255, 255, 255, .75);
}

.thm-footer__bottom a:hover {
	color: var(--thm-primary);
}

/* Responsive */
@media (max-width: 1024px) {
	.thm-features {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.thm-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.thm-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 921px) {
	.thm-split__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media screen and (max-width: 1034px) and (min-width: 923px) {
	.thm-logo img {
		max-width: 160px;
		width: 160px;
	}
}

@media (max-width: 922px) {
	.thm-logo img {
		max-width: 200px;
		width: 200px;
	}
}

@media (max-width: 768px) {
	.thm-nav-toggle {
		display: flex;
	}

	.thm-nav {
		position: fixed;
		inset: 90px 0 auto 0;
		background: var(--thm-white);
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem;
		box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform .25s ease, opacity .25s ease;
	}

	.thm-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.thm-nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.thm-nav__phone {
		width: 100%;
	}

	.thm-services__grid {
		grid-template-columns: 1fr;
	}

	.thm-footer__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.thm-btn {
		transition: none;
	}
}
