@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/inter-greek.woff2") format("woff2");
	unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/inter-greek-ext.woff2") format("woff2");
	unicode-range: U+1F00-1FFF;
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/inter-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/inter-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {

	--tt-navy: #122b4d;
	--tt-blue: #0868d7;
	--tt-blue-dark: #064c9c;
	--tt-blue-soft: #eaf4ff;
	--tt-gray-soft: #f4f7fa;
	--tt-border: #dce4ec;
	--tt-text: #12233c;

	--tt-text-muted: #5a687b;
	--tt-white: #fff;

	--tt-border-control: #7d8b9c;

	--tt-on-navy: #dbe6f2;

	--tt-focus: var(--tt-blue);

	--tt-space-1: 8px;
	--tt-space-2: 16px;
	--tt-space-3: 24px;
	--tt-space-4: 32px;
	--tt-space-5: 48px;
	--tt-space-6: 64px;
	--tt-space-7: 96px;

	--tt-section: var(--tt-space-5);

	--tt-radius-action: 999px;
	--tt-radius-button: 10px;
	--tt-radius-card: 12px;
	--tt-radius-pill: 999px;

	--tt-shadow-card: 0 1px 2px rgb(18 43 77 / 4%);
	--tt-shadow-raised: 0 8px 24px rgb(18 43 77 / 8%);

	--tt-content: 1180px;
	--tt-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--tt-tap: 44px;

	--tt-header: 62px;

	--tt-sticky: 72px;

	--tt-text-micro: 0.75rem;
	--tt-text-small: 0.875rem;
	--tt-text-body: 1rem;
	--tt-text-strong: 1.125rem;
	--tt-text-lead: 1.3125rem;
	--tt-text-title: 1.75rem;

	--tt-elevation-1: 0 1px 2px rgb(18 43 77 / 6%), 0 1px 3px rgb(18 43 77 / 4%);
	--tt-elevation-2: 0 2px 4px rgb(18 43 77 / 6%), 0 6px 16px rgb(18 43 77 / 8%);
	--tt-elevation-3: 0 4px 8px rgb(18 43 77 / 7%), 0 14px 32px rgb(18 43 77 / 10%);
	--tt-elevation-4: 0 8px 16px rgb(18 43 77 / 8%), 0 28px 56px rgb(18 43 77 / 14%);

	--tt-duration-fast: 140ms;
	--tt-duration-base: 220ms;
	--tt-duration-slow: 520ms;
	--tt-ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
	--tt-ease-spring: cubic-bezier(0.34, 1.32, 0.64, 1);

	--tt-star: #b46a00;
	--tt-star-fill: #f0a92b;

	--tt-star-tile-fill: #00b67a;
	--tt-star-tile-empty: #dcdce6;
}

@media (min-width: 768px) {
	:root {
		--tt-section: var(--tt-space-6);
		--tt-header: 69px;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--tt-white);
	color: var(--tt-text);
	font-family: var(--tt-font);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

:focus-visible {
	outline: 3px solid var(--tt-focus);
	outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
	color: var(--tt-navy);
	line-height: 1.25;
	margin: 0 0 var(--tt-space-2);
	font-weight: 700;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(1.875rem, 1.3rem + 2.4vw, 2.5rem);
	letter-spacing: -0.03em;
}

h2 {
	font-size: clamp(1.375rem, 1.1rem + 1.2vw, 1.75rem);
}

h3 {
	font-size: var(--tt-text-strong);
}

p {
	margin: 0 0 var(--tt-space-2);
}

a {
	color: var(--tt-blue);
	text-underline-offset: 0.2em;
}

a:hover,
a:focus {
	color: var(--tt-blue-dark);
}

.tt-lede {
	color: var(--tt-text-muted);
	font-size: 1rem;
	max-width: 62ch;
}

.tt-eyebrow {
	display: inline-block;
	padding: var(--tt-space-1) 12px;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-pill);
	background: var(--tt-white);
	color: var(--tt-blue-dark);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.tt-container {
	width: 100%;
	max-width: var(--tt-content);
	margin-inline: auto;
	padding-inline: var(--tt-space-2);
}

@media (min-width: 768px) {
	.tt-container {
		padding-inline: var(--tt-space-3);
	}
}

.tt-main {
	display: block;
}

.tt-section {
	padding-block: var(--tt-section);
}

.tt-section--soft {
	background: var(--tt-gray-soft);
}

.tt-section--lead {
	padding-bottom: var(--tt-space-2);
}

.tt-section__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--tt-space-2);
	margin-bottom: var(--tt-space-3);
}

.tt-section__head h2 {
	margin-bottom: 0;
}

.tt-section__head p:not([class]) {
	margin: var(--tt-space-1) 0 0;
	color: var(--tt-text-muted);
	font-size: 0.9375rem;
}

.tt-section__link {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--tt-blue-dark);
	text-decoration: none;
	white-space: nowrap;
}

.tt-section__link:hover,
.tt-section__link:focus {
	text-decoration: underline;
}

.tt-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1);
}

[hidden] {
	display: none !important;
}

.tt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--tt-space-1);
	min-height: var(--tt-tap);

	padding: 10px var(--tt-space-3);

	text-align: center;

	line-height: 1.25;

	border: 1px solid transparent;

	border-radius: var(--tt-radius-action);
	background: var(--tt-blue);
	color: var(--tt-white);
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;

	transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.tt-button:hover,
.tt-button:focus {
	background: var(--tt-blue-dark);
	color: var(--tt-white);
}

.tt-button--secondary {
	background: var(--tt-white);
	border-color: var(--tt-border);
	color: var(--tt-navy);
}

.tt-button--secondary:hover,
.tt-button--secondary:focus {
	background: var(--tt-gray-soft);
	border-color: var(--tt-text-muted);
	color: var(--tt-navy);
}

.tt-button--quiet {
	background: transparent;
	border-color: transparent;
	color: var(--tt-navy);
	padding-inline: var(--tt-space-2);
}

.tt-button--quiet:hover,
.tt-button--quiet:focus {
	background: var(--tt-gray-soft);
	color: var(--tt-navy);
}

.tt-button--block {
	width: 100%;
}

.tt-field {
	display: block;
	margin-bottom: var(--tt-space-2);
}

.tt-field__label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--tt-navy);
}

.tt-field__hint {
	display: block;
	margin-top: 6px;
	font-size: 0.8125rem;
	color: var(--tt-text-muted);
}

.tt-input,
.tt-select,
.tt-textarea {
	width: 100%;
	min-height: var(--tt-tap);
	padding: 10px 12px;
	border: 1px solid var(--tt-border-control);
	border-radius: var(--tt-radius-button);
	background: var(--tt-white);
	color: var(--tt-text);
	font-size: 1rem;
}

.tt-textarea {
	min-height: 120px;
	resize: vertical;
}

.tt-select {
	appearance: none;
	padding-right: var(--tt-space-4);

	overflow: hidden;
	text-overflow: ellipsis;
	background-image: linear-gradient(45deg, transparent 50%, var(--tt-text-muted) 50%),
		linear-gradient(135deg, var(--tt-text-muted) 50%, transparent 50%);
	background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.tt-input:focus-visible,
.tt-select:focus-visible,
.tt-textarea:focus-visible {
	border-color: var(--tt-blue);
}

.tt-search--hero .tt-select:focus-visible,
.tt-search--hero .tt-search__text:focus-visible {
	outline-offset: -3px;
}

.tt-input::placeholder,
.tt-textarea::placeholder {
	color: var(--tt-text-muted);
}

.tt-input[aria-invalid="true"],
.tt-select[aria-invalid="true"],
.tt-textarea[aria-invalid="true"] {
	border-color: #b3261e;
}

.tt-field__error {
	display: block;
	margin-top: 6px;
	font-size: var(--tt-text-body);
	font-weight: 600;
	color: #b3261e;
}

.tt-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	padding: var(--tt-space-1) var(--tt-space-2);
	background: var(--tt-navy);
	color: var(--tt-white);
	border-radius: 0 0 var(--tt-radius-button) 0;
}

.tt-skip-link:focus {
	left: 0;
	color: var(--tt-white);
}

.tt-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: var(--tt-white);
	border-bottom: 1px solid var(--tt-border);
}

.tt-header:has( .tt-nav.is-open ) {
	position: relative;
}

@media (max-width: 767px) {

	body:has( .tt-hero--photo ) .tt-hero {
		padding: var(--tt-space-2);
		border-radius: 0;
		background: var(--tt-white);
	}

	.tt-hero--photo .tt-hero__media {
		inset: var(--tt-space-2);
		z-index: 0;
		border-radius: 28px;
		background: var(--tt-navy);
	}

	.tt-hero--photo .tt-hero__inner {
		z-index: 1;
		padding: var(--tt-space-3) var(--tt-space-2);
	}

	.tt-hero--photo:has( .tt-search--hero.is-collapsed ) {
		display: flex;
		flex-direction: column;
		min-block-size: 66svh;
	}

	.tt-hero--photo:has( .tt-search--hero.is-collapsed ) .tt-hero__inner {
		flex: 1;
		justify-content: center;
	}
}

body.tt-form-focus .tt-header {
	position: relative;
}

@keyframes tt-header-lifts {
	to {
		box-shadow: 0 1px 12px rgb(18 43 77 / 10%);
	}
}

.tt-header {
	animation: tt-header-lifts linear both;
	animation-timeline: scroll();
	animation-range: 0 var(--tt-space-2);
}

html {
	scroll-padding-top: calc(var(--tt-header) + var(--tt-space-1));
}

.tt-header__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--tt-space-2);
	min-height: 58px;
}

@media (min-width: 768px) {
	.tt-header__inner {
		min-height: 68px;

		column-gap: var(--tt-space-4);
		row-gap: var(--tt-space-2);
	}
}

.tt-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--tt-space-1);
	text-decoration: none;
	margin-right: auto;
}

.tt-brand__mark {
	display: grid;
	place-items: center;
	width: 35px;
	height: 35px;
	border-radius: 9px;
	background: var(--tt-blue);
	color: var(--tt-white);
	font-weight: 800;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
}

.tt-brand__text {
	display: block;
	color: var(--tt-navy);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
	font-size: 0.9375rem;
}

.tt-brand__sub {
	display: block;
	margin-top: 4px;
	color: var(--tt-blue);
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.tt-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-nav__list a {
	display: block;
	color: var(--tt-navy);
	text-decoration: none;
	font-weight: 600;
}

.tt-nav__list a:hover,
.tt-nav__list a:focus-visible {
	color: var(--tt-blue);
}

.tt-nav__list .current-menu-item > a,
.tt-nav__list .current-menu-ancestor > a {
	color: var(--tt-blue);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}

.tt-header__actions {
	display: flex;
	align-items: center;
	gap: var(--tt-space-1);
}

.tt-header__phone {
	display: flex;
	align-items: center;
	gap: 6px;

	min-height: var(--tt-tap);
	padding-inline: var(--tt-space-1);
	color: var(--tt-navy);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.tt-header__phone:hover,
.tt-header__phone:focus-visible {
	color: var(--tt-blue);
}

.tt-header__phone-icon {
	display: inline-flex;
	color: var(--tt-text-muted);
}

.tt-header__phone:hover .tt-header__phone-icon,
.tt-header__phone:focus-visible .tt-header__phone-icon {
	color: inherit;
}

@media (min-width: 1200px) {
	.tt-header__phone {
		display: none;
	}
}

.tt-langs__menu {
	position: relative;
}

.tt-langs__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: var(--tt-tap);
	block-size: var(--tt-tap);
	border-radius: var(--tt-radius-action);
	color: var(--tt-text-muted);
	text-decoration: none;
	cursor: pointer;

	list-style: none;
	transition:
		background-color var(--tt-duration-fast) var(--tt-ease-out),
		color var(--tt-duration-fast) var(--tt-ease-out);
}

.tt-langs__toggle::-webkit-details-marker {
	display: none;
}

@media (hover: hover) {
	.tt-langs__toggle:hover {
		background: var(--tt-gray-soft);
		color: var(--tt-blue-dark);
	}
}

.tt-langs__menu[open] .tt-langs__toggle {
	background: var(--tt-gray-soft);
	color: var(--tt-blue-dark);
}

.tt-langs__panel {
	position: absolute;
	inset-block-start: calc(100% + 6px);
	inset-inline-end: 0;
	z-index: 30;
	min-inline-size: 11rem;
	margin: 0;
	padding: 4px;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-button);
	background: var(--tt-white);
	box-shadow: var(--tt-elevation-2);
	list-style: none;
}

.tt-langs__option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--tt-space-2);
	min-block-size: 36px;
	padding-block: 6px;
	padding-inline: var(--tt-space-2);
	border-radius: var(--tt-radius-button);
	color: var(--tt-text);
	font-size: 0.9375rem;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color var(--tt-duration-fast) var(--tt-ease-out);
}

@media (hover: hover) {
	.tt-langs__option:hover {
		background: var(--tt-gray-soft);
	}
}

.tt-langs__name {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.tt-langs__option.is-current {
	color: var(--tt-blue-dark);
	font-weight: 600;
}

.tt-langs__tick {
	flex: 0 0 auto;
}

.tt-langs__track {
	display: inline-flex;
	gap: 2px;
	align-items: center;
	padding: 2px;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-action);
	background: var(--tt-gray-soft);
}

.tt-langs__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-inline-start: 6px;
	padding-inline-end: 2px;
	color: var(--tt-text-muted);
}

.tt-langs__list {
	display: flex;
	gap: 2px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tt-langs__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-inline-size: 34px;

	min-block-size: 28px;
	padding-inline: var(--tt-space-1);
	border-radius: var(--tt-radius-action);
	color: var(--tt-text-muted);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;

	transition:
		background-color var(--tt-duration-fast) var(--tt-ease-out),
		color var(--tt-duration-fast) var(--tt-ease-out),
		box-shadow var(--tt-duration-fast) var(--tt-ease-out);
}

.tt-langs__link.is-current {
	background: var(--tt-white);
	box-shadow: var(--tt-elevation-1);
	color: var(--tt-blue-dark);
}

@media (hover: hover) {
	.tt-langs__link:hover {
		color: var(--tt-text);
	}

	.tt-langs__link.is-current:hover {
		box-shadow: var(--tt-elevation-2);
		color: var(--tt-blue-dark);
	}
}

.tt-langs--bar {
	display: none;
}

.tt-langs--row {
	inline-size: 100%;
	margin-block-start: var(--tt-space-2);
	padding-block-start: var(--tt-space-2);
	border-block-start: 1px solid var(--tt-border);
}

.tt-langs__label {
	margin: 0 0 var(--tt-space-1);
	color: var(--tt-text-muted);
	font-size: var(--tt-text-micro);
	font-weight: 600;
	letter-spacing: 0.04em;
}

.tt-langs--row .tt-langs__track {
	display: flex;
	inline-size: 100%;
}

.tt-langs--row .tt-langs__list {
	flex: 1;
	gap: 2px;
}

.tt-langs--row .tt-langs__item {
	flex: 1;
}

.tt-langs--row .tt-langs__link {
	inline-size: 100%;

	min-block-size: var(--tt-tap);
	min-inline-size: 0;
	padding-inline: var(--tt-space-2);
	font-size: 0.9375rem;
}

@media (min-width: 1200px) {
	.tt-langs--bar {
		display: block;
	}

	.tt-langs--row {
		display: none;
	}
}

.tt-header__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #25d366;
	text-decoration: none;
}

.tt-header__whatsapp--bar {
	inline-size: var(--tt-tap);
	block-size: var(--tt-tap);

	margin-inline-end: -4px;
}

.tt-header__whatsapp:hover {
	filter: brightness(0.88);
}

.tt-header__whatsapp--row {
	gap: 6px;
	justify-content: flex-start;
	min-height: var(--tt-tap);
	padding-inline: var(--tt-space-1);
}

.tt-header__whatsapp--row svg {
	inline-size: 18px;
	block-size: 18px;
}

.tt-header__whatsapp-label {
	color: var(--tt-navy);
	font-size: 0.875rem;
	font-weight: 600;
}

.tt-header__whatsapp--row:hover .tt-header__whatsapp-label,
.tt-header__whatsapp--row:focus-visible .tt-header__whatsapp-label {
	color: var(--tt-blue);
}

