@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600&family=Raleway:wght@300&display=swap');

:root {
	--yellow: #FECE0A;
	--blue: #0170B9;
	--ink: #292929;
	--page: #F4F4F4
}

* {
	box-sizing: border-box
}

body {
	margin: 0;
	background: var(--page);
	color: var(--ink);
	font-family: Lato, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px
}

.site-header {
	height: 124px;
	background: var(--yellow);
	display: flex;
	align-items: center;
	padding: 20px;
	gap: 28px
}

.site-logo img {
	display: block;
	width: 261px;
	height: 80px;
	object-fit: contain
}

.site-header nav {
	margin-left: auto;
	display: flex;
	gap: 25px;
	align-items: center
}

.site-header a {
	color: var(--ink);
	font-size: 18px;
	font-weight: 600;
	text-decoration: none
}

.header-booking, .booking-call-to-action, .contact-form button {
	background: var(--blue);
	border: 0;
	border-radius: 999px;
	color: #F4F4F4 !important;
	padding: 13px 24px;
	text-transform: uppercase
}

.menu-toggle {
	display: none
}

.site-layout {
	max-width: 1280px;
	margin: 64px auto;
	display: grid;
	grid-template-columns:minmax(0, 788px) 410px;
	gap: 60px
}

.page-content h1, .booking-page h1 {
	font-family: Raleway, sans-serif;
	font-size: 42px;
	font-weight: 300;
	line-height: 40px;
	margin: 0 0 36px
}

.page-content h2 {
	font-family: Raleway, sans-serif;
	font-size: 32px;
	font-weight: 300;
	line-height: 40px;
	letter-spacing: -.4px
}

.page-content h3 {
	font-family: Raleway, sans-serif;
	font-size: 28px;
	font-weight: 300;
	line-height: 32px
}

.page-content p, .page-content li, .contact-page p {
	font-size: 20px;
	line-height: 28.8px;
	font-weight: 300
}

.page-content img {
	max-width: 100%;
	height: auto;
	margin: 0;
}

.home-carousel {
	height: 455px;
	position: relative;
	overflow: hidden;
	margin-bottom: 34px;
	background: #DDD
}

.home-carousel img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s
}

.home-carousel img:first-child {
	opacity: 1
}

.services-sidebar h2 {
	font-family: Raleway, sans-serif;
	font-size: 32px;
	font-weight: 300;
	line-height: 40px
}

.services-sidebar p, .services-sidebar li {
	font-size: 20px;
	line-height: 28.8px;
	font-weight: 300
}

.booking-call-to-action {
	display: block;
	margin: 30px auto;
	max-width: 364px;
	padding: 26px 24px;
	background: var(--yellow);
	color: var(--blue) !important;
	font-size: 24px;
	font-weight: 400;
	line-height: 31px;
	text-align: center;
	text-transform: uppercase;
	border-radius: 999px;
	text-decoration: none;
}

.brand-carousel {
	height: 120px;
	overflow: hidden;
	position: relative
}

.brand-carousel img {
	display: none;
	width: 100%;
	height: 100px;
	object-fit: contain
}

.brand-carousel img:first-child {
	display: block
}

.site-footer {
	min-height: 398px;
	background: rgba(124, 124, 124, .93);
	padding: 62px 20px 40px;
	text-align: center;
	color: #FFF;
	font-size: 18px
}

.site-footer img {
	display: block;
	width: 260px;
	max-width: 100%;
	height: auto;
	margin: 0 auto 22px
}

.site-footer a {
	color: var(--yellow)
}

.contact-page, .booking-page {
	max-width: 1280px;
	margin: 64px auto
}

.map-frame {
	width: 100%;
	height: 640px;
	border: 0
}

.contact-columns {
	display: grid;
	grid-template-columns:1fr 1fr;
	gap: 60px;
	margin-top: 58px
}

.contact-form {
	display: grid;
	gap: 24px
}

.contact-form .form-field {
	margin: 0
}

.contact-form .form-label {
	margin-bottom: 8px
}

.contact-form .form-label label {
	display: inline;
	font-size: 18px;
	font-weight: 400
}

.contact-form .required {
	margin-left: 2px;
	color: var(--blue)
}

.contact-form input, .contact-form textarea {
	display: block;
	width: 100%;
	border: 1px solid #D1D5DB;
	border-radius: 0;
	padding: 14px 16px;
	background: #FFF;
	font-family: Lato, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px
}

.contact-form textarea {
	min-height: 180px;
	resize: vertical
}

.contact-form .buttons {
	margin-top: 2px
}

.contact-form button {
	min-width: 116px;
	padding: 14px 24px;
	font-family: Lato, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px
}

#contact-wrapper .notices.success,
#contact-wrapper .notices.error {
	margin: 0;
	padding: 16px 18px;
	border-left: 5px solid var(--blue);
	background: #FFF;
	font-size: 16px;
	line-height: 24px
}

.booking-frame {
	width: 100%;
	min-height: 900px;
	border: 0;
	background: #FFF
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 3px
}

@media (max-width: 1120px) {
	.site-header {
		height: auto;
		flex-wrap: wrap
	}

	.site-header nav {
		order: 4;
		width: 100%;
		margin: 0;
		justify-content: center
	}

	.site-layout {
		margin: 48px 28px;
		grid-template-columns:minmax(0, 1fr) 340px;
		gap: 36px
	}

	.contact-page, .booking-page {
		margin: 48px 28px
	}
}

@media (max-width: 767px) {
	.site-header {
		padding: 12px 18px;
		gap: 16px
	}

	.site-logo img {
		width: 185px;
		height: auto
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
		background: transparent;
		border: 1px solid var(--ink);
		padding: 8px
	}

	.site-header nav {
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0
	}

	.site-header nav.is-open {
		display: flex
	}

	.site-header nav a {
		padding: 12px
	}

	.header-booking {
		margin-left: auto;
		font-size: 15px;
		padding: 10px 14px
	}

	.site-layout {
		display: block;
		margin: 35px 20px
	}

	.services-sidebar {
		margin-top: 50px
	}

	.home-carousel {
		height: 300px
	}

	.page-content h1, .booking-page h1 {
		font-size: 36px
	}

	.page-content h2 {
		font-size: 28px
	}

	.contact-page, .booking-page {
		margin: 35px 20px
	}

	.map-frame {
		height: 420px
	}

	.contact-columns {
		display: block;
		margin-top: 35px
	}

	.contact-form {
		margin-top: 35px
	}

	.booking-frame {
		min-height: 700px
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important
	}
}