@media (max-width: 1199px) {
	.tt-header__whatsapp--bar {
		display: none;
	}
}

@media (min-width: 1200px) {
	.tt-header__whatsapp--row {
		display: none;
	}
}

.tt-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--tt-space-1);
	min-height: var(--tt-tap);
	min-width: var(--tt-tap);
	padding: 0 14px;
	border: 1px solid var(--tt-border);

	border-radius: var(--tt-radius-action);
	background: var(--tt-white);
	color: var(--tt-navy);
	font-weight: 600;
	cursor: pointer;
}

.tt-nav-toggle:hover {
	background: var(--tt-gray-soft);
}

@media (max-width: 1199px) {

	.tt-header__actions {
		order: 2;
	}

	.tt-nav {
		order: 3;
		display: grid;
		grid-template-rows: 0fr;
		flex-basis: 100%;
		visibility: hidden;
		border-top: 1px solid transparent;
		background: var(--tt-white);
		transition: grid-template-rows 0.2s ease, visibility 0s linear 0.2s, border-color 0.2s ease;
	}

	.tt-nav__inner {
		min-height: 0;
		overflow: hidden;
	}

	.tt-nav.is-open {
		grid-template-rows: 1fr;
		visibility: visible;
		border-top-color: var(--tt-border);
		transition: grid-template-rows 0.22s ease, visibility 0s, border-color 0.2s ease;
	}

	.tt-nav__list a {
		min-height: var(--tt-tap);
		display: flex;
		align-items: center;
		border-bottom: 1px solid var(--tt-border);
	}

	.tt-nav__cta {
		padding-block: var(--tt-space-2);
	}

	.tt-header__cta {
		display: none;
	}
}

@media (min-width: 1200px) {
	.tt-nav-toggle,
	.tt-nav__cta {
		display: none;
	}

	.tt-nav {
		margin-left: auto;
	}

	.tt-nav__list {
		display: flex;
		align-items: center;
		gap: var(--tt-space-3);
	}

	.tt-nav__list a {
		font-size: 0.875rem;
	}
}

.tt-hero.tt-hero--photo {
	position: relative;
	isolation: isolate;
	background: var(--tt-navy);

	--tt-focus: var(--tt-white);
}

.tt-hero__media {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.tt-hero__media img {

	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

	object-position: 50% 0;
}

.tt-hero__media img:not(:first-child) {
	opacity: 0;
}

.tt-hero__media[data-tt-hero-slides] img {
	opacity: 0;
	transition: opacity 1200ms var(--tt-ease-out);
}

.tt-hero__media[data-tt-hero-slides] img.is-current {
	opacity: 1;
}

.tt-hero__pause {
	position: absolute;
	inline-size: 1px;
	block-size: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.tt-hero__pause:focus {
	z-index: 2;
	inset-block-end: var(--tt-space-2);
	inset-inline-end: var(--tt-space-2);
	display: grid;
	place-items: center;
	inline-size: 44px;
	block-size: 44px;
	margin: 0;
	overflow: visible;
	clip-path: none;
	border: 1px solid rgb(255 255 255 / 28%);
	border-radius: 50%;
	background: rgb(18 43 77 / 78%);
	color: var(--tt-white);
	cursor: pointer;
}

.tt-hero__pause svg {
	inline-size: 18px;
	block-size: 18px;
	fill: none;
	stroke: currentcolor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tt-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgb(18 43 77 / var(--tt-hero-scrim, 66%));
}

.tt-hero--photo .tt-hero__heading,
.tt-hero--photo .tt-hero__sub {
	color: var(--tt-white);
}

.tt-hero--photo .tt-hero__eyebrow {
	background: rgb(255 255 255 / 92%);

	border-color: transparent;
}

.tt-hero {
	position: relative;
	overflow: hidden;
	background: var(--tt-blue-soft);

	padding-block: var(--tt-space-3) var(--tt-space-2);
}

@media (min-width: 768px) {
	.tt-hero {
		padding-block: var(--tt-space-5);
	}

	.tt-hero::before {
		content: "";
		position: absolute;
		z-index: 0;
		inset-block-start: -34%;
		inset-inline-end: -8%;
		width: 420px;
		height: 420px;
		border-radius: 50%;
		background: rgb(8 104 215 / 7%);
	}
}

@media (min-width: 768px) {

	body:has( .tt-hero--photo ) .tt-hero {
		padding-block: var(--tt-space-2);
		background: var(--tt-white);
	}

	.tt-hero--photo .tt-hero__media {
		inset: var(--tt-space-2);
		z-index: 0;
		border-radius: 20px;
		background: var(--tt-navy);
	}

	.tt-hero--photo {
		display: flex;
		flex-direction: column;
		min-block-size: min(792px, 86svh);
	}

	.tt-hero--photo .tt-hero__inner {
		z-index: 1;
		display: flex;
		flex: 1;
		flex-direction: column;
		justify-content: center;
		padding-block: var(--tt-space-5);
	}

	.tt-hero--photo .tt-hero__eyebrow {
		align-self: center;
	}

	.tt-hero--photo.tt-hero::before {
		content: none;
	}
}

@media (min-width: 1200px) {
	:root:has( body.home .tt-hero--photo ) {

		--tt-header: 109px;
	}

	:root.tt-past-hero:has( body.home .tt-hero--photo ) {
		--tt-header: 69px;
	}

	body.home:has( .tt-hero--photo ) .tt-header {
		padding-block-start: 40px;
		background: transparent;
		border-bottom-color: transparent;
	}

	body.home:has( .tt-hero--photo ) .tt-header__inner {

		width: auto;
		max-width: none;

		margin-inline: 42px;
		padding-inline: var(--tt-space-3);
		border-radius: 17px;
		background: var(--tt-white);
	}

	.tt-past-hero body.home .tt-header {
		padding-block-start: 0;
		background: var(--tt-white);
		border-bottom-color: var(--tt-border);
	}

	.tt-past-hero body.home .tt-header__inner {
		max-width: var(--tt-content);
		margin-inline: auto;
		border-radius: 0;
		background: none;
	}

	body.home:has( .tt-hero--photo ) .tt-hero {
		margin-block-start: calc(var(--tt-header) * -1);
		padding-block: 0;
	}

	body.home:has( .tt-hero--photo ) .tt-hero__inner {
		padding-block-start: calc(var(--tt-header) + var(--tt-space-3));
	}
}

@media (prefers-reduced-motion: no-preference) {
	@keyframes tt-hero-settle {
		from {
			scale: 1.06;
		}

		to {
			scale: 1;
		}
	}

	@keyframes tt-hero-rise {
		from {
			opacity: 0;
			translate: 0 18px;
		}

		to {
			opacity: 1;
			translate: none;
		}
	}

	.tt-hero--photo .tt-hero__media img:first-child {
		animation: tt-hero-settle 1100ms var(--tt-ease-out) backwards;
	}

	.tt-hero--photo .tt-hero__eyebrow,
	.tt-hero--photo .tt-hero__heading,
	.tt-hero--photo .tt-hero__sub {
		animation: tt-hero-rise 460ms var(--tt-ease-out) backwards;
	}

	.tt-hero--photo .tt-hero__heading {
		animation-delay: 70ms;
	}

	.tt-hero--photo .tt-hero__sub {
		animation-delay: 140ms;
	}

}

.tt-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

@media (max-width: 767px) {
	.tt-hero__inner {
		display: flex;
		flex-direction: column;
	}

	.tt-hero__eyebrow {
		align-self: center;
	}

}

.tt-hero__eyebrow {
	display: inline-block;
	margin: 0 0 var(--tt-space-1);
	padding: 6px 14px;

	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-pill);
	background: var(--tt-white);
	color: var(--tt-blue-dark);
	font-size: 0.8125rem;
	font-weight: 600;
}

.tt-hero__heading {

	max-width: 760px;
	margin-inline: auto;
	margin-bottom: var(--tt-space-1);
	font-size: clamp(1.875rem, 1rem + 2.8vw, 3.25rem);
	letter-spacing: -0.035em;
	line-height: 1.12;
	text-wrap: balance;
}

.tt-hero__sub {
	max-width: 52ch;
	margin: 0 auto var(--tt-space-2);
	color: var(--tt-text-muted);

	text-wrap: balance;
}

.tt-trustbar-band {
	display: flex;
	justify-content: center;
	padding-block: var(--tt-space-2);
}

.tt-trustbar-band .tt-container {
	display: flex;
	justify-content: center;
}

.tt-trustbar {
	display: inline-flex;
	align-items: center;
	gap: var(--tt-space-1);
	margin: 0;
	padding: 7px 16px;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-action);
	background: var(--tt-white);
	color: var(--tt-text-muted);
	font-size: var(--tt-text-small);
	line-height: 1.2;
}

.tt-trustbar__brand {
	color: var(--tt-navy);
	font-weight: 700;
}

.tt-trustbar__word {
	flex: none;
	color: var(--tt-navy);
	font-size: var(--tt-text-body);
	font-weight: 700;
	letter-spacing: -0.01em;
}

.tt-trustbar__stars {
	--tt-star-tile: 17px;

	display: inline-flex;
	flex: none;
	gap: 2px;
	line-height: 1;
}

.tt-trustbar__stars .tt-rating__star {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: var(--tt-star-tile, 20px);
	height: var(--tt-star-tile, 20px);
	border-radius: 3px;
	background: var(--tt-star-tile-empty);
	color: var(--tt-white);
	font-size: calc(var(--tt-star-tile, 20px) * 0.62);
	line-height: 1;
}

.tt-trustbar__stars .tt-rating__star.is-filled {
	background: var(--tt-star-tile-fill);
}

.tt-trustbar__stars .tt-rating__glyph {
	position: relative;
	z-index: 1;
	color: var(--tt-white);
	-webkit-text-stroke: 0;
}

.tt-trustbar__stars .tt-rating__half {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	border-radius: 3px 0 0 3px;
	background: var(--tt-star-tile-fill);
}

@media (max-width: 479px) {
	.tt-trustbar {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
	}
}

@media (min-width: 768px) {
	.tt-hero__sub {
		margin-bottom: var(--tt-space-3);
		font-size: 1.0625rem;
	}
}

.tt-search {
	display: grid;

	--tt-focus: var(--tt-blue);

	width: 100%;
	gap: var(--tt-space-2);
	margin: 0 auto;
	padding: var(--tt-space-2);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
	box-shadow: var(--tt-shadow-card);
	text-align: left;
}

.tt-search--hero {
	max-width: 900px;
}

.tt-search__fields {
	display: grid;
	gap: var(--tt-space-2);
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
}

.tt-search__field {
	margin: 0;
	min-width: 0;
}

.tt-search__label {
	display: block;
	margin-bottom: 4px;
	color: var(--tt-text-muted);
	font-size: 0.75rem;
	font-weight: 600;
}

.tt-search__submit {
	width: 100%;
}

.tt-search__trigger {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 52px;
	padding: 0 var(--tt-space-2);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-pill);
	background: var(--tt-white);
	box-shadow: var(--tt-elevation-2);
	color: var(--tt-text-muted);
	font: inherit;
	font-size: 1rem;
	text-align: left;
	cursor: pointer;
}

.tt-search__trigger svg {
	flex: 0 0 auto;
	color: var(--tt-blue);
}

@media (max-width: 767px) {
	.tt-search--hero.is-collapsed {
		padding: 0;
		border-color: transparent;
		background: none;
		box-shadow: none;
	}

	.tt-search--hero.is-collapsed .tt-search__fields,
	.tt-search--hero.is-collapsed .tt-search__submit,
	.tt-search--hero.is-collapsed .tt-search__heading {
		display: none;
	}
}

@media (min-width: 768px) {
	.tt-search__trigger {
		display: none;
	}
}

@media (min-width: 768px) {
	.tt-search {
		grid-template-columns: 1fr auto;
		align-items: end;
	}

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

	.tt-search--3 .tt-search__fields {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tt-search__submit {
		width: auto;
	}
}

@media (min-width: 768px) {
	.tt-search--hero {
		align-items: stretch;
		gap: 0;
		padding: var(--tt-space-1);

		border-radius: 18px;
		box-shadow: var(--tt-shadow-raised);
	}

	.tt-search--hero.tt-search--3 .tt-search__fields {
		grid-template-columns: 1.2fr 1.15fr 1fr;
	}

	.tt-search--hero .tt-search__fields {
		gap: 0;
	}

	.tt-search--hero .tt-search__field {
		padding: 6px var(--tt-space-2);
	}

	.tt-search--hero .tt-search__field + .tt-search__field {
		border-inline-start: 1px solid var(--tt-border);
	}

	.tt-search--hero .tt-select,
	.tt-search--hero .tt-search__text {
		height: auto;
		padding: 0;
		border: 0;
		background-color: transparent;
		font-weight: 600;

	}

	.tt-search--hero .tt-select {
		padding-inline-end: var(--tt-space-3);
		background-position: calc(100% - 5px) 50%, 100% 50%;
	}

	.tt-search--hero .tt-search__submit {
		align-self: center;
		min-height: 52px;

		border-radius: var(--tt-radius-action);
		padding-inline: var(--tt-space-4);
	}
}

@media (min-width: 768px) and (max-width: 959px) {
	.tt-search--hero {
		grid-template-columns: 1fr;
	}

	.tt-search--hero .tt-search__submit {
		width: 100%;

		margin-top: var(--tt-space-1);
	}
}

.tt-banner {
	display: grid;
	overflow: hidden;
	border-radius: var(--tt-radius-card);
	background: var(--tt-navy);
	color: var(--tt-on-navy);

	--tt-focus: var(--tt-white);
}

@media (min-width: 768px) {
	.tt-banner {
		grid-template-columns: 3fr 2fr;
		align-items: stretch;
	}
}

.tt-banner__body {
	padding: var(--tt-space-4);
}

@media (min-width: 768px) {

	.tt-banner__body {
		display: flex;
		flex-direction: column;
		align-items: start;
		justify-content: center;
	}
}

.tt-banner__heading {
	color: var(--tt-white);
}

.tt-banner__text {
	max-width: 46ch;
	color: var(--tt-on-navy);
}

.tt-banner__media {
	display: none;
	background: var(--tt-blue-soft) repeating-linear-gradient(
		135deg,
		transparent 0 10px,
		rgb(18 43 77 / 4%) 10px 20px
	);
}

@media (min-width: 768px) {
	.tt-banner__media {
		display: block;
		min-height: 0;
	}
}

.tt-panel {
	padding: var(--tt-space-4);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
}

.tt-panel--accent {
	background: var(--tt-blue-soft);
	border-color: transparent;
}

.tt-split__body {
	max-width: 62ch;
}

@media (min-width: 900px) {
	.tt-home-contact {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: var(--tt-space-4);
	}

	.tt-home-contact__text {
		min-width: 0;
	}

	.tt-home-contact > .tt-button {
		flex: 0 0 auto;
	}
}

@media (min-width: 900px) {
	.tt-home-contact__text > :last-child {
		margin-bottom: 0;
	}
}

.tt-trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--tt-space-2);
}

@media (min-width: 768px) {
	.tt-trust {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		gap: var(--tt-space-3);
	}
}

.tt-trust__card {
	padding: var(--tt-space-3);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
}

.tt-trust__title {
	margin-bottom: 6px;
}

.tt-trust__text {
	margin: 0;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-body);
}

.tt-carousel {
	position: relative;
}

.tt-carousel__track {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: var(--tt-space-2);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;

	padding: 3px 3px var(--tt-space-1);
	margin-inline: -3px;
	scroll-padding-inline: 3px;
	-webkit-overflow-scrolling: touch;
}

.tt-carousel__track:focus-visible {
	outline: 3px solid var(--tt-focus);
	outline-offset: 2px;
}

.tt-reviews__item {
	flex: 0 0 84%;
	display: flex;
	scroll-snap-align: start;
}

.tt-reviews__item > .tt-review {
	width: 100%;
}

.tt-carousel__track {
	align-items: start;
}

@media (min-width: 768px) {
	.tt-carousel__track {
		gap: var(--tt-space-3);
		align-items: stretch;
	}

	.tt-carousel__track.is-ragged {
		align-items: start;
	}

	.tt-reviews__item {
		flex-basis: 46%;
	}
}

@media (min-width: 1024px) {
	.tt-reviews__item {
		flex-basis: calc((100% - 3 * var(--tt-space-3)) / 4);
	}
}

.tt-carousel__nav {
	display: flex;
	justify-content: flex-end;
	gap: var(--tt-space-1);
	margin-top: var(--tt-space-1);
}

.tt-carousel__button {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--tt-border-control);
	border-radius: var(--tt-radius-pill);
	background: var(--tt-white);
	color: var(--tt-navy);
	cursor: pointer;
}

.tt-carousel__button:hover:not([disabled]) {
	border-color: var(--tt-blue);
	color: var(--tt-blue);
}

.tt-carousel__button[disabled] {
	opacity: 0.4;
	cursor: default;
}

.tt-carousel__button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentcolor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (prefers-reduced-motion: reduce) {
	.tt-carousel__track {
		scroll-behavior: auto;
	}
}

.tt-review {
	margin: 0;
	padding: var(--tt-space-3);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
}

.tt-review__quote {
	margin: 0;
}

.tt-review__quote p {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tt-review--untitled .tt-review__quote p {
	-webkit-line-clamp: 4;
}

.tt-review__quote.is-open p {
	display: block;
	overflow: visible;
	-webkit-line-clamp: none;
}

.tt-review__quote:focus-visible {
	outline: 3px solid var(--tt-focus);
	outline-offset: 4px;
	border-radius: 4px;
}

.tt-review__author {
	margin-top: var(--tt-space-2);
	color: var(--tt-text-muted);
	font-size: 0.8125rem;
	font-weight: 600;
}

.tt-review__more {
	align-self: flex-start;
	padding-block: 11px;
	margin-block: -11px var(--tt-space-1);
	padding-inline: 0;
	border: 0;
	background: none;
	color: var(--tt-blue);
	font: inherit;
	font-size: var(--tt-text-small);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.tt-review__more:hover {
	color: var(--tt-blue-dark);
}

.tt-review__more:focus-visible {
	outline: 3px solid var(--tt-focus);
	outline-offset: 3px;
	border-radius: 4px;
}

.tt-review {
	display: flex;
	flex-direction: column;
}

.tt-review__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--tt-space-1);
	margin: 0 0 var(--tt-space-1);
	min-height: 20px;
}

.tt-review__when {
	margin-left: auto;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-micro);
	font-weight: 400;
}

.tt-review__title {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 var(--tt-space-1);
	color: var(--tt-text);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.44;
	text-wrap: balance;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tt-review__source {
	color: var(--tt-blue);
	font-size: var(--tt-text-micro);
	font-weight: 600;
}

.tt-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--tt-space-1);
	margin: var(--tt-space-1) 0 0;
}

.tt-rating__stars,
.tt-review__rating {
	display: inline-flex;
	gap: 2px;
	margin: 0;
	line-height: 1;
}

.tt-rating__star {
	color: var(--tt-border);
	font-size: 1rem;
}

.tt-rating__star.is-filled {
	color: var(--tt-blue);
}

.tt-rating__text {
	color: var(--tt-text-muted);
	font-size: 0.875rem;
}

.tt-sample-note {
	display: inline-block;
	margin: var(--tt-space-1) 0 0;
	padding: 6px 12px;
	border: 1px dashed var(--tt-border);
	border-radius: var(--tt-radius-pill);
	background: var(--tt-white);
	color: var(--tt-text-muted);
	font-size: 0.75rem;
	font-weight: 600;
}

.tt-sample-note--sections {
	margin-top: var(--tt-space-5);
	margin-bottom: var(--tt-space-1);
}

.tt-editor-hint {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--tt-space-1);
	margin: var(--tt-space-2) 0 0;
	padding: 10px 12px;
	border: 1px dashed var(--tt-border);
	border-radius: var(--tt-radius-button);
	background: var(--tt-gray-soft);
	color: var(--tt-text-muted);
	font-size: 0.8125rem;
}

.tt-editor-hint__badge {
	padding: 2px 8px;
	border-radius: var(--tt-radius-pill);
	background: var(--tt-white);
	border: 1px solid var(--tt-border);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: none;
}

.tt-banner .tt-editor-hint {
	background: rgb(255 255 255 / 10%);
	border-color: rgb(255 255 255 / 24%);
	color: var(--tt-on-navy);
}

.tt-banner .tt-editor-hint__badge {
	background: transparent;
	border-color: rgb(255 255 255 / 30%);
	color: var(--tt-on-navy);
}

.tt-media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--tt-blue-soft);
	border-radius: var(--tt-radius-card);
}

.tt-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		135deg,
		transparent 0 10px,
		rgb(18 43 77 / 3%) 10px 20px
	);
}

.tt-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-media:has(img)::after {
	display: none;
}

.tt-destinations {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 767px) {
	.tt-destinations {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 68%;
		gap: var(--tt-space-2);
		overflow-x: auto;
		scroll-snap-type: x mandatory;

		padding: 3px 3px var(--tt-space-1);
		margin-inline: -3px;
		scroll-padding-inline: 3px;
		-webkit-overflow-scrolling: touch;
	}

	.tt-destination {
		scroll-snap-align: start;
	}
}

@media (min-width: 768px) {

	.tt-destinations {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--tt-space-2);
	}
}

@media (min-width: 1024px) {
	.tt-destinations {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.tt-destination__link {
	display: block;
	text-decoration: none;
}

.tt-destination .tt-media {
	aspect-ratio: 4 / 3;
}

.tt-destination__caption {
	position: absolute;
	z-index: 1;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: end;
	gap: 2px;
	padding: 12px;
	background: linear-gradient(to top, rgb(9 20 36 / 82%) 0%, rgb(9 20 36 / 48%) 34%, rgb(9 20 36 / 0%) 68%);
	pointer-events: none;
}

.tt-destination__name {
	display: block;
	color: var(--tt-white);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.25;

	text-shadow: 0 1px 3px rgb(9 20 36 / 55%);
}

.tt-destination__count {
	display: block;
	color: rgb(255 255 255 / 82%);
	font-size: var(--tt-text-micro);
	font-weight: 600;
	line-height: 1.3;
	text-shadow: 0 1px 3px rgb(9 20 36 / 55%);
}

.tt-tours {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--tt-space-2);
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.tt-tours {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--tt-space-3);
	}
}

@media (min-width: 900px) {
	.tt-tours {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) and (max-width: 1199px) {
	.tt-archive__results .tt-tours {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.tt-tours--2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.tt-tours--1 {
		grid-template-columns: minmax(0, 420px);
	}
}

@media (min-width: 1024px) {
	.tt-tours--4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.tt-tour-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
	box-shadow: var(--tt-shadow-card);
	transition: border-color 0.15s ease;
}

.tt-tour-card {
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.tt-tour-card:hover,
.tt-tour-card:focus-within {
	transform: translateY(-2px);
	border-color: var(--tt-text-muted);
	box-shadow: var(--tt-shadow-raised);
}

.tt-tour-card .tt-media {
	border-radius: 0;
	aspect-ratio: 3 / 2;
}

.tt-tour-card__tag {
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: 2;
	padding: 5px 8px;
	border-radius: 7px;
	background: var(--tt-white);
	color: var(--tt-blue-dark);
	font-size: var(--tt-text-micro);
	font-weight: 800;
}

.tt-tour-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 6px;
	padding: var(--tt-space-2);
}

.tt-tour-card__type {
	color: var(--tt-text-muted);
	font-size: var(--tt-text-micro);
}

.tt-tour-card__title {
	margin: 0;
	min-height: calc(2 * 1.35em);
	font-size: var(--tt-text-strong);
	line-height: 1.35;
}

.tt-tour-card__title a {
	color: var(--tt-navy);
	text-decoration: none;
}

.tt-tour-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.tt-tour-card__title a:hover,
.tt-tour-card__title a:focus {
	color: var(--tt-blue);
}

.tt-tour-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin: 0;
	color: var(--tt-text-muted);
	font-size: 0.75rem;
}

.tt-tour-card__meta > span {
	display: inline-flex;
	align-items: start;
	gap: 5px;
}

.tt-tour-card__meta .tt-icon {
	flex: 0 0 auto;
	margin-top: 2px;
}

.tt-tour-card__foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--tt-space-1);
	margin-top: auto;
	padding-top: var(--tt-space-2);
	border-top: 1px solid var(--tt-border);
}

.tt-tour-card__price {
	margin-inline-start: auto;
	text-align: right;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-micro);
	line-height: 1.3;
}

.tt-tour-card__price strong {
	display: block;
	color: var(--tt-navy);
	font-size: var(--tt-text-strong);
	letter-spacing: -0.02em;
}

.tt-tour-card__note {
	color: var(--tt-text-muted);
	font-size: var(--tt-text-micro);
	font-style: italic;
}

@media (min-width: 768px) {
	.tt-tour-card__foot {
		min-block-size: 56px;
	}
}

@media (max-width: 767px) {

	.tt-tour-card {
		flex-direction: row;
	}

	.tt-tour-card .tt-media {
		flex: 0 0 38%;
		align-self: stretch;
		aspect-ratio: auto;
		min-height: 132px;
	}

	.tt-tour-card__title {
		min-height: 0;
	}

	.tt-tour-card__foot {
		flex-direction: column;
		align-items: flex-start;
	}

	.tt-tour-card__price {
		text-align: left;
	}

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

	.tt-tours--shelf .tt-tour-card {
		flex-direction: column;
	}

	.tt-tours--shelf .tt-tour-card .tt-media {
		flex: 0 0 auto;
		align-self: auto;
		aspect-ratio: 3 / 2;
		min-height: 0;
	}

	.tt-tours--shelf .tt-tour-card__body {
		padding: var(--tt-space-2) 12px;
	}

	.tt-tours--shelf .tt-tour-card__meta {
		flex-direction: column;
		gap: 2px;
	}
}

.tt-notice {
	margin: 0 0 var(--tt-space-3);
	padding: var(--tt-space-2);
	border: 1px solid var(--tt-border);
	border-left: 4px solid var(--tt-blue);
	border-radius: var(--tt-radius-button);
	background: var(--tt-blue-soft);
	color: var(--tt-navy);
	font-size: 0.9375rem;
}

.tt-empty {
	padding: var(--tt-space-5) var(--tt-space-3);
	border: 1px dashed var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-gray-soft);
	color: var(--tt-text-muted);
	text-align: center;
}

.tt-empty p:last-of-type {
	margin-bottom: var(--tt-space-3);
}

.tt-archive__filters {
	display: block;
}

.tt-filters__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--tt-space-1);
	padding: 12px 16px;
	border: 1px solid var(--tt-border-control);
	border-radius: var(--tt-radius-button);
	background: var(--tt-white);
	color: var(--tt-navy);
	font-weight: 600;
	cursor: pointer;

	list-style: none;
}

.tt-filters__toggle::-webkit-details-marker {
	display: none;
}

.tt-filters__toggle::after {
	content: "";
	width: 10px;
	height: 10px;
	border-right: 2px solid currentcolor;
	border-bottom: 2px solid currentcolor;
	transform: translateY(-2px) rotate(45deg);
}

.tt-filters[open] .tt-filters__toggle::after {
	transform: translateY(2px) rotate(-135deg);
}

.tt-filters__toggle:hover {
	border-color: var(--tt-blue);
	color: var(--tt-blue-dark);
}

.tt-filters__toggle:focus-visible {
	outline: 3px solid var(--tt-focus);
	outline-offset: 2px;
}

.tt-filters__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	margin-inline-start: auto;
	margin-inline-end: var(--tt-space-1);
	padding: 0 6px;
	border-radius: 11px;
	background: var(--tt-blue);
	color: var(--tt-white);
	font-size: 0.8125rem;
	line-height: 1;
}

@media (min-width: 1024px) {

	.tt-filters__toggle {
		display: none;
	}

	.tt-archive__filters {
		position: sticky;

		top: calc(var(--tt-header) + var(--tt-space-3));
		max-height: calc(100vh - var(--tt-header) - (2 * var(--tt-space-3)));
		overflow-y: auto;
		overscroll-behavior: contain;
	}
}

@media (max-width: 1023px) {
	.tt-archive__filters {
		interpolate-size: allow-keywords;
	}

	.tt-archive__filters::details-content {
		block-size: 0;
		overflow: hidden;
		transition: block-size 0.22s ease, content-visibility 0.22s;
		transition-behavior: allow-discrete;
	}

	.tt-archive__filters[open]::details-content {
		block-size: auto;
	}

	@media (prefers-reduced-motion: reduce) {
		.tt-archive__filters::details-content {
			transition: none;
		}
	}
}

.tt-chip__label {
	color: var(--tt-text-muted);
	font-weight: 400;
	font-size: 0.75rem;
}

.tt-footer {
	padding-block: var(--tt-space-4) var(--tt-space-5);
	background: var(--tt-navy);
	color: var(--tt-on-navy);

	--tt-focus: var(--tt-white);
	font-size: 0.875rem;
}

.tt-footer__grid {
	display: grid;
	gap: var(--tt-space-4);
}

.tt-footer__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--tt-space-3);
}

@media (min-width: 768px) {
	.tt-footer__grid {
		grid-template-columns: 1.4fr repeat(3, 1fr);
		gap: var(--tt-space-5);
	}

	.tt-footer__links {
		display: contents;
	}
}

.tt-footer__rating {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: var(--tt-space-2);
	padding-block: 6px;
	color: var(--tt-on-navy);
	font-size: 0.8125rem;
	text-decoration: none;
}

.tt-footer__rating:hover,
.tt-footer__rating:focus-visible {
	color: var(--tt-white);
	text-decoration: underline;
}

.tt-footer__rating-stars {
	display: inline-flex;
	gap: 2px;
	line-height: 1;
}

.tt-footer__rating-stars .tt-rating__star {
	color: rgb(255 255 255 / 35%);
	font-size: 0.875rem;
}

.tt-footer__rating-stars .tt-rating__star.is-filled {
	color: var(--tt-white);
}

.tt-footer__hours {
	margin: var(--tt-space-2) 0 0;
	color: var(--tt-on-navy);
	font-size: 0.8125rem;
}

.tt-footer__hours span {
	display: block;
	padding-block: 2px;
}

.tt-footer__registry {
	margin: 0 0 var(--tt-space-1);
	color: rgb(219 230 242 / 72%);
}

.tt-footer .tt-brand__text,
.tt-footer h2 {
	color: var(--tt-white);
}

.tt-footer .tt-brand__sub {
	color: var(--tt-on-navy);
}

.tt-footer__about {
	margin: var(--tt-space-2) 0 0;
	max-width: 40ch;
	color: var(--tt-on-navy);
	font-size: 0.8125rem;
}

.tt-footer__heading {
	margin: 0 0 var(--tt-space-1);
	color: var(--tt-white);
	font-size: 0.8125rem;
	font-weight: 700;
}

.tt-footer__brand .tt-footer__heading {
	margin-top: var(--tt-space-3);
}

.tt-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-footer__list a {
	display: block;
	padding-block: 6px;
	color: var(--tt-on-navy);
	font-size: 0.8125rem;
	text-decoration: none;
}

@media (max-width: 767px) {
	.tt-footer__list a {
		font-size: 1rem;
	}
}

.tt-footer__list a:hover,
.tt-footer__list a:focus {
	color: var(--tt-white);
	text-decoration: underline;
}

.tt-footer__bottom {
	margin-top: var(--tt-space-4);
	padding-top: var(--tt-space-3);
	border-top: 1px solid rgb(255 255 255 / 14%);
	font-size: 0.75rem;
}

@media (max-width: 767px) {
	.tt-footer {
		font-size: 1rem;
	}

	.tt-footer__bottom {
		font-size: 0.875rem;
	}
}

.tt-footer__bottom p {
	margin: 0;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: static !important;
	width: auto;
	height: auto;
	clip-path: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;

		transition-delay: 0s !important;
	}
}

@view-transition {
	navigation: auto;
}

.tt-header {
	view-transition-name: tt-header;
}

.tt-footer {
	view-transition-name: tt-footer;
}

.tt-archive__filters {
	view-transition-name: tt-filters;
}

.tt-archive__toolbar {
	view-transition-name: tt-toolbar;
}

#tt-form {
	view-transition-name: tt-form;
}

@keyframes tt-page-leaves-forward {
	to {
		transform: translateX(-6%);
		opacity: 0;
	}
}

@keyframes tt-page-arrives-forward {
	from {
		transform: translateX(6%);
		opacity: 0;
	}
}

@keyframes tt-page-leaves-back {
	to {
		transform: translateX(6%);
		opacity: 0;
	}
}

@keyframes tt-page-arrives-back {
	from {
		transform: translateX(-6%);
		opacity: 0;
	}
}

:root:active-view-transition-type(tt-back)::view-transition-old(root) {
	animation: tt-page-leaves-back 0.25s ease both;
}

:root:active-view-transition-type(tt-back)::view-transition-new(root) {
	animation: tt-page-arrives-back 0.25s ease both;
}

:root:active-view-transition-type(tt-forward)::view-transition-old(root) {
	animation: tt-page-leaves-forward 0.25s ease both;
}

:root:active-view-transition-type(tt-forward)::view-transition-new(root) {
	animation: tt-page-arrives-forward 0.25s ease both;
}

@media (prefers-reduced-motion: reduce) {
	::view-transition-group(*),
	::view-transition-old(*),
	::view-transition-new(*) {
		animation: none !important;
	}
}

.tt-crumbs {
	padding-block: var(--tt-space-2);
}

.tt-crumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	color: var(--tt-text-muted);
	font-size: 0.8125rem;
}

.tt-crumbs__item:not(:last-child)::after {
	content: "›";
	margin-left: 6px;
	color: var(--tt-border);
}

.tt-crumbs__item a {
	color: var(--tt-text-muted);
	text-decoration: none;
}

.tt-crumbs__item a:hover,
.tt-crumbs__item a:focus {
	color: var(--tt-blue-dark);
	text-decoration: underline;
}

.tt-crumbs__item[aria-current="page"] {
	color: var(--tt-navy);
	font-weight: 600;
}

.tt-tour__head {
	margin-bottom: var(--tt-space-3);
}

.tt-tour__type {
	margin: 0 0 6px;
	color: var(--tt-text-muted);
	font-size: 0.8125rem;
}

.tt-tour__title {
	margin-bottom: var(--tt-space-1);
}

.tt-gallery {
	display: grid;
	gap: var(--tt-space-2);
	margin-bottom: var(--tt-space-3);
}

.tt-gallery__main {
	aspect-ratio: 16 / 10;
	margin: 0;
}

@media (min-width: 768px) {
	.tt-gallery {
		grid-template-columns: 2fr 1fr;
	}

	.tt-gallery--single {
		grid-template-columns: 1fr;
	}

	.tt-gallery__main {
		aspect-ratio: 3 / 2;
		max-height: 440px;
	}

	.tt-gallery__rest {
		display: grid;
		grid-template-rows: repeat(2, 1fr);
		gap: var(--tt-space-2);
	}

	.tt-gallery__rest .tt-media {
		margin: 0;
		height: 100%;
	}
}

@media (max-width: 767px) {
	.tt-gallery__rest {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--tt-space-1);
		padding: 3px;
		margin-inline: -3px;
	}

	.tt-gallery__rest .tt-media {
		margin: 0;
		aspect-ratio: 4 / 3;
	}
}

.tt-facts {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: var(--tt-space-1);
	list-style: none;
	margin: 0 0 var(--tt-space-4);
	padding: 0;
}

.tt-facts__item {
	flex: 1 1 calc(50% - var(--tt-space-1) / 2);
}

@media (min-width: 768px) {

	.tt-facts {
		display: flex;
		flex-wrap: wrap;
		gap: var(--tt-space-2);
	}

	.tt-facts__item {
		flex: 1 1 160px;
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {

	.tt-facts__item {
		flex: 1 1 calc(50% - var(--tt-space-2) / 2);
	}
}

.tt-facts__item {
	padding: 12px 14px;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-button);
	background: var(--tt-gray-soft);
}

.tt-facts__label {
	display: block;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-small);
}

.tt-facts__value {
	display: block;
	margin-top: 2px;
	color: var(--tt-navy);
	font-weight: 700;
	font-size: var(--tt-text-body);
}

.tt-tour__layout {
	display: grid;
	gap: var(--tt-space-4);
	padding-bottom: var(--tt-space-5);
}

@media (max-width: 1023px) {
	.tt-tour__layout {
		display: flex;
		flex-direction: column;
	}

	.tt-tour__aside {
		order: -1;
	}

	.tt-tour__layout > .tt-gallery {
		order: -2;
		margin-bottom: 0;
	}
}

@media (min-width: 1024px) {
	.tt-tour__layout {
		grid-template-columns: minmax(0, 1fr) 340px;

		grid-template-rows: auto minmax(0, 1fr);
		gap: var(--tt-space-5);
		align-items: start;
	}

	.tt-tour__layout {
		row-gap: var(--tt-space-3);
	}

	.tt-tour__layout > .tt-gallery {
		grid-column: 1;
		grid-row: 1;
		margin-bottom: 0;
	}

	.tt-tour__main {
		grid-column: 1;
		grid-row: 2;
	}

	.tt-tour__aside {
		grid-column: 2;
		grid-row: 1 / -1;
		position: sticky;

		top: calc(var(--tt-header) + var(--tt-space-3));
	}
}

.tt-tour__block h2 {
	font-size: var(--tt-text-lead);
}

.tt-tour__block + .tt-tour__block {
	margin-top: var(--tt-space-4);
	padding-top: var(--tt-space-4);
	border-top: 1px solid var(--tt-border);
}

.tt-prose > :last-child {
	margin-bottom: 0;
}

.tt-columns {
	display: grid;
	gap: var(--tt-space-3);
}

@media (min-width: 600px) {
	.tt-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.tt-list {
	margin: 0;
	padding-left: 1.15rem;
}

.tt-list li {
	margin-bottom: 6px;
}

.tt-itinerary {
	margin: 0;
	padding-left: 1.15rem;
}

.tt-itinerary__day + .tt-itinerary__day {
	margin-top: var(--tt-space-3);
}

.tt-itinerary__title {
	margin-bottom: 6px;
}

.tt-dates {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1);
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-dates__item {
	padding: 6px 12px;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-pill);
	background: var(--tt-blue-soft);
	color: var(--tt-navy);
	font-size: 0.8125rem;
	font-weight: 600;
}

.tt-booking {
	padding: var(--tt-space-3);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
	box-shadow: var(--tt-shadow-raised);
}

.tt-booking__from {
	color: var(--tt-text-muted);
	font-size: 0.8125rem;
}

.tt-booking__amount {
	display: block;
	color: var(--tt-navy);
	font-size: 1.75rem;
	line-height: 1.2;
}

.tt-booking__sample {
	display: inline-block;
	padding: 4px 10px;
	border-radius: var(--tt-radius-pill);
	background: var(--tt-blue-soft);
	color: var(--tt-blue-dark);
	font-size: 0.75rem;
	font-weight: 700;
}

.tt-booking__next {
	margin: var(--tt-space-2) 0 0;
	color: var(--tt-navy);
	font-size: 0.875rem;
	font-weight: 600;
}

.tt-booking__note {
	margin: var(--tt-space-1) 0 0;
	color: var(--tt-text-muted);
	font-size: 0.8125rem;
}

.tt-booking__actions {
	display: grid;

	grid-auto-rows: 1fr;
	gap: var(--tt-space-1);
	margin-top: var(--tt-space-3);
}

.tt-booking__actions .tt-button {
	text-wrap: balance;
}

.tt-booking__reassure {
	margin: var(--tt-space-2) 0 0;
	color: var(--tt-text-muted);
	font-size: 0.75rem;
	font-style: italic;
}

.tt-sticky-cta {
	display: none;
}

@media (max-width: 1023px) {

	html {
		scroll-padding-bottom: 88px;
	}

	main :is(a[href], button, input, select, textarea),
	footer a[href] {
		scroll-margin-bottom: 88px;
	}

	body.tt-form-focus .tt-sticky-cta {
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.18s ease, visibility 0s linear 0.18s;
	}

	body:has( #tt-form :focus ) .tt-sticky-cta {
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.18s ease, visibility 0s linear 0.18s;
	}

	.tt-sticky-cta {

		transition: opacity 0.18s ease, visibility 0s;
		display: block;
		position: fixed;
		inset: auto 0 0;
		z-index: 30;
		border-top: 1px solid var(--tt-border);
		background: var(--tt-white);

		padding-bottom: env(safe-area-inset-bottom, 0);
		box-shadow: 0 -2px 12px rgb(18 43 77 / 8%);
	}

	.tt-sticky-cta__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: var(--tt-space-2);

		min-height: var(--tt-sticky);
		max-width: var(--tt-content);
		margin-inline: auto;
		padding: 10px var(--tt-space-2);
	}

	.tt-sticky-cta__price {
		color: var(--tt-text-muted);
		font-size: 0.75rem;
		line-height: 1.2;
	}

	.tt-sticky-cta__price strong {
		display: block;
		color: var(--tt-navy);
		font-size: 1.125rem;
	}

	.tt-sticky-cta__inner .tt-button {

		flex: 0 1 auto;
		padding-inline: var(--tt-space-2);
	}

	body:has(.tt-sticky-cta) {
		padding-bottom: calc( 73px + env(safe-area-inset-bottom, 0px) );
	}
}

.tt-archive__head {
	margin-bottom: var(--tt-space-3);
}

@media (max-width: 767px) {

	.tt-archive__head {
		margin-top: calc(var(--tt-space-3) * -1);
		margin-bottom: var(--tt-space-2);
	}
}

.tt-archive__layout {
	display: grid;

	grid-template-columns: minmax(0, 1fr);
	gap: var(--tt-space-3);
}

@media (min-width: 1024px) {
	.tt-archive__layout {
		grid-template-columns: 260px minmax(0, 1fr);
		gap: var(--tt-space-4);
		align-items: start;
	}
}

.tt-archive__results:focus {
	outline: none;
}

.tt-archive__count {
	margin: 0;
	color: var(--tt-text-muted);
	font-size: 0.875rem;
}

.tt-archive__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--tt-space-2);
	min-width: 0;
	margin-bottom: var(--tt-space-2);
}

.tt-sort {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--tt-space-1);
	min-width: 0;
	margin-left: auto;
}

.tt-sort__label {
	color: var(--tt-text-muted);
	font-size: 0.875rem;
	white-space: nowrap;
}

.tt-sort__select {

	width: auto;
	min-width: 15rem;
	max-width: 100%;
}

@media (max-width: 559px) {

	.tt-sort {
		flex-basis: 100%;
		margin-left: 0;
	}

	.tt-sort__label {
		flex-basis: 100%;
	}

	.tt-sort__select {
		flex: 1 1 auto;
		min-width: 0;
	}
}

.tt-archive__active {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--tt-space-2);
	margin-bottom: var(--tt-space-2);
}

.tt-archive__reset {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--tt-blue-dark);
}

.tt-chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1);
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-chips-row {
	margin-bottom: var(--tt-space-3);
}

@media (max-width: 767px) {
	.tt-chips-row .tt-chips {
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding: 3px;
		margin-inline: -3px;
		scroll-padding-inline: 3px;
		-webkit-overflow-scrolling: touch;
	}

	.tt-chips-row .tt-chips > li {
		scroll-snap-align: start;
		flex: 0 0 auto;
	}
}

.tt-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: var(--tt-tap);
	padding: 10px 18px 10px 14px;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-pill);
	background: var(--tt-white);
	color: var(--tt-navy);
	font-size: var(--tt-text-small);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: var(--tt-elevation-1);
}

a.tt-chip:hover,
a.tt-chip:focus {
	border-color: var(--tt-blue);
	color: var(--tt-blue-dark);
}

.tt-chip.is-current {
	background: var(--tt-blue);
	border-color: var(--tt-blue);
	color: var(--tt-white);
}

.tt-chip.is-current:hover,
.tt-chip.is-current:focus {
	background: var(--tt-blue-dark);
	border-color: var(--tt-blue-dark);
	color: var(--tt-white);
}

a.tt-chip.tt-chip--remove {
	background: var(--tt-blue-soft);
	border-color: var(--tt-blue);
	box-shadow: none;
}

.tt-chip--remove .tt-chip__x {
	margin-inline-start: 2px;
	color: var(--tt-blue-dark);
	font-weight: 700;
}

@media (hover: hover) {
	a.tt-chip.tt-chip--remove:hover {
		background: var(--tt-white);
		border-color: var(--tt-blue-dark);
		color: var(--tt-blue-dark);
		box-shadow: none;
	}
}

a.tt-chip.tt-chip--remove:active {
	background: var(--tt-blue-soft);
	border-color: var(--tt-blue-dark);
	color: var(--tt-blue-dark);
}

.tt-chip__x {
	font-size: 1rem;
	line-height: 1;
	color: var(--tt-text-muted);
}

.tt-search__heading {
	margin: 0 0 var(--tt-space-2);
	font-size: 1rem;
}

@media (min-width: 480px) and (max-width: 1023px) {
	.tt-search--panel.tt-search--2 .tt-search__fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.tt-search--panel {
		grid-template-columns: 1fr;
	}

	.tt-search--panel .tt-search__fields {
		grid-template-columns: 1fr;
	}

	.tt-search--panel .tt-search__submit {
		width: 100%;
	}
}

.tt-archive__results .pagination {
	margin-top: var(--tt-space-4);
}

.tt-archive__results .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1);
	align-items: center;
}

.tt-archive__results .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: var(--tt-tap);
	min-height: var(--tt-tap);
	padding: 0 12px;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-button);
	color: var(--tt-navy);
	text-decoration: none;
	font-weight: 600;
}

.tt-archive__results .page-numbers.current {
	background: var(--tt-blue);
	border-color: var(--tt-blue);
	color: var(--tt-white);
}

.tt-archive__results a.page-numbers:hover,
.tt-archive__results a.page-numbers:focus {
	border-color: var(--tt-blue);
	color: var(--tt-blue-dark);
}

.tt-form-section {
	margin-top: var(--tt-space-5);
	padding: var(--tt-space-4);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-gray-soft);

	scroll-margin-top: calc(var(--tt-header) + var(--tt-space-2));
}

.tt-form-section__heading {
	margin-top: 0;
}

h2.tt-form-section__heading {
	font-size: var(--tt-text-lead);
}

.tt-form-section__intro {
	max-width: 60ch;
	color: var(--tt-text-muted);
}

.tt-form__fields {
	display: grid;
	gap: var(--tt-space-2);

	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.tt-form__fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tt-form__fields .tt-field--textarea,
	.tt-form__fields .tt-field--checkbox,
	.tt-form__fields .tt-field--checkboxes,
	.tt-form__fields .tt-field--radio {
		grid-column: 1 / -1;
	}
}

.tt-form .tt-field {
	margin-bottom: 0;
}

.tt-form__submit {
	margin-top: var(--tt-space-3);
}

.tt-field__optional {
	margin-left: 6px;
	font-weight: 400;
	font-size: 0.75rem;
	color: var(--tt-text-muted);
}

.tt-field__group {
	margin: 0;
	padding: 0;
	border: 0;
}

.tt-field__check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 8px;
	font-size: var(--tt-text-body);
	line-height: 1.45;
	color: var(--tt-text);

	min-height: var(--tt-tap);
	padding: 4px 0;
	cursor: pointer;
}

.tt-field__check input {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: var(--tt-blue);
}

.tt-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.tt-form__outcome {
	margin-bottom: var(--tt-space-3);
	padding: var(--tt-space-3);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
}

.tt-form__outcome:focus {
	outline: 3px solid var(--tt-focus);
	outline-offset: 2px;
}

.tt-form__outcome--error {
	border-left: 4px solid #b3261e;
}

.tt-form__outcome--success {
	border-left: 4px solid var(--tt-blue);
	background: var(--tt-blue-soft);
}

.tt-form__outcome-title {
	margin-top: 0;
	font-size: 1.0625rem;
}

.tt-form__error-list {
	margin: 0;
	padding-left: 1.1rem;
}

.tt-form__error-list a {
	color: #b3261e;
}

.tt-form__reference strong {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.tt-service__tours .tt-tours + p {
	margin-top: var(--tt-space-4);
}

.tt-legal-more {
	margin-top: var(--tt-space-5);
	padding-top: var(--tt-space-3);
	border-top: 1px solid var(--tt-border);
}

.tt-legal-more__heading {
	margin-bottom: var(--tt-space-2);
	font-size: var(--tt-text-lead);
}

.tt-channels {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1);
	margin: var(--tt-space-2) 0 0;
	padding: 0;
	list-style: none;
}

.tt-channels-block {
	margin-top: var(--tt-space-4);
}

.tt-channels-block__heading {
	font-size: var(--tt-text-lead);
}

@media (min-width: 768px) {
	.tt-channels-block {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: var(--tt-space-1) var(--tt-space-3);
	}

	.tt-channels-block__heading {
		margin: 0;
	}

	.tt-channels {
		margin: 0;
	}
}

.tt-service__title {
	margin-top: 0;
}

.tt-service__body {
	max-width: 70ch;
}

.tt-service__cases {
	margin-top: var(--tt-space-4);
	margin-bottom: var(--tt-space-5);
}

.tt-service__case-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.tt-service__case-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.tt-service__case-list li {
	padding: 12px var(--tt-space-2);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-button);
	background: var(--tt-white);
	font-size: 0.9375rem;
}

.tt-service__tours {
	margin-top: var(--tt-space-5);
}

@media (min-width: 640px) {
	.tt-field--radio .tt-field__group {
		display: flex;
		flex-wrap: wrap;
		gap: var(--tt-space-3);
	}

	.tt-field--radio .tt-field__group legend {
		width: 100%;
	}

	.tt-field--radio .tt-field__check {
		margin-top: 0;
	}
}

.tt-gallery__credit {
	margin: var(--tt-space-1) 0 0;
	font-size: 0.75rem;
	color: var(--tt-text-muted);
}

.tt-banner__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-social {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1);
	margin: 0;
	padding: 0;
	list-style: none;
}

.tt-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--tt-tap);
	height: var(--tt-tap);
	border: 1px solid rgb(255 255 255 / 24%);
	border-radius: var(--tt-radius-pill);
	color: var(--tt-on-navy);
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tt-social__link:hover,
.tt-social__link:focus-visible {
	border-color: var(--tt-white);
	background: rgb(255 255 255 / 12%);
	color: var(--tt-white);
}

.tt-social__icon {
	display: block;
}

.tt-office {
	margin-top: var(--tt-space-6);
	padding-top: var(--tt-space-5);
	border-top: 1px solid var(--tt-border);
}

.tt-office__heading {
	margin: 0 0 var(--tt-space-3);
	font-size: var(--tt-text-lead);
}

.tt-office__grid {
	display: grid;
	gap: var(--tt-space-4);
	grid-template-columns: 1fr;
}

.tt-office__grid > * {
	min-width: 0;
}

@media (min-width: 768px) {
	.tt-office__grid {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

.tt-office__address,
.tt-footer__office {
	font-style: normal;
}

.tt-office__address,
.tt-office__row {
	margin: 0 0 var(--tt-space-3);
}

.tt-office__label {
	display: block;
	margin-bottom: 2px;
	color: var(--tt-text-muted);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.tt-office__value {
	display: block;
	font-size: 1rem;
}

.tt-office__hours {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 1rem;
}

.tt-office__hours li {
	padding-block: 2px;
}

.tt-office__map {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-gray-soft);
}

.tt-office__frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.tt-footer__office {
	margin: var(--tt-space-2) 0 0;
	color: var(--tt-on-navy);
	font-size: 0.8125rem;
}

.tt-footer__office-line {
	display: block;
	padding-block: 2px;
}

.tt-footer__office-line a {
	color: var(--tt-on-navy);
	text-decoration: none;
}

.tt-footer__office-line a:hover,
.tt-footer__office-line a:focus-visible {
	color: var(--tt-white);
	text-decoration: underline;
}

.tt-footer__legal {
	margin-bottom: var(--tt-space-2);
}

.tt-footer__legal-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1) var(--tt-space-3);
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-footer__legal-list a {
	display: inline-block;
	padding-block: 8px;
	color: var(--tt-on-navy);
	text-decoration: none;
}

.tt-footer__legal-list a:hover,
.tt-footer__legal-list a:focus-visible {
	color: var(--tt-white);
	text-decoration: underline;
}

.tt-button[aria-busy="true"] {
	position: relative;
	color: transparent;
	cursor: progress;
}

.tt-button[aria-busy="true"]::after {
	content: "";
	position: absolute;
	inset: 50% auto auto 50%;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border: 2px solid currentcolor;
	border-radius: 50%;
	border-top-color: transparent;
	color: var(--tt-white);
	animation: tt-spin 0.7s linear infinite;
}

.tt-button--secondary[aria-busy="true"]::after {
	color: var(--tt-blue);
}

@keyframes tt-spin {
	to {
		transform: rotate(360deg);
	}
}

.tt-img-fade img[loading="lazy"]:not(.tt-hero__slide) {
	opacity: 0;
	transition: opacity 0.25s ease;
}

.tt-img-fade img[loading="lazy"][data-tt-loaded]:not(.tt-hero__slide) {
	opacity: 1;
}

@media print {
	.tt-img-fade img[loading="lazy"]:not(.tt-hero__slide) {
		opacity: 1;
	}
}

.tt-page-header {
	margin-bottom: var(--tt-space-5);
}

.tt-page-header__title {
	margin-bottom: var(--tt-space-2);
}

.tt-page-header__lede {
	margin: 0;
	max-width: 62ch;
	color: var(--tt-text-muted);
	font-size: 1.0625rem;
	line-height: 1.55;
}

.tt-page-header__media {
	margin-top: var(--tt-space-3);
}

.tt-page-header__media img {
	width: 100%;
	border-radius: var(--tt-radius-card);
}

.tt-page-header--plain {
	padding: var(--tt-space-3);
	border-radius: var(--tt-radius-card);
	background: var(--tt-gray-soft);
}

@media (min-width: 768px) {
	.tt-page-header--plain {
		padding: var(--tt-space-4) var(--tt-space-4) var(--tt-space-5);
	}
}

@media (min-width: 768px) {
	.tt-page-header--illustrated {
		display: grid;
		grid-template-columns: 3fr 2fr;
		align-items: center;
		gap: var(--tt-space-5);
	}

	.tt-page-header--illustrated > * {
		min-width: 0;
	}

	.tt-page-header__media {
		margin-top: 0;
	}
}

.tt-steps,
.tt-points,
.tt-faq {
	margin-bottom: var(--tt-space-5);
}

.tt-faq {
	margin-top: var(--tt-space-5);
}

.tt-steps__list {
	counter-reset: tt-step;
	display: grid;
	gap: var(--tt-space-3);
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 768px) {
	.tt-steps__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--tt-space-4);
	}
}

.tt-steps__item {
	counter-increment: tt-step;
	position: relative;
	padding-left: 52px;
}

.tt-steps__item::before {
	content: counter(tt-step);
	position: absolute;
	inset: 0 auto auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--tt-radius-pill);
	background: var(--tt-blue-soft);
	color: var(--tt-blue-dark);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.tt-steps__title,
.tt-points__title {
	margin-bottom: 4px;
	font-size: var(--tt-text-strong);
}

.tt-steps__body,
.tt-points__body {
	margin: 0;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-body);
}

.tt-points__list {
	display: grid;
	gap: var(--tt-space-3);
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 768px) {
	.tt-points__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--tt-space-4);
	}
}

.tt-points__item {
	padding: var(--tt-space-3);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
}

.tt-fleet {
	margin-bottom: var(--tt-space-5);
	padding: var(--tt-space-4);
	border-radius: var(--tt-radius-card);
	background: var(--tt-blue-soft);
}

.tt-fleet__heading {
	margin-bottom: var(--tt-space-3);
	color: var(--tt-blue-dark);
	font-size: var(--tt-text-lead);
}

.tt-fleet__list {
	display: grid;
	gap: var(--tt-space-3);
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 768px) {
	.tt-fleet__list {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: var(--tt-space-4);
	}
}

.tt-fleet__title {
	margin-bottom: 4px;
	color: var(--tt-navy);
	font-size: var(--tt-text-strong);

	font-variant-numeric: tabular-nums lining-nums;
}

.tt-fleet__body {
	margin: 0;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-body);
}

.tt-faq__list {
	border-top: 1px solid var(--tt-border);
}

.tt-faq__item {
	border-bottom: 1px solid var(--tt-border);
}

.tt-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--tt-space-2);
	min-height: var(--tt-tap);
	padding-block: var(--tt-space-2);
	color: var(--tt-navy);
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.tt-faq__question:hover {
	color: var(--tt-blue-dark);
}

.tt-faq__question:hover::after {
	border-color: var(--tt-blue-dark);
}

.tt-faq__question::-webkit-details-marker {
	display: none;
}

.tt-faq__question::after {
	content: "";
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--tt-text-muted);
	border-bottom: 2px solid var(--tt-text-muted);
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform 0.15s ease;
}

.tt-faq__item[open] .tt-faq__question::after {
	transform: rotate(-135deg) translate(-2px, -2px);
}

.tt-faq__answer {
	padding-bottom: var(--tt-space-2);
	color: var(--tt-text-muted);
	font-size: var(--tt-text-body);
	max-width: 70ch;
}

.tt-faq__answer p {
	margin: 0;
}

.tt-faq__list {
	interpolate-size: allow-keywords;
}

.tt-faq__item::details-content {
	block-size: 0;
	overflow: hidden;
	transition: block-size 0.22s ease, content-visibility 0.22s;
	transition-behavior: allow-discrete;
}

.tt-faq__item[open]::details-content {
	block-size: auto;
}

@media (prefers-reduced-motion: reduce) {
	.tt-faq__item::details-content {
		transition: none;
	}
}

.tt-brand--logo {
	display: inline-flex;
	align-items: center;
	margin-right: auto;
}

.tt-brand--logo img {
	width: auto;
	max-height: 40px;
}

@media (min-width: 768px) {
	.tt-brand--logo img {
		max-height: 34px;
	}
}

.tt-footer .tt-brand--logo img {
	max-height: 44px;
	padding: 6px 10px;
	border-radius: var(--tt-radius-button);
	background: var(--tt-white);
}

.tt-tour-card__basis,
.tt-booking__basis,
.tt-sticky-cta__basis {
	display: block;
	color: var(--tt-text-muted);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
}

.tt-sticky-cta__basis {
	font-size: 0.6875rem;
}

.tt-button:active,
a.tt-chip:active,
.tt-header__phone:active,
.tt-nav-toggle:active,
.tt-filters__toggle:active,
.tt-faq__question:active,
.tt-social__link:active,
.tt-archive__results a.page-numbers:active {
	transform: translateY(1px);
	transition-duration: 0s;
}

.tt-button:active {
	background: var(--tt-blue-dark);
}

.tt-button--secondary:active,
.tt-button--quiet:active,
.tt-nav-toggle:active {
	background: var(--tt-gray-soft);
	border-color: var(--tt-text-muted);
}

.tt-button--quiet:active {
	border-color: transparent;
}

a.tt-chip:active,
.tt-archive__results a.page-numbers:active,
.tt-filters__toggle:active,
.tt-header__phone:active {
	background: var(--tt-blue-soft);
	border-color: var(--tt-blue);
	color: var(--tt-blue-dark);
}

.tt-chip.is-current:active {
	background: var(--tt-blue-dark);
	border-color: var(--tt-blue-dark);
	color: var(--tt-white);
}

.tt-tour-card:active {
	transform: translateY(1px);
	box-shadow: var(--tt-shadow-card);
	transition-duration: 0s;
}

.tt-tour-card:has( a:active ) {
	transform: translateY(1px);
	box-shadow: var(--tt-shadow-card);
	transition-duration: 0s;
}

.tt-destination__link {
	transition: transform 0.16s ease;
}

.tt-destination__link:hover,
.tt-destination__link:focus-visible {
	transform: translateY(-2px);
}

.tt-destination__link:active {
	transform: translateY(1px);
	transition-duration: 0s;
}

@media (pointer: coarse) {
	.tt-archive__reset,
	.tt-section__link,
	.tt-crumbs a,
	.tt-footer__list a,
	.tt-footer__office-line a,
	.tt-footer__rating,

	.tt-footer__credit a,
	.tt-footer__legal-list a {
		display: inline-flex;
		align-items: center;
		min-height: var(--tt-tap);
	}

	.tt-footer__list li + li {
		margin-top: var(--tt-space-1);
	}
}

.tt-chat-dock {
	position: fixed;

	inset: auto calc( var(--tt-space-2) + env(safe-area-inset-right, 0px) )
		calc( var(--tt-space-2) + env(safe-area-inset-bottom, 0px) ) auto;
	z-index: 40;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: var(--tt-space-1);

	max-width: calc( 100vw - 2 * var(--tt-space-2) );

	pointer-events: none;
	transition: opacity 0.16s ease;
}

.tt-chat-dock > * {
	pointer-events: auto;
}

body.tt-form-focus .tt-chat-dock:not(:focus-within) {
	opacity: 0;
	pointer-events: none;
}

.tt-chat {
	display: inline-flex;
	align-items: center;
	gap: var(--tt-space-1);
	min-height: var(--tt-tap);
	max-width: 100%;
	padding: var(--tt-space-1) var(--tt-space-3);
	border: 0;
	border-radius: var(--tt-radius-pill);
	background: var(--tt-blue);
	color: var(--tt-white);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
	box-shadow: var(--tt-shadow-raised);
	transition: background-color 0.16s ease, transform 0.16s ease;
}

.tt-chat:hover {
	background: var(--tt-blue-dark);
}

.tt-chat[aria-disabled="true"] {
	cursor: progress;
	opacity: 0.72;
}

.tt-chat[aria-disabled="true"]:hover {
	background: var(--tt-blue);
}

.tt-chat__icon {
	flex: 0 0 auto;
}

@media (max-width: 1023px) {
	body:has( .tt-sticky-cta ) .tt-chat-dock {

		inset-block-end: calc( 73px + env(safe-area-inset-bottom, 0px) + 16px );
	}
}

@media (max-width: 1023px) {
	body:has( .tt-sticky-cta ) chat-widget {
		--tt-chat-vendor-lift: calc( 73px + env(safe-area-inset-bottom, 0px) + 16px );

		position: fixed !important;
		inset-block-end: var( --tt-chat-vendor-lift ) !important;
	}
}

.tt-chat:focus-visible {
	outline-color: var(--tt-navy);
	box-shadow: 0 0 0 6px var(--tt-white), var(--tt-shadow-raised);
}

.tt-chat:active {
	transform: translateY(1px);
	transition-duration: 0s;
}

@media (prefers-reduced-motion: reduce) {
	.tt-chat:active {
		transform: none;
	}
}

.tt-chat__panel {
	width: min( 320px, 100% );
	padding: var(--tt-space-2);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
	color: var(--tt-text);
	box-shadow: var(--tt-shadow-raised);
	text-align: left;
}

.tt-chat__panel:focus-visible {
	outline-color: var(--tt-navy);
}

.tt-chat__panel-title {
	margin: 0 0 var(--tt-space-1);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

.tt-chat__panel-text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--tt-text-muted);
}

.tt-chat__panel-links {
	margin: var(--tt-space-1) 0 0;
	padding: 0;
	list-style: none;
}

.tt-chat__panel-link {
	display: inline-flex;
	align-items: center;
	min-height: var(--tt-tap);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--tt-blue-dark);
}

.tt-chat__panel-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1);
	margin-top: var(--tt-space-1);
}

.tt-chat__panel-button {
	flex: 1 1 auto;
	min-height: var(--tt-tap);
	padding: 0 var(--tt-space-2);
	border: 1px solid var(--tt-blue);
	border-radius: var(--tt-radius-pill);
	background: var(--tt-blue);
	color: var(--tt-white);
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
}

.tt-chat__panel-button:hover {
	background: var(--tt-blue-dark);
	border-color: var(--tt-blue-dark);
}

.tt-chat__panel-button--quiet {
	background: var(--tt-white);
	color: var(--tt-blue-dark);
}

.tt-chat__panel-button--quiet:hover {
	background: var(--tt-gray-soft);
}

.tt-dates__schedule {
	margin: 0 0 var(--tt-space-2);
	color: var(--tt-text-muted);
}

body {
	padding-bottom: var(--tt-consent-height, 0px);
}

.tt-consent {
	position: fixed;
	inset: auto 0 0;
	z-index: 60;
	background: var(--tt-white);
	border: 1px solid var(--tt-border);
	border-bottom: 0;
	border-radius: 18px 18px 0 0;
	box-shadow: var(--tt-elevation-4);
	padding-bottom: env(safe-area-inset-bottom, 0);
}

@keyframes tt-consent-arrives {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
}

.tt-consent:not([hidden]) {
	animation: tt-consent-arrives 0.32s var(--tt-ease-out) both;
}

@media (prefers-reduced-motion: reduce) {
	.tt-consent:not([hidden]) {
		animation: none;
	}
}

.tt-consent__mark {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin: 0;
	border-radius: 13px;
	background: var(--tt-blue-soft);
	color: var(--tt-blue-dark);
	box-shadow: inset 0 0 0 1px rgb(8 104 215 / 10%);
}

.tt-consent__inner {
	width: min(100% - 2 * var(--tt-space-2), 1180px);
	margin-inline: auto;
	padding-block: var(--tt-space-3);
	display: grid;
	gap: 10px;

	max-height: 76vh;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.tt-consent__title {
	margin: 0;
	font-size: var(--tt-text-strong);
}

.tt-consent__text {
	margin: 0;
	max-width: 70ch;
	color: var(--tt-text-muted);
	font-size: 0.875rem;
}

.tt-consent__detail summary {
	display: inline-flex;
	align-items: center;
	min-height: var(--tt-tap);
	color: var(--tt-blue);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
}

.tt-consent__list {
	list-style: none;
	margin: 0 0 var(--tt-space-2);
	padding: 0;
	display: grid;
	gap: var(--tt-space-2);
}

.tt-consent__item-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--tt-space-1);
	margin: 0;
	font-size: 0.9375rem;
}

.tt-consent__item-head label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: var(--tt-tap);
	cursor: pointer;
}

.tt-consent__always {
	padding: 2px 8px;
	border-radius: var(--tt-radius-pill);
	background: var(--tt-gray-soft);
	color: var(--tt-text-muted);
	font-size: var(--tt-text-micro);
}

.tt-consent__item-text {
	margin: 0;
	max-width: 70ch;
	color: var(--tt-text-muted);
	font-size: 0.8125rem;
}

.tt-consent__services {
	margin: 6px 0 0;
	padding-left: 1.1em;
	color: var(--tt-text-muted);
	font-size: 0.8125rem;
}

.tt-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1);
}

.tt-consent__button {
	flex: 1 1 150px;
	min-height: var(--tt-tap);
	padding: 0 var(--tt-space-3);
	border: 1px solid var(--tt-navy);
	border-radius: var(--tt-radius-button);
	background: var(--tt-navy);
	color: var(--tt-white);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: var(--tt-elevation-1);
	transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.tt-consent__button:hover {
	background: #0b1e38;
	border-color: #0b1e38;
}

.tt-consent__button:active {
	transform: translateY(1px);
	transition-duration: 0s;
}

.tt-consent__save {
	min-height: var(--tt-tap);
	padding: 0 var(--tt-space-2);
	border: 1px solid var(--tt-border-control);
	border-radius: var(--tt-radius-button);
	background: var(--tt-white);
	color: var(--tt-navy);
	font-size: 0.875rem;
	cursor: pointer;
}

.tt-consent__policy {
	margin: 0;
	font-size: 0.8125rem;
}

@media (min-width: 768px) {
	.tt-consent {
		inset: auto auto var(--tt-space-3) var(--tt-space-3);
		width: min(440px, calc(100vw - 2 * var(--tt-space-3)));
		border-bottom: 1px solid var(--tt-border);
		border-radius: 18px;
	}

	.tt-consent__inner {
		width: 100%;
		padding-inline: var(--tt-space-3);
	}

	.tt-consent__actions {
		justify-content: stretch;
	}
}

body:has( .tt-consent:not([hidden]) ) .tt-chat-dock,
body:has( .tt-consent:not([hidden]) ) .tt-sticky-cta {

	display: none;
}

.tt-office__map[data-tt-consent-state="parked"] {
	display: grid;
	place-items: center;
}

.tt-office__map-ask {
	display: grid;
	justify-items: center;
	gap: var(--tt-space-2);
	padding: var(--tt-space-3);
	text-align: center;
}

.tt-office__map-text {
	margin: 0;
	max-width: 40ch;
	color: var(--tt-text-muted);
	font-size: 0.875rem;
}

.tt-office__map[data-tt-consent-state="loaded"] .tt-office__map-ask {
	display: none;
}

.tt-footer__consent {
	display: inline-block;
	padding: 8px 0;
	border: 0;
	background: none;
	color: var(--tt-on-navy);
	font: inherit;
	cursor: pointer;
}

.tt-footer__consent:hover,
.tt-footer__consent:focus-visible {
	color: var(--tt-white);
	text-decoration: underline;
}

@media (pointer: coarse) {
	.tt-footer__consent {
		display: inline-flex;
		align-items: center;
		min-height: var(--tt-tap);
	}
}

.tt-step {
	margin: 0;
	padding: 0;
	border: 0;
}

.tt-step__legend {
	padding: 0;
	margin-bottom: var(--tt-space-2);
	color: var(--tt-navy);
	font-size: var(--tt-text-lead);
	font-weight: 700;
}

.tt-step__legend:focus-visible {
	outline: 3px solid var(--tt-focus);
	outline-offset: 4px;
	border-radius: 4px;
}

.tt-step + .tt-step {
	margin-top: var(--tt-space-4);
}

.tt-form__steps:has( [data-tt-step][hidden] ) .tt-step + .tt-step {
	margin-top: 0;
}

.tt-steps__progress {
	display: grid;
	gap: 6px;
	margin-bottom: var(--tt-space-3);
}

.tt-steps__count {
	margin: 0;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-micro);
	font-weight: 600;
}

.tt-steps__bar {
	height: 4px;
	border-radius: var(--tt-radius-pill);
	background: var(--tt-border);
	overflow: hidden;
}

.tt-steps__fill {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: var(--tt-blue);
	transition: width 0.24s ease;
}

.tt-steps__nav {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tt-space-1);
	margin-top: var(--tt-space-3);
}

.tt-steps__nav button[hidden] {
	display: none;
}

@keyframes tt-step-forward {
	from { opacity: 0; transform: translateX(16px); }
	to   { opacity: 1; transform: none; }
}

@keyframes tt-step-back {
	from { opacity: 0; transform: translateX(-16px); }
	to   { opacity: 1; transform: none; }
}

[data-tt-step-enter="forward"] {
	animation: tt-step-forward 0.18s ease-out;
}

[data-tt-step-enter="back"] {
	animation: tt-step-back 0.18s ease-out;
}

@media (prefers-reduced-motion: reduce) {
	.tt-steps__fill {
		transition: none;
	}

	[data-tt-step-enter] {
		animation: none;
	}
}

.tt-icon {
	display: inline-block;
	flex: none;
	vertical-align: -0.15em;
}

.tt-icon-badge {
	display: grid;
	place-items: center;
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: var(--tt-blue-soft);
	color: var(--tt-blue-dark);
	box-shadow: inset 0 0 0 1px rgb(8 104 215 / 10%);
}

.tt-icon-badge--sm {
	width: 34px;
	height: 34px;
	border-radius: 11px;
}

.tt-icon-badge--lg {
	width: 56px;
	height: 56px;
	border-radius: 18px;
}

.tt-footer .tt-icon-badge,
.tt-banner .tt-icon-badge,
.tt-hero .tt-icon-badge {
	background: rgb(255 255 255 / 12%);
	color: var(--tt-white);
	box-shadow: inset 0 0 0 1px rgb(255 255 255 / 16%);
}

.tt-motion [data-tt-reveal] {
	opacity: 0;
	translate: 0 16px;
}

.tt-motion [data-tt-reveal].is-revealed {
	opacity: 1;
	translate: none;
	transition:
		opacity var(--tt-duration-slow) var(--tt-ease-out),
		translate var(--tt-duration-slow) var(--tt-ease-out);
	transition-delay: var(--tt-reveal-delay, 0ms);
}

.tt-motion [data-tt-reveal].is-revealed.is-settled {
	transition: none;
}

.tt-lift {
	transition:
		transform var(--tt-duration-base) var(--tt-ease-out),
		box-shadow var(--tt-duration-base) var(--tt-ease-out),
		border-color var(--tt-duration-base) var(--tt-ease-out);
}

@media (hover: hover) {
	.tt-lift:hover {
		transform: translateY(-4px);
		box-shadow: var(--tt-elevation-3);
		border-color: rgb(8 104 215 / 28%);
	}
}

.tt-lift:focus-within {
	box-shadow: var(--tt-elevation-3);
	border-color: rgb(8 104 215 / 28%);
}

.tt-button--primary {
	box-shadow: 0 1px 2px rgb(6 76 156 / 24%), 0 6px 16px rgb(8 104 215 / 18%);
}

@media (hover: hover) {
	.tt-button--primary:hover {
		box-shadow: 0 2px 4px rgb(6 76 156 / 26%), 0 10px 24px rgb(8 104 215 / 26%);
	}
}

.tt-button .tt-icon,
.tt-section__link .tt-icon {
	transition: transform var(--tt-duration-base) var(--tt-ease-out);
}

@media (hover: hover) {
	.tt-button:hover .tt-icon--forward,
	.tt-section__link:hover .tt-icon--forward {
		transform: translateX(3px);
	}
}

.tt-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
	color: var(--tt-blue-dark);
	font-size: var(--tt-text-small);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.tt-kicker::before {
	content: "";
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: currentcolor;
	flex: none;
}

.tt-section--dark .tt-kicker,
.tt-hero .tt-kicker {
	color: var(--tt-blue-soft);
}

@media (min-width: 768px) {
	.tt-section__head h2 {
		font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.25rem);
	}
}

.tt-service__tours .tt-section__head h2 {
	font-size: var(--tt-text-title);
}

.tt-section__head > div:first-child {
	max-width: 62ch;
}

.tt-stats {
	display: grid;
	gap: var(--tt-space-2);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.tt-stat {
	position: relative;
	display: grid;
	align-content: start;
	gap: 6px;
	padding: var(--tt-space-3);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
	box-shadow: var(--tt-elevation-1);
}

.tt-stat__icon {
	margin-bottom: var(--tt-space-1);
}

.tt-stat__value {
	display: flex;
	align-items: baseline;
	gap: 4px;
	color: var(--tt-navy);
	font-size: clamp(2rem, 1.4rem + 2.4vw, 2.75rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}

.tt-stat__unit {
	font-size: var(--tt-text-body);
	font-weight: 600;
	color: var(--tt-text-muted);
	letter-spacing: 0;
}

.tt-stat__label {
	margin: 0;
	color: var(--tt-navy);
	font-size: var(--tt-text-body);
	font-weight: 700;
}

.tt-stat__note {
	margin: 0;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-small);
	line-height: 1.5;
}

.tt-features {
	display: grid;
	gap: var(--tt-space-2);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.tt-feature {
	display: grid;
	gap: 12px;
	align-content: start;
	padding: var(--tt-space-3);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
	box-shadow: var(--tt-elevation-1);
}

.tt-feature__title {
	margin: 0;
	color: var(--tt-navy);
	font-size: var(--tt-text-strong);
	font-weight: 700;
	line-height: 1.35;
}

.tt-feature__text {
	margin: 0;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-small);
	line-height: 1.6;
}

.tt-flow {
	display: grid;
	gap: var(--tt-space-3);
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: tt-flow;
}

.tt-flow__item {
	position: relative;
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: var(--tt-space-2);
	counter-increment: tt-flow;
}

.tt-flow__marker {
	position: relative;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--tt-blue);
	color: var(--tt-white);
	font-size: var(--tt-text-body);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	box-shadow: 0 0 0 4px var(--tt-white), 0 0 0 5px var(--tt-border);
}

.tt-flow__marker::after {
	content: counter(tt-flow);
}

.tt-flow__item:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 49px;
	left: 21px;
	bottom: calc(var(--tt-space-3) * -1);
	width: 2px;
	background: linear-gradient(to bottom, var(--tt-border), rgb(220 228 236 / 0%));
}

.tt-flow__body {
	padding-top: 8px;
}

.tt-flow__title {
	margin: 0 0 6px;
	color: var(--tt-navy);
	font-size: var(--tt-text-strong);
	font-weight: 700;
	line-height: 1.35;
}

.tt-flow__text {
	margin: 0;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-small);
	line-height: 1.6;
}

@media (min-width: 768px) {
	.tt-flow {
		grid-auto-flow: column;
		grid-auto-columns: 1fr;
		gap: var(--tt-space-3);
	}

	.tt-flow__item {
		grid-template-columns: 1fr;
		gap: var(--tt-space-2);
	}

	.tt-flow__item:not(:last-child)::before {
		top: 21px;
		left: 49px;
		right: calc(var(--tt-space-3) * -1);
		bottom: auto;
		width: auto;
		height: 2px;
		background: linear-gradient(to right, var(--tt-border), rgb(220 228 236 / 0%));
	}

	.tt-flow__body {
		padding-top: 0;
	}
}

.tt-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tt-chip .tt-icon {
	color: var(--tt-blue);
}

@media (hover: hover) {
	a.tt-chip:hover {
		border-color: rgb(8 104 215 / 30%);
		box-shadow: var(--tt-elevation-2);
	}
}

.tt-chip:not( a ):not( button ) {
	min-height: 0;
}

.tt-marklist {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tt-marklist__item {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 12px;
	align-items: start;
	font-size: var(--tt-text-body);
	line-height: 1.6;
}

.tt-marklist__mark {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	border-radius: 50%;
}

.tt-marklist__mark--yes {
	background: var(--tt-blue-soft);
	color: var(--tt-blue-dark);
}

.tt-marklist__mark--no {
	background: var(--tt-gray-soft);
	color: var(--tt-text-muted);
	box-shadow: inset 0 0 0 1px var(--tt-border);
}

.tt-carousel__track,
.tt-destinations {
	scrollbar-width: none;
}

.tt-carousel__track::-webkit-scrollbar,
.tt-destinations::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.tt-carousel {
	--tt-fade-start: 0px;
	--tt-fade-end: 0px;
}

.tt-carousel__track {
	mask-image: linear-gradient(
		to right,
		transparent 0,
		#000 var(--tt-fade-start),
		#000 calc(100% - var(--tt-fade-end)),
		transparent 100%
	);
	transition: mask-image var(--tt-duration-base) linear;
}

.tt-carousel[data-tt-overflow="start"],
.tt-carousel[data-tt-overflow="both"] {
	--tt-fade-start: 48px;
}

.tt-carousel[data-tt-overflow="end"],
.tt-carousel[data-tt-overflow="both"] {
	--tt-fade-end: 48px;
}

.tt-carousel__button {
	box-shadow: var(--tt-elevation-1);
}

@media (hover: hover) {
	.tt-carousel__button:hover:not([disabled]) {
		box-shadow: var(--tt-elevation-2);
		background: var(--tt-blue);
		border-color: var(--tt-blue);
		color: var(--tt-white);
	}
}

@media (prefers-reduced-motion: reduce) {
	.tt-motion [data-tt-reveal],
	.tt-motion [data-tt-reveal].is-revealed {
		opacity: 1;
		translate: none;
		transition: none;
	}

	.tt-lift,
	.tt-carousel__track {
		transition: none;
	}

	.tt-lift:hover {
		transform: none;
	}

	.tt-button:hover .tt-icon--forward,
	.tt-section__link:hover .tt-icon--forward {
		transform: none;
	}
}

.tt-section__controls:empty {
	display: none;
}

.tt-section__controls .tt-carousel__nav {
	margin-top: 0;
}

.tt-google {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: var(--tt-tap);
	margin-top: 14px;
	padding: 8px 16px 8px 10px;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-pill);
	background: var(--tt-white);
	color: var(--tt-navy);
	font-size: var(--tt-text-small);
	text-decoration: none;
	box-shadow: var(--tt-elevation-1);
	transition:
		box-shadow var(--tt-duration-base) var(--tt-ease-out),
		border-color var(--tt-duration-base) var(--tt-ease-out);
}

.tt-google__mark {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--tt-white);
	box-shadow: inset 0 0 0 1px var(--tt-border);
}

.tt-google__text strong {
	font-variant-numeric: tabular-nums;
}

.tt-google .tt-icon {
	color: var(--tt-blue);
}

@media (hover: hover) {
	.tt-google:hover {
		border-color: rgb(8 104 215 / 34%);
		box-shadow: var(--tt-elevation-2);
		color: var(--tt-navy);
	}

	.tt-google:hover .tt-icon--forward {
		transform: translateX(3px);
	}
}

.tt-review {
	position: relative;
	padding: 20px;
	box-shadow: var(--tt-elevation-2);
}

@media (min-width: 1024px) and (hover: hover) and (prefers-reduced-motion: no-preference) {
	.tt-reviews__item {
		perspective: 900px;
	}

	.tt-reviews__item > .tt-review:hover {
		transform: translateY(-6px) rotateX(3deg) scale(1.012);
		box-shadow: var(--tt-elevation-4);
	}
}

.tt-review__quote,
.tt-review__meta,
.tt-review__author,
.tt-review__more {
	position: relative;
}

.tt-review__quote p {
	color: var(--tt-text);
	font-size: 0.9375rem;
	line-height: 1.55;
}

@media (max-width: 767px) {
	.tt-review__quote p {
		font-size: var(--tt-text-body);
	}

	.tt-review__author {
		font-size: var(--tt-text-small);
	}
}

.tt-review__mark {
	display: block;
	height: 30px;
	margin-bottom: 6px;
	overflow: hidden;
	color: var(--tt-blue);
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	opacity: 0.45;
}

.tt-review__author {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: var(--tt-space-2);
	border-top: 1px solid var(--tt-border);
	color: var(--tt-text-muted);
	font-size: var(--tt-text-small);
	font-weight: 400;
}

.tt-review__who {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.tt-review__name {
	color: var(--tt-navy);
	font-weight: 700;
	line-height: 1.25;
}

.tt-rating__star {
	color: rgb(180 106 0 / 22%);
	font-size: 1.0625rem;
}

.tt-rating__star.is-filled {
	color: var(--tt-star-fill);

	-webkit-text-stroke: 0.6px var(--tt-star);
}

@media (max-width: 767px) {
	.tt-section__controls {
		width: 100%;
	}
}

.tt-media__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		to top,
		rgb(9 20 36 / 82%) 0%,
		rgb(9 20 36 / 34%) 38%,
		rgb(9 20 36 / 0%) 72%
	);
}

.tt-media__badge {
	position: absolute;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 11px;
	border-radius: var(--tt-radius-pill);
	background: rgb(255 255 255 / 88%);
	color: var(--tt-navy);
	font-size: var(--tt-text-micro);
	font-weight: 700;
	line-height: 1.4;
	backdrop-filter: blur(6px);
	box-shadow: 0 1px 3px rgb(9 20 36 / 18%);
}

.tt-media__badge--start {
	inset: 10px auto auto 10px;
}

.tt-media__badge--end {
	inset: 10px 10px auto auto;
}

.tt-media__badge--bottom {
	inset: auto auto 10px 10px;
}

.tt-media__badge--solid {
	background: rgb(18 43 77 / 88%);
	color: var(--tt-white);
	box-shadow: 0 1px 3px rgb(9 20 36 / 30%);
}

.tt-media__badge--count {
	max-width: calc(100% - 20px);
	box-shadow: none;
	font-weight: 600;
	pointer-events: none;
}

.tt-section--dark {
	background: var(--tt-navy);
	color: var(--tt-on-navy);
}

.tt-section--dark h2,
.tt-section--dark h3,
.tt-section--dark .tt-stat__value,
.tt-section--dark .tt-stat__label,
.tt-section--dark .tt-feature__title,
.tt-section--dark .tt-flow__title {
	color: var(--tt-white);
}

.tt-section--dark .tt-section__head p:not([class]),
.tt-section--dark .tt-lede,
.tt-section--dark .tt-stat__note,
.tt-section--dark .tt-feature__text,
.tt-section--dark .tt-flow__text {
	color: var(--tt-on-navy);
}

.tt-section--dark .tt-stat,
.tt-section--dark .tt-feature {
	background: rgb(255 255 255 / 6%);
	border-color: rgb(255 255 255 / 14%);
	box-shadow: none;
}

.tt-section--dark .tt-icon-badge {
	background: rgb(255 255 255 / 12%);
	color: var(--tt-white);
	box-shadow: inset 0 0 0 1px rgb(255 255 255 / 16%);
}

.tt-section--dark .tt-stat__unit {
	color: var(--tt-blue-soft);
}

.tt-section--dark .tt-flow__marker {
	background: var(--tt-white);
	color: var(--tt-navy);
	box-shadow: 0 0 0 4px var(--tt-navy), 0 0 0 5px rgb(255 255 255 / 24%);
}

.tt-section--dark .tt-flow__item:not(:last-child)::before {
	background: linear-gradient(to bottom, rgb(255 255 255 / 28%), rgb(255 255 255 / 0%));
}

@media (min-width: 768px) {
	.tt-section--dark .tt-flow__item:not(:last-child)::before {
		background: linear-gradient(to right, rgb(255 255 255 / 28%), rgb(255 255 255 / 0%));
	}
}

.tt-prose {
	max-width: 56ch;
}

.tt-prose > p {
	margin: 0 0 var(--tt-space-2);
	line-height: 1.75;
}

.tt-prose > p:first-of-type {
	color: var(--tt-navy);
	font-size: var(--tt-text-lead);
	line-height: 1.6;
}

.tt-flow__body .tt-prose > p:first-of-type {
	color: var(--tt-text);
	font-size: var(--tt-text-body);
	line-height: 1.75;
}

.tt-page-header:has( .tt-page-header__lede ) + .tt-service__body > p:first-of-type {
	color: var(--tt-text);
	font-size: var(--tt-text-body);
	line-height: 1.75;
}

.tt-prose > h2 {
	margin: var(--tt-space-5) 0 var(--tt-space-2);
}

.tt-prose > h3 {
	margin: var(--tt-space-4) 0 var(--tt-space-1);
}

.tt-prose > ul,
.tt-prose > ol {
	margin: 0 0 var(--tt-space-2);
	padding-left: 1.25em;
	line-height: 1.75;
}

.tt-prose > ul li + li,
.tt-prose > ol li + li {
	margin-top: 6px;
}

.tt-prose > blockquote {
	margin: var(--tt-space-4) 0;
	padding: 0 0 0 var(--tt-space-3);
	border-left: 3px solid var(--tt-blue);
	color: var(--tt-navy);
	font-size: var(--tt-text-lead);
	line-height: 1.55;
}

.tt-service__ask {
	display: grid;
	gap: var(--tt-space-2);
	align-items: center;

	margin-top: var(--tt-space-5);
	padding: var(--tt-space-3);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-gray-soft);
}

@media (max-width: 639px) {
	.tt-service__ask {
		padding: 0;
		border: 0;
		background: none;
	}
}

.tt-service__ask > h2,
.tt-service__ask > h3 {
	margin: 0;
	font-size: var(--tt-text-strong);
}

@media (min-width: 768px) {
	.tt-service__ask {
		grid-template-columns: minmax(0, 1fr);
	}
}

.tt-panel--accent {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
	box-shadow: var(--tt-elevation-2);
}

.tt-panel--accent::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--tt-blue);
}

.tt-steps__item::before {
	width: 44px;
	height: 44px;
	background: var(--tt-blue);
	color: var(--tt-white);
	box-shadow: 0 0 0 4px var(--tt-white), 0 0 0 5px var(--tt-border);
	z-index: 1;
}

.tt-steps__item {
	padding-left: 60px;
}

.tt-steps__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 44px;
	left: 22px;
	width: 2px;
	height: calc(100% - 44px + var(--tt-space-3));
	transform: translateX(-50%);
	background: linear-gradient(to bottom, var(--tt-border), rgb(220 228 236 / 0%));
}

@media (min-width: 768px) {
	.tt-steps__item:not(:last-child)::after {
		top: 22px;
		left: 44px;
		width: calc(100% - 44px + var(--tt-space-4));
		height: 2px;
		transform: translateY(-50%);
		background: linear-gradient(to right, var(--tt-border), rgb(220 228 236 / 0%));
	}
}

.tt-motion .tt-steps__item:not(:last-child)::after {

	transform: translateX(-50%) scaleY(0);
	transform-origin: 50% 0;
}

.tt-motion .tt-steps__item.is-revealed:not(:last-child)::after {

	animation: tt-step-line var(--tt-duration-slow) var(--tt-ease-out)
		calc(var(--tt-reveal-delay, 0ms) + var(--tt-duration-slow)) forwards;
}

@keyframes tt-step-line {
	from {
		transform: translateX(-50%) scaleY(0);
	}

	to {
		transform: translateX(-50%) scaleY(1);
	}
}

@media (min-width: 768px) {

	.tt-motion .tt-steps__item:not(:last-child)::after {
		transform: translateY(-50%) scaleX(0);
		transform-origin: 0 50%;
	}

	.tt-motion .tt-steps__item.is-revealed:not(:last-child)::after {
		animation-name: tt-step-line-across;
	}
}

@keyframes tt-step-line-across {
	from {
		transform: translateY(-50%) scaleX(0);
	}

	to {
		transform: translateY(-50%) scaleX(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.tt-motion .tt-steps__item:not(:last-child)::after,
	.tt-motion .tt-steps__item.is-revealed:not(:last-child)::after {
		transform: translateX(-50%) scaleY(1);
		animation: none;
	}
}

@media (prefers-reduced-motion: reduce) and (min-width: 768px) {
	.tt-motion .tt-steps__item:not(:last-child)::after,
	.tt-motion .tt-steps__item.is-revealed:not(:last-child)::after {
		transform: translateY(-50%) scaleX(1);
	}
}

@media (min-width: 768px) {
	.tt-steps__item {
		padding-left: 0;
		padding-top: 60px;
	}
}

.tt-points__item {
	box-shadow: var(--tt-elevation-1);
	transition:
		transform var(--tt-duration-base) var(--tt-ease-out),
		box-shadow var(--tt-duration-base) var(--tt-ease-out),
		border-color var(--tt-duration-base) var(--tt-ease-out);
}

@media (hover: hover) {
	.tt-points__item:hover {
		transform: translateY(-4px);
		box-shadow: var(--tt-elevation-3);
		border-color: rgb(8 104 215 / 28%);
	}
}

.tt-points__item:active {
	transform: translateY(1px);
	box-shadow: var(--tt-elevation-1);
	transition-duration: 0s;
}

.tt-points__item .tt-icon-badge {
	margin-bottom: 14px;
}

@media (prefers-reduced-motion: reduce) {
	.tt-points__item,
	.tt-points__item:hover {
		transform: none;
		transition: none;
	}
}

.tt-fleet .tt-stats {
	gap: var(--tt-space-3);
}

.tt-fleet .tt-stat {
	border-color: rgb(8 104 215 / 14%);
	background: rgb(255 255 255 / 72%);
}

.tt-fleet__item {
	display: grid;
}

.tt-faq__item {
	border-radius: var(--tt-radius-card);
	transition: background-color var(--tt-duration-base) var(--tt-ease-out);
}

.tt-faq__item[open] {
	background: var(--tt-gray-soft);
}

.tt-faq__question {
	border-radius: var(--tt-radius-card);
}

@keyframes tt-faq-opens {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
}

.tt-faq__item[open] .tt-faq__answer {
	animation: tt-faq-opens var(--tt-duration-base) var(--tt-ease-out);
}

@media (prefers-reduced-motion: reduce) {
	.tt-faq__item[open] .tt-faq__answer {
		animation: none;
	}
}

.tt-form-section {
	background: var(--tt-white);
	box-shadow: var(--tt-elevation-2);
}

.tt-input,
.tt-select,
.tt-textarea {
	background: #fbfcfe;
	transition:
		border-color var(--tt-duration-fast) var(--tt-ease-out),
		box-shadow var(--tt-duration-fast) var(--tt-ease-out),
		background-color var(--tt-duration-fast) var(--tt-ease-out);
}

@media (hover: hover) {
	.tt-input:hover,
	.tt-select:hover,
	.tt-textarea:hover {
		border-color: var(--tt-navy);
	}
}

.tt-input:focus,
.tt-select:focus,
.tt-textarea:focus {
	background: var(--tt-white);
	box-shadow: 0 0 0 4px rgb(8 104 215 / 12%);
}

.tt-input[aria-invalid="true"]:focus,
.tt-select[aria-invalid="true"]:focus,
.tt-textarea[aria-invalid="true"]:focus {
	box-shadow: 0 0 0 4px rgb(179 38 30 / 12%);
}

.tt-field__label {
	font-size: var(--tt-text-small);
}

.tt-field__error::before {
	content: "!";
	display: inline-grid;
	place-items: center;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	border-radius: 50%;
	background: #b3261e;
	color: var(--tt-white);
	font-size: 11px;
	font-weight: 700;
	vertical-align: -0.2em;
}

.tt-steps__progress {
	gap: 8px;
	margin-bottom: var(--tt-space-3);
	padding-bottom: var(--tt-space-3);
	border-bottom: 1px solid var(--tt-border);
}

.tt-steps__count {
	color: var(--tt-navy);
	font-size: var(--tt-text-small);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.tt-steps__bar {
	height: 6px;
	background: var(--tt-blue-soft);
	box-shadow: inset 0 0 0 1px rgb(8 104 215 / 10%);
}

.tt-steps__fill {
	background: linear-gradient(90deg, var(--tt-blue-dark), var(--tt-blue));
	transition: width 0.32s var(--tt-ease-out);
}

.tt-steps__nav {
	justify-content: space-between;
	padding-top: var(--tt-space-1);
}

.tt-steps__nav button:only-child {
	margin-left: auto;
}

.tt-step__legend {
	display: flex;
	align-items: center;
	gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
	.tt-input,
	.tt-select,
	.tt-textarea {
		transition: none;
	}
}

.tt-search__label {
	display: flex;
	align-items: center;
	gap: 6px;
}

.tt-search__label .tt-icon {
	color: var(--tt-blue);
	vertical-align: 0;
}

.tt-empty {
	border-style: solid;
	border-color: var(--tt-border);
	background: var(--tt-white);
	color: var(--tt-text);
	padding-inline: var(--tt-space-4);
}

.tt-empty__icon {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	margin: 0 auto var(--tt-space-2);
	border-radius: 22px;
	background: var(--tt-blue-soft);
	color: var(--tt-blue-dark);
	box-shadow: inset 0 0 0 1px rgb(8 104 215 / 10%);
}

.tt-empty.tt-panel--accent {
	padding-left: calc(var(--tt-space-4) + 4px);
}

@media (min-width: 1200px) {
	.tt-header__inner {
		column-gap: var(--tt-space-3);
	}

	.tt-nav__list {
		gap: 18px;
	}

	.tt-header__cta .tt-button {
		min-height: 40px;
		padding-block: 0;
		padding-inline: var(--tt-space-2);
		font-size: 0.875rem;
	}
}

.tt-service__ask {
	align-items: start;
}

.tt-flow--stacked {
	display: grid;
	grid-auto-flow: row;
	grid-auto-columns: auto;
}

@media (min-width: 768px) {
	.tt-flow--stacked {
		grid-auto-flow: row;
		grid-auto-columns: auto;
	}

	.tt-flow--stacked .tt-flow__item {
		grid-template-columns: 44px 1fr;
		gap: var(--tt-space-2);
	}

	.tt-flow--stacked .tt-flow__body {
		padding-top: 8px;
	}

	.tt-flow--stacked .tt-flow__item:not(:last-child)::before {
		top: 49px;
		left: 21px;
		right: auto;
		bottom: calc(var(--tt-space-3) * -1);
		width: 2px;
		height: auto;
		background: linear-gradient(to bottom, var(--tt-border), rgb(220 228 236 / 0%));
	}
}

.tt-chip.is-current .tt-icon {
	color: currentcolor;
}

.tt-archive__results .page-numbers {
	gap: 6px;
}

.tt-crumbs__item:not(:last-child)::after {
	display: inline-block;
	transform: translateY(-1px);
}

.tt-banner .tt-kicker {
	color: var(--tt-blue-soft);
}

.tt-banner .tt-stat {
	background: rgb(255 255 255 / 6%);
	border-color: rgb(255 255 255 / 14%);
	box-shadow: none;
}

.tt-banner .tt-stat__value,
.tt-banner .tt-stat__label {
	color: var(--tt-white);
}

.tt-banner .tt-stat__note {
	color: var(--tt-on-navy);
}

.tt-banner .tt-stat__unit {
	color: var(--tt-blue-soft);
}

.tt-banner__media {
	position: relative;
	overflow: hidden;
}

.tt-icon-badge + h2,
.tt-icon-badge + h3,
.tt-feature .tt-icon-badge,
.tt-stat .tt-icon-badge {
	margin-top: 0;
}

.tt-feature > .tt-icon-badge,
.tt-stat > .tt-icon-badge {
	margin-bottom: 4px;
}

.tt-footer__office-line,
.tt-footer__hours span {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 8px;
	align-items: start;
}

.tt-footer__office-line .tt-icon,
.tt-footer__hours span .tt-icon {
	margin-top: 2px;
	color: var(--tt-blue-soft);
}

@media (pointer: coarse) {
	.tt-footer__office-line:has( > a ),
	.tt-footer__hours span {
		align-items: center;
	}

	.tt-footer__office-line:has( > a ) .tt-icon,
	.tt-footer__hours span .tt-icon {
		margin-top: 0;
	}
}

.tt-footer__registry {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.tt-footer__registry span {
	padding: 3px 10px;
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: var(--tt-radius-pill);
	font-size: var(--tt-text-micro);
	font-variant-numeric: tabular-nums;
}

.tt-notice--trust {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--tt-space-2);
	align-items: start;
	border-color: rgb(8 104 215 / 22%);
	background: var(--tt-blue-soft);
	color: var(--tt-text);
}

.tt-office__block {
	display: grid;
	gap: var(--tt-space-2);
}

.tt-office__details {
	display: grid;
	gap: var(--tt-space-2);
	margin: 0;
}

.tt-office__details .tt-icon-badge {
	margin-bottom: 0;
}

.tt-faq__heading,
.tt-steps__heading,
.tt-points__heading {
	font-size: var(--tt-text-title);
	margin-bottom: var(--tt-space-3);
}

.tt-faq__label {
	flex: 1 1 auto;
	min-width: 0;
	font-size: var(--tt-text-body);
	font-weight: 700;
	color: inherit;
}

.tt-home-membership {
	padding: var(--tt-space-4);
}

.tt-home-membership--art {
	border-color: var(--tt-blue-soft);
	background: var(--tt-blue-soft);
}

.tt-home-membership__art {
	margin-top: var(--tt-space-3);
}

.tt-home-membership__art img {
	display: block;
	width: min(78vw, 320px);
	height: auto;
	margin-inline: auto;
}

@media (min-width: 768px) {
	.tt-home-membership {
		padding: var(--tt-space-5);
	}

	.tt-home-membership--art {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: var(--tt-space-5);
	}

	.tt-home-membership--art h2 {
		font-size: clamp(1.75rem, 2.4vw, 2.125rem);
	}

	.tt-home-membership--art .tt-lede {
		max-width: 46ch;
	}

	.tt-home-membership--art .tt-home-membership__art {
		margin-top: 0;
	}

	.tt-home-membership--art .tt-home-membership__art img {
		width: 320px;
	}
}

@media (min-width: 1024px) {
	.tt-home-membership--art .tt-home-membership__art img {
		width: 380px;
	}
}

.tt-faq__question {
	padding-inline: var(--tt-space-2);
	border-radius: var(--tt-radius-card);
	transition: background-color var(--tt-duration-fast) var(--tt-ease-out);
}

@media (hover: hover) {
	.tt-faq__question:hover {
		background: var(--tt-gray-soft);
	}
}

.tt-faq__question {
	position: relative;
	padding-right: calc(var(--tt-space-2) + 34px);
}

.tt-faq__question::before {
	content: "";
	position: absolute;
	right: var(--tt-space-2);
	top: 50%;
	width: 34px;
	height: 34px;
	margin-top: -17px;
	border-radius: 50%;
	background: var(--tt-blue-soft);
	box-shadow: inset 0 0 0 1px rgb(8 104 215 / 12%);
	transition: background-color var(--tt-duration-base) var(--tt-ease-out);
}

.tt-faq__question::after {
	position: absolute;
	right: calc(var(--tt-space-2) + 12px);
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -7px;
	border-right-color: var(--tt-blue-dark);
	border-bottom-color: var(--tt-blue-dark);
	transition:
		transform var(--tt-duration-base) var(--tt-ease-out),
		border-color var(--tt-duration-base) var(--tt-ease-out);
}

.tt-faq__item[open] .tt-faq__question::before {
	background: var(--tt-blue);
	box-shadow: none;
}

.tt-faq__item[open] .tt-faq__question::after {
	border-right-color: var(--tt-white);
	border-bottom-color: var(--tt-white);
}

.tt-faq__item[open] .tt-faq__question {
	color: var(--tt-blue-dark);
}

.tt-faq__answer {
	padding-inline: var(--tt-space-2);
}

@media (prefers-reduced-motion: reduce) {
	.tt-faq__question,
	.tt-faq__question::before,
	.tt-faq__question::after {
		transition: none;
	}
}

.tt-consent__inner {
	grid-template-columns: 40px minmax(0, 1fr);
	grid-template-areas:
		"mark  title"
		"text  text"
		"panel panel"
		"acts  acts";
	align-items: center;
	column-gap: 12px;
}

.tt-consent__mark {
	grid-area: mark;
}

.tt-consent__title {
	grid-area: title;
}

.tt-consent__text {
	grid-area: text;
}

.tt-consent__detail {
	grid-area: panel;
	justify-self: start;
}

.tt-consent__actions {
	grid-area: acts;
}

.tt-consent__policy {
	grid-area: panel;
	justify-self: end;
	align-self: start;
	line-height: var(--tt-tap);
}

.tt-consent__detail[open] {
	justify-self: stretch;
	padding-right: 140px;
}

@media (max-width: 767px) {
	.tt-banner__media {
		display: block;
		aspect-ratio: 5 / 2;

		border-radius: 0 0 var(--tt-radius-card) var(--tt-radius-card);
		overflow: hidden;
	}

	.tt-banner__media img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.tt-destinations {
	position: relative;
}

.tt-chip {
	max-width: 100%;
}

.tt-chips-row .tt-chips--wrap {
	flex-wrap: wrap;
	overflow: visible;
	scroll-snap-type: none;
}

.tt-chips--wrap > li {

	max-width: 100%;
	min-width: 0;
}

.tt-chips--wrap .tt-chip {
	white-space: normal;
	text-align: left;
	max-width: 100%;
}

.tt-carousel__button--toggle {
	background: var(--tt-blue-soft);
	border-color: transparent;
	color: var(--tt-blue-dark);
}

@media (hover: hover) {
	.tt-carousel__button--toggle:hover {
		background: var(--tt-blue);
		border-color: var(--tt-blue);
		color: var(--tt-white);
	}
}

.tt-carousel__button--toggle svg path[d^="M8 5l11"] {
	fill: currentcolor;
}

@supports (animation-timeline: view()) {
	@media (prefers-reduced-motion: no-preference) {
		.tt-carousel--depth .tt-carousel__track {
			perspective: 1200px;
			perspective-origin: 50% 50%;
		}

		.tt-carousel--depth .tt-reviews__item {
			animation: tt-coverflow linear both;
			animation-timeline: view(inline);
			animation-range: cover;
			transform-style: preserve-3d;
			backface-visibility: hidden;
		}

		@keyframes tt-coverflow {
			0% {
				transform: rotateY(8deg) scale(0.93);
			}

			50%,
			100% {
				transform: none;
			}
		}
	}
}

.tt-seam {
	position: relative;
	display: block;
	margin-top: var(--tt-section);
	line-height: 0;

	pointer-events: none;
}

.tt-seam__art {
	display: block;
	width: 100%;
	height: 130px;
}

.tt-seam__water--far,
.tt-seam__water--mid {
	fill: var(--tt-blue);
}

.tt-seam__water--far {
	opacity: 0.16;
}

.tt-seam__water--mid {
	opacity: 0.42;
}

.tt-seam__water--near {
	fill: var(--tt-navy);
	opacity: 1;
}

@media (max-width: 767px) {
	.tt-seam__art {
		height: 80px;
	}
}

.tt-footer__bottom .tt-footer__credit {
	margin-top: 6px;

	color: rgb(219 230 242 / 72%);
}

.tt-footer__credit a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgb(255 255 255 / 32%);
	text-underline-offset: 3px;
	transition: text-decoration-color var(--tt-duration-base) var(--tt-ease-out);
}

.tt-footer__credit a:hover,
.tt-footer__credit a:focus-visible {
	color: var(--tt-white);
	text-decoration-color: var(--tt-white);
}

.tt-roadshow {
	position: relative;
	overflow: hidden;
	margin-block: var(--tt-space-4) var(--tt-space-3);
	border-radius: var(--tt-radius-lg);
	background: var(--tt-blue-soft);
}

.tt-roadshow__art {
	display: block;
	overflow: visible;
	width: 100%;
	height: 132px;
}

@media (min-width: 768px) {
	.tt-roadshow__art {
		height: 190px;
	}
}

.tt-roadshow__hills {
	fill: rgb(8 104 215 / 9%);
}

.tt-roadshow__road,
.tt-roadshow__kerb {
	fill: none;
	stroke-linecap: round;
}

.tt-roadshow__road {
	stroke: rgb(8 104 215 / 46%);
	stroke-width: 5;
	stroke-dasharray: 34 26;
}

.tt-roadshow__kerb {
	stroke: rgb(8 104 215 / 20%);
	stroke-width: 3;
}

.tt-roadshow__kerb--low {
	stroke: rgb(8 104 215 / 10%);
}

.tt-coach__shadow {
	fill: rgb(11 31 59 / 12%);
}

.tt-coach__body {
	fill: var(--tt-blue);
}

.tt-coach__glass {
	fill: rgb(255 255 255 / 88%);
}

.tt-coach__pillars {
	fill: var(--tt-blue);
}

.tt-coach__stripe {
	fill: rgb(255 255 255 / 62%);
}

.tt-coach__lamp {
	fill: var(--tt-star-fill);
}

.tt-coach__tyre {
	fill: var(--tt-navy);
}

.tt-coach__hub {
	fill: var(--tt-white);
}

.tt-coach__spokes {
	fill: none;
	stroke: rgb(11 31 59 / 30%);
	stroke-width: 2;
	stroke-linecap: round;
}

.tt-roadshow.is-still .tt-roadshow__road,
.tt-roadshow.is-still .tt-roadshow__hills,
.tt-roadshow.is-still .tt-coach__wheel,
.tt-roadshow.is-still .tt-coach__ride,
.tt-roadshow.is-still .tt-plane {
	animation-play-state: paused;
}

.tt-roadshow__pause {
	position: absolute;
	inline-size: 1px;
	block-size: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.tt-roadshow__pause:focus {
	position: static;
	display: grid;
	place-items: center;
	inline-size: var(--tt-tap);
	block-size: var(--tt-tap);
	margin: calc(var(--tt-space-3) * -1) 0 var(--tt-space-3) auto;
	overflow: visible;
	clip-path: none;
	border: 1px solid var(--tt-border-control);
	border-radius: 50%;
	background: var(--tt-white);
	color: var(--tt-navy);
	cursor: pointer;
}

.tt-roadshow__pause svg {
	inline-size: 18px;
	block-size: 18px;
	fill: none;
	stroke: currentcolor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (prefers-reduced-motion: no-preference) {
	.tt-roadshow__road {
		animation: tt-road 1.6s linear infinite;
	}

	.tt-roadshow__hills {
		animation: tt-hills 26s linear infinite;
	}

	.tt-coach__wheel {
		transform-box: fill-box;
		transform-origin: center;
		animation: tt-wheel 1.1s linear infinite;
	}

	.tt-coach__ride {
		transform-box: fill-box;
		animation: tt-ride 1.7s ease-in-out infinite;
	}

	@keyframes tt-road {
		to {
			stroke-dashoffset: -60;
		}
	}

	@keyframes tt-hills {
		to {
			transform: translateX(-880px);
		}
	}

	@keyframes tt-wheel {
		to {
			transform: rotate(360deg);
		}
	}

	@keyframes tt-ride {
		0%,
		100% {
			transform: translateY(0);
		}

		50% {
			transform: translateY(-1.5px);
		}
	}
}

.tt-about {
	display: grid;
	gap: var(--tt-space-5);
}

@media (min-width: 1024px) {
	.tt-about {
		grid-template-columns: minmax(0, 1fr) 340px;
		gap: var(--tt-space-6);
		align-items: start;
	}
}

@media (min-width: 1024px) {
	.tt-about__facts .tt-points__list {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--tt-space-3);
	}
}

.tt-about__facts .tt-points {
	margin-top: 0;
}

@media (min-width: 1024px) {
	.tt-about__facts .tt-points__heading {
		font-size: var(--tt-text-lead);
	}
}

.tt-scenery__rock {
	fill: rgb(8 104 215 / 11%);
}

.tt-scenery__village {
	fill: rgb(255 255 255 / 78%);
}

.tt-scenery__domes {
	fill: rgb(8 104 215 / 38%);
}

.tt-plane {
	fill: rgb(11 31 59 / 26%);

	transform: translate(120px, 46px);
}

@media (prefers-reduced-motion: no-preference) {
	.tt-plane {
		animation: tt-fly 34s linear infinite;
	}

	@keyframes tt-fly {
		from {
			transform: translate(-260px, 62px);
		}

		to {
			transform: translate(1140px, 30px);
		}
	}
}

.tt-carousel__nav--quiet {
	gap: 0;
	margin-top: 0;
}

.tt-carousel__nav--quiet .tt-carousel__button {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.tt-carousel__nav--quiet .tt-carousel__button:focus {
	position: static;
	width: 44px;
	height: 44px;
	margin: 0;
	overflow: visible;
	clip-path: none;
	border: 1px solid var(--tt-border-control);
}

.tt-posts {
	display: grid;
	gap: var(--tt-space-3);
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-post-card {

	position: relative;
	display: grid;
	gap: var(--tt-space-2);
	padding: var(--tt-space-2);
	border: 1px solid var(--tt-border);
	border-radius: var(--tt-radius-card);
	background: var(--tt-white);
}

@media (min-width: 640px) {
	.tt-post-card {
		grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
		gap: var(--tt-space-3);
		align-items: center;
	}
}

.tt-post-card__media {
	display: block;
	overflow: hidden;
	border-radius: var(--tt-radius-media);
}

.tt-post-card__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

@media (min-width: 640px) {
	.tt-post-card__body:only-child {
		grid-column: 1 / -1;
	}
}

.tt-post-card__date,
.tt-article__date {
	display: block;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-micro);
	font-weight: 600;

	letter-spacing: 0.01em;
}

.tt-post-card__date {
	margin-bottom: 4px;
}

.tt-post-card__title {
	margin: 0 0 6px;
	font-size: var(--tt-text-lead);
	line-height: 1.3;
	text-wrap: balance;
}

.tt-post-card__title a {
	color: var(--tt-navy);
	text-decoration: none;
}

.tt-post-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.tt-post-card__title a:hover,
.tt-post-card__title a:focus-visible {
	color: var(--tt-blue);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.tt-post-card__excerpt {
	margin: 0;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-body);
	line-height: 1.6;
}

.tt-article,
.tt-article__back,

.tt-container:has( > .tt-article ) > .tt-crumbs {
	max-width: 760px;
	margin-inline: auto;
}

.tt-article__head {
	margin-bottom: var(--tt-space-3);
}

.tt-article__title {
	margin: 6px 0 0;

	text-wrap: balance;
}

.tt-article__lede {
	margin: var(--tt-space-2) 0 0;
	max-width: 56ch;
	color: var(--tt-navy);
	font-size: var(--tt-text-lead);
	line-height: 1.6;
}

.tt-article__cover {
	margin: 0 0 var(--tt-space-3);
}

.tt-article__cover img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--tt-radius-media);
}

.tt-article__cover figcaption {
	margin-top: 8px;
	color: var(--tt-text-muted);
	font-size: var(--tt-text-micro);
}

.tt-article__body > p:first-of-type {
	color: var(--tt-text);
	font-size: var(--tt-text-body);
	line-height: 1.75;
}

.tt-article__back {
	margin-block: var(--tt-space-5) 0;
}
