@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800;900&family=Bebas+Neue&display=swap');

html {
	scroll-behavior: smooth;
}

body.tmr-theme {
	margin: 0;
	background: #fff;
	color: #111;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	clip: auto !important;
	clip-path: none;
	display: block;
	height: auto;
	left: 8px;
	padding: 12px 16px;
	top: 8px;
	width: auto;
	z-index: 100000;
	background: #fff;
	color: #111;
}

.tmr-default-main {
	width: min(100%, 1120px);
	margin: 0 auto;
	padding: 72px 24px;
	font-family: "Sora", sans-serif;
}

.tmr-default-article h1 {
	margin: 0 0 24px;
	font-size: clamp(40px, 7vw, 80px);
	line-height: .95;
}

.tmr-default-content {
	font-size: 18px;
	line-height: 1.7;
}

.tmr-listing-item {
	padding: 28px 0;
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.tmr-listing-item h2 {
	margin: 0 0 8px;
	font-size: clamp(30px, 5vw, 54px);
	line-height: 1;
}

.tmr-listing-item a,
.tmr-single-experience a {
	color: #d94d20;
	text-decoration: none;
}

.tmr-tours-section,
.tmr-tours-section * {
	box-sizing: border-box;
}

.tmr-tours-section {
	width: 100%;
	padding: 110px 34px;
	background: #fff;
	font-family: "Sora", sans-serif;
	color: #151515;
}

.tmr-tours-section--archive {
	padding-top: 92px;
}

.tmr-tours-inner {
	width: min(100%, 1440px);
	margin: 0 auto;
}

.tmr-tours-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 42px;
}

.tmr-tours-eyebrow {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 24px;
	color: #d94d20;
	font-size: 13px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tmr-tours-header h1,
.tmr-tours-header h2 {
	margin: 0;
	color: #111;
	font-family: "Bebas Neue", sans-serif;
	font-size: 96px;
	line-height: .88;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-tours-all-btn {
	height: 58px;
	padding: 0 25px;
	border: 1px solid rgba(17, 17, 17, .34);
	border-radius: 999px;
	color: #151515;
	background: transparent;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	white-space: nowrap;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.tmr-tours-all-btn span {
	color: #d94d20;
	font-size: 22px;
	line-height: 1;
	transition: transform .25s ease, color .25s ease;
}

.tmr-tours-all-btn:hover {
	transform: translateY(-2px);
	background: #111;
	color: #fff;
	border-color: #111;
}

.tmr-tours-all-btn:hover span {
	color: #f26a2e;
	transform: translateX(3px);
}

.tmr-tours-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.tmr-tour-card {
	position: relative;
	min-height: 720px;
	border-radius: 28px;
	overflow: hidden;
	background: #111;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
	isolation: isolate;
	transition: transform .32s ease, box-shadow .32s ease;
}

.tmr-tour-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 70px rgba(0, 0, 0, .16);
}

.tmr-tour-card__link {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: block;
	border-radius: inherit;
	text-decoration: none;
}

.tmr-tour-card__link:focus-visible {
	outline: 3px solid #f26a2e;
	outline-offset: -8px;
}

.tmr-tour-card__image,
.tmr-tour-card__video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	transition: transform .7s ease;
}

.tmr-tour-card:hover .tmr-tour-card__image,
.tmr-tour-card:hover .tmr-tour-card__video {
	transform: scale(1.055);
}

.tmr-tour-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .08) 38%, rgba(0, 0, 0, .82) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, 0));
}

.tmr-tour-card__badges {
	position: absolute;
	top: 31px;
	left: 31px;
	right: 31px;
	z-index: 3;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	pointer-events: none;
}

.tmr-tour-card__tag {
	min-height: 42px;
	padding: 0 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	color: #171717;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

.tmr-card-date {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 999px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 16px 36px rgba(0, 0, 0, .14);
}

.tmr-card-date__icon {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
}

.tmr-card-date__icon svg {
	width: 17px;
	height: 17px;
}

.tmr-card-date__copy {
	display: grid;
	gap: 3px;
}

.tmr-card-date small {
	font-size: 9px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	opacity: .68;
}

.tmr-card-date strong {
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
	letter-spacing: 0;
}

.tmr-card-date--tour {
	min-height: 42px;
	padding: 5px 15px 5px 6px;
	border: 1px solid rgba(255, 255, 255, .24);
	background: rgba(17, 17, 17, .74);
	color: #fff;
	backdrop-filter: blur(14px);
}

.tmr-card-date--tour .tmr-card-date__icon {
	background: #d94d20;
	color: #fff;
}

.tmr-tour-card__tag span {
	color: #d94d20;
	display: inline-flex;
}

.tmr-tour-card__tag svg {
	width: 18px;
	height: 18px;
}

.tmr-tour-card__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 0 28px 28px;
	color: #fff;
}

.tmr-tour-card__content h3 {
	margin: 0 0 22px;
	color: #fff;
	font-family: "Bebas Neue", sans-serif;
	font-size: 54px;
	line-height: .92;
	font-weight: 400;
	letter-spacing: 0;
}

.tmr-tour-card__meta {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 19px;
	color: rgba(255, 255, 255, .92);
}

.tmr-tour-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 600;
}

.tmr-tour-card__meta svg {
	width: 21px;
	height: 21px;
	flex: 0 0 21px;
}

.tmr-tour-card__meta i {
	width: 1px;
	height: 22px;
	background: rgba(255, 255, 255, .35);
	display: inline-block;
}

.tmr-tour-card__content p {
	min-height: 78px;
	margin: 0;
	color: rgba(255, 255, 255, .88);
	font-size: 15px;
	line-height: 1.55;
	font-weight: 500;
}

.tmr-tour-card__footer {
	margin-top: 28px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, .26);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.tmr-tour-price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	color: #fff;
}

.tmr-tour-price small {
	color: rgba(255, 255, 255, .82);
	font-size: 13px;
	line-height: 1;
	font-weight: 500;
}

.tmr-tour-price strong {
	color: #fff;
	font-size: 28px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0;
}

.tmr-tour-arrow {
	position: relative;
	z-index: 5;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 50%;
	background: #fff;
	color: #111;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 32px;
	line-height: 1;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.tmr-tour-arrow:hover {
	transform: translateX(4px);
	background: #f26a2e;
	color: #fff;
}

.tmr-events-section,
.tmr-events-section * {
	box-sizing: border-box;
}

.tmr-events-section {
	width: 100%;
	padding: 92px 34px 120px;
	background: #fff;
	color: #111;
	font-family: "Sora", sans-serif;
}

.tmr-home-events {
	padding-top: 98px;
	padding-bottom: 98px;
}

.tmr-events-inner {
	width: min(100%, 1360px);
	margin: 0 auto;
}

.tmr-events-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 34px;
	align-items: end;
	margin-bottom: 42px;
}

.tmr-events-header h1 {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: 96px;
	line-height: .88;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-events-header p {
	margin: 0 0 8px;
	color: rgba(17, 17, 17, .64);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.72;
}

.tmr-home-events__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
}

.tmr-home-events__intro .tmr-tours-all-btn {
	background: #111;
	color: #fff;
	border-color: #111;
}

.tmr-home-events__intro .tmr-tours-all-btn span {
	color: #f26a2e;
}

.tmr-home-events__intro .tmr-tours-all-btn:hover {
	background: #d94d20;
	border-color: #d94d20;
}

.tmr-events-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.tmr-related-section .tmr-events-grid {
	margin-top: 34px;
}

.tmr-event-card {
	position: relative;
	display: grid;
	grid-template-columns: 42% minmax(0, 1fr);
	min-height: 420px;
	border: 1px solid rgba(17, 17, 17, .1);
	border-radius: 28px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 54px rgba(0, 0, 0, .08);
	transition: transform .28s ease, box-shadow .28s ease;
}

.tmr-event-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 74px rgba(0, 0, 0, .14);
}

.tmr-event-card__link {
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
	text-decoration: none;
}

.tmr-event-card__link:focus-visible {
	outline: 3px solid #f26a2e;
	outline-offset: -8px;
}

.tmr-event-card__media {
	position: relative;
	min-height: 100%;
	background: #111;
	overflow: hidden;
}

.tmr-event-card__media video,
.tmr-event-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .65s ease;
}

.tmr-event-card:hover .tmr-event-card__media video,
.tmr-event-card:hover .tmr-event-card__media img {
	transform: scale(1.055);
}

.tmr-event-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .62));
}

.tmr-event-card__media > span {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 1;
	width: fit-content;
	max-width: calc(100% - 36px);
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	color: #111;
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-event-card__body {
	padding: 30px;
	display: flex;
	flex-direction: column;
}

.tmr-event-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.tmr-event-card__top > strong {
	min-height: 36px;
	padding: 0 13px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
	white-space: nowrap;
}

.tmr-card-date--event {
	min-height: 46px;
	padding: 7px 15px 7px 7px;
	background: #111;
	color: #fff;
}

.tmr-card-date--event .tmr-card-date__icon {
	background: #d94d20;
	color: #fff;
}

.tmr-event-card__top > .tmr-event-card__duration {
	background: rgba(217, 77, 32, .11);
	color: #d94d20;
}

.tmr-event-card h2 {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: 56px;
	line-height: .9;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-event-card p {
	margin: 18px 0 0;
	color: rgba(17, 17, 17, .64);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.65;
}

.tmr-event-card__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: auto;
	padding-top: 24px;
}

.tmr-event-card__meta span {
	min-height: 46px;
	padding: 12px;
	border-radius: 16px;
	background: #f7f4f0;
	color: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.25;
}

.tmr-event-card__actions {
	position: relative;
	z-index: 4;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 10px;
	margin-top: 18px;
}

.tmr-event-card__actions a {
	min-height: 50px;
	border-radius: 999px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.tmr-event-card__actions a:first-child {
	border: 1px solid rgba(17, 17, 17, .18);
	color: #111;
}

.tmr-event-card__actions a:last-child {
	background: #d94d20;
	color: #fff;
}

.tmr-event-card__actions a:hover {
	transform: translateY(-2px);
}

.tmr-event-card__actions span {
	font-size: 20px;
	line-height: 1;
}

.tmr-event-hero,
.tmr-event-hero *,
.tmr-event-main,
.tmr-event-main * {
	box-sizing: border-box;
}

.tmr-event-hero,
.tmr-event-main {
	font-family: "Sora", sans-serif;
}

.tmr-event-hero {
	position: relative;
	width: min(calc(100% - 68px), 1440px);
	min-height: 620px;
	margin: 24px auto 0;
	border-radius: 30px;
	overflow: hidden;
	background: #111;
	isolation: isolate;
	box-shadow: 0 26px 80px rgba(0, 0, 0, .12);
}

.tmr-event-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
	object-position: center;
	display: block;
	background: #111;
}

.tmr-event-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, .02) 0%, rgba(0, 0, 0, .18) 38%, rgba(0, 0, 0, .88) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .14));
}

.tmr-event-hero__content {
	position: absolute;
	left: 50%;
	bottom: 60px;
	z-index: 2;
	width: min(100%, 920px);
	transform: translateX(-50%);
	text-align: center;
	color: #fff;
	padding: 0 24px;
}

.tmr-event-hero__tag {
	display: inline-flex;
	margin-bottom: 18px;
	padding: 9px 15px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	color: #111;
	font-size: 11px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tmr-event-hero h1 {
	margin: 0;
	font-size: 96px;
	line-height: .88;
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tmr-event-hero p {
	max-width: 720px;
	margin: 22px auto 0;
	color: rgba(255, 255, 255, .86);
	font-size: 17px;
	line-height: 1.6;
	font-weight: 500;
}

.tmr-event-main {
	width: 100%;
	padding: 88px 34px 120px;
	background: #fff;
	color: #151515;
}

.tmr-event-layout,
.tmr-related-section {
	width: min(100%, 1440px);
	margin: 0 auto;
}

.tmr-event-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 58px;
	align-items: start;
}

.tmr-event-content {
	min-width: 0;
}

.tmr-event-section {
	margin-bottom: 84px;
}

.tmr-event-section:last-child {
	margin-bottom: 0;
}

.tmr-section-eyebrow {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 22px;
	color: #d94d20;
	font-size: 12px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tmr-event-section h2,
.tmr-related-header h2 {
	margin: 0;
	color: #111;
	font-family: "Bebas Neue", sans-serif;
	font-size: 76px;
	line-height: .9;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-event-richtext {
	max-width: 860px;
}

.tmr-event-richtext p,
.tmr-event-section > p {
	margin: 24px 0 0;
	color: rgba(17, 17, 17, .72);
	font-size: 16px;
	line-height: 1.78;
	font-weight: 500;
}

.tmr-event-image-card {
	margin-top: 38px;
	border-radius: 30px;
	overflow: hidden;
	background: #111;
	aspect-ratio: 16 / 8.4;
	box-shadow: 0 22px 60px rgba(0, 0, 0, .09);
}

.tmr-event-image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s ease;
}

.tmr-event-image-card:hover img {
	transform: scale(1.035);
}

.tmr-event-alert {
	margin-top: 24px;
	padding: 18px 22px;
	border-radius: 18px;
	background: rgba(217, 77, 32, .1);
	border: 1px solid rgba(217, 77, 32, .2);
	color: #943514;
	font-size: 14px;
	line-height: 1.48;
	font-weight: 700;
}

.tmr-why-grid,
.tmr-covered-grid,
.tmr-related-grid {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.tmr-why-item,
.tmr-covered-card,
.tmr-related-card,
.tmr-help-card,
.tmr-itinerary-item {
	background: #fff;
	border: 1px solid rgba(17, 17, 17, .08);
	box-shadow: 0 14px 40px rgba(0, 0, 0, .035);
}

.tmr-why-item {
	padding: 30px;
	border-radius: 26px;
	transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.tmr-why-item:hover,
.tmr-related-card:hover {
	transform: translateY(-5px);
	border-color: rgba(217, 77, 32, .25);
	box-shadow: 0 22px 58px rgba(0, 0, 0, .08);
}

.tmr-why-item span,
.tmr-related-card span {
	color: #d94d20;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tmr-why-item h3,
.tmr-related-card h3 {
	margin: 16px 0 10px;
	color: #111;
	font-size: 23px;
	line-height: 1.12;
	font-weight: 900;
	letter-spacing: 0;
}

.tmr-why-item p,
.tmr-related-card p {
	margin: 0;
	color: rgba(17, 17, 17, .64);
	font-size: 14px;
	line-height: 1.6;
	font-weight: 600;
}

.tmr-itinerary {
	margin-top: 34px;
	display: grid;
	gap: 14px;
}

.tmr-itinerary-item {
	border-radius: 20px;
	overflow: hidden;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.tmr-itinerary-item:hover {
	border-color: rgba(217, 77, 32, .22);
}

.tmr-itinerary-item button {
	width: 100%;
	padding: 21px 23px;
	border: 0;
	background: transparent;
	color: #111;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}

.tmr-itinerary-item button strong {
	font-size: 15px;
	font-weight: 900;
}

.tmr-itinerary-item button span {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .25s ease, background .25s ease;
}

.tmr-itinerary-item.is-active {
	background: #fff7d8;
	border-color: rgba(217, 77, 32, .24);
	box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
}

.tmr-itinerary-item.is-active button span {
	background: #d94d20;
	transform: rotate(45deg);
}

.tmr-itinerary-content {
	display: none;
	padding: 0 23px 23px;
}

.tmr-itinerary-content p {
	margin: 0;
	color: rgba(17, 17, 17, .68);
	font-size: 14px;
	line-height: 1.65;
	font-weight: 600;
}

.tmr-itinerary-item.is-active .tmr-itinerary-content {
	display: block;
}

.tmr-covered-card {
	padding: 32px;
	border-radius: 28px;
}

.tmr-covered-card--dark {
	background: #111;
	color: #fff;
	border-color: #111;
	box-shadow: 0 22px 60px rgba(0, 0, 0, .14);
}

.tmr-covered-card h3 {
	margin: 0 0 20px;
	font-size: 23px;
	line-height: 1;
	font-weight: 900;
}

.tmr-covered-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 13px;
}

.tmr-covered-card li {
	position: relative;
	padding-left: 25px;
	color: rgba(17, 17, 17, .72);
	font-size: 14px;
	line-height: 1.45;
	font-weight: 600;
}

.tmr-covered-card--dark li {
	color: rgba(255, 255, 255, .78);
}

.tmr-covered-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #d94d20;
	font-weight: 900;
}

.tmr-covered-card--dark li::before {
	content: "×";
	color: #f26a2e;
}

.tmr-event-gallery {
	margin: 28px 0 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.tmr-event-gallery img {
	width: 100%;
	height: 370px;
	border-radius: 26px;
	object-fit: cover;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
	transition: transform .3s ease, box-shadow .3s ease;
}

.tmr-event-gallery img:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 70px rgba(0, 0, 0, .14);
}

.tmr-event-sidebar {
	position: sticky;
	top: 26px;
	display: grid;
	gap: 18px;
}

.tmr-booking-card {
	border-radius: 30px;
	overflow: hidden;
	background: #111;
	color: #fff;
	box-shadow: 0 28px 80px rgba(0, 0, 0, .16);
}

.tmr-booking-label {
	display: block;
	padding: 32px 32px 0;
	color: rgba(255, 255, 255, .7);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tmr-booking-price {
	padding: 9px 32px 32px;
	font-size: 50px;
	line-height: .9;
	font-weight: 900;
	letter-spacing: 0;
}

.tmr-booking-price small {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, .68);
}

.tmr-booking-details {
	padding: 28px 32px;
	background: #fff;
	color: #111;
	display: grid;
	gap: 16px;
}

.tmr-booking-details div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.tmr-booking-details div:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.tmr-booking-details span {
	color: rgba(17, 17, 17, .54);
	font-size: 12px;
	font-weight: 800;
}

.tmr-booking-details strong {
	max-width: 182px;
	color: #111;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 900;
	text-align: right;
}

.tmr-booking-btn {
	height: 64px;
	margin: 24px;
	padding: 0 9px 0 25px;
	border-radius: 999px;
	background: #d94d20;
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	box-shadow: 0 16px 34px rgba(217, 77, 32, .28);
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.tmr-booking-btn:hover {
	background: #f26a2e;
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(242, 106, 46, .36);
}

.tmr-booking-btn span {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #fff;
	color: #111;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	transition: transform .25s ease;
}

.tmr-booking-btn:hover span {
	transform: translateX(3px);
}

.tmr-help-card {
	padding: 24px;
	border-radius: 26px;
	text-align: center;
}

.tmr-help-card p {
	margin: 0 0 14px;
	color: rgba(17, 17, 17, .62);
	font-size: 13px;
	font-weight: 700;
}

.tmr-help-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.tmr-help-actions a {
	height: 44px;
	border-radius: 999px;
	background: #fff;
	color: #111;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 900;
	border: 1px solid rgba(17, 17, 17, .08);
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.tmr-help-actions a:hover {
	transform: translateY(-2px);
	background: #111;
	color: #fff;
}

.tmr-help-actions a:first-child {
	background: #25d366;
	color: #fff;
	border-color: #25d366;
}

.tmr-help-actions a:first-child:hover {
	background: #1fbd5b;
}

.tmr-related-section {
	padding-top: 120px;
}

.tmr-related-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 28px;
	margin-bottom: 38px;
}

.tmr-small-btn {
	height: 56px;
	padding: 0 9px 0 22px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 900;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	white-space: nowrap;
	transition: background .25s ease, transform .25s ease;
}

.tmr-small-btn:hover {
	background: #d94d20;
	transform: translateY(-2px);
}

.tmr-small-btn span {
	width: 38px;
	height: 38px;
	background: #fff;
	color: #111;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	transition: transform .25s ease;
}

.tmr-small-btn:hover span {
	transform: translateX(3px);
}

.tmr-related-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.tmr-related-card {
	border-radius: 28px;
	overflow: hidden;
	transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.tmr-related-card a {
	color: inherit;
	text-decoration: none;
}

.tmr-related-card img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
	transition: transform .55s ease;
}

.tmr-related-card:hover img {
	transform: scale(1.045);
}

.tmr-related-card div {
	padding: 26px;
}

.tmr-related-card strong {
	color: #111;
	font-size: 23px;
	line-height: 1;
	font-weight: 900;
}

.tmr-related-card small {
	color: rgba(17, 17, 17, .58);
	font-size: 12px;
}

.tmr-reservation-page,
.tmr-reservation-page * {
	box-sizing: border-box;
}

.tmr-reservation-page {
	background: #fff;
	color: #111;
	font-family: "Sora", sans-serif;
	padding: 84px 34px 120px;
}

.tmr-reservation-hero,
.tmr-reservation-shell {
	width: min(100%, 1320px);
	margin: 0 auto;
}

.tmr-reservation-hero {
	margin-bottom: 42px;
}

.tmr-reservation-hero h1 {
	max-width: 920px;
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: 96px;
	line-height: .88;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-reservation-hero p {
	max-width: 760px;
	margin: 24px 0 0;
	color: rgba(17, 17, 17, .66);
	font-size: 17px;
	line-height: 1.75;
	font-weight: 600;
}

.tmr-reservation-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 28px;
	align-items: start;
}

.tmr-reservation-form-card,
.tmr-payment-card {
	border: 1px solid rgba(17, 17, 17, .1);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 22px 70px rgba(0, 0, 0, .07);
}

.tmr-reservation-form-card {
	padding: 34px;
}

.tmr-reservation-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.tmr-field {
	display: grid;
	gap: 9px;
}

.tmr-field--wide {
	grid-column: 1 / -1;
}

.tmr-field span {
	color: #111;
	font-size: 12px;
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-field input,
.tmr-field select,
.tmr-field textarea {
	width: 100%;
	border: 1px solid rgba(17, 17, 17, .14);
	border-radius: 18px;
	background: #f7f4f0;
	color: #111;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	outline: none;
	transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.tmr-field input,
.tmr-field select {
	height: 58px;
	padding: 0 18px;
}

.tmr-field textarea {
	min-height: 142px;
	padding: 18px;
	resize: vertical;
}

.tmr-field input[type="file"] {
	height: auto;
	padding: 17px;
	background: #fff;
}

.tmr-field input:focus,
.tmr-field select:focus,
.tmr-field textarea:focus {
	border-color: #d94d20;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(217, 77, 32, .12);
}

.tmr-field small {
	color: rgba(17, 17, 17, .52);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.tmr-reservation-submit {
	grid-column: 1 / -1;
	height: 64px;
	border: 0;
	border-radius: 999px;
	background: #d94d20;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
	transition: background .25s ease, transform .25s ease;
}

.tmr-reservation-submit:hover {
	background: #111;
	transform: translateY(-2px);
}

.tmr-reservation-submit span {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	color: #111;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.tmr-form-notice {
	margin-bottom: 22px;
	padding: 16px 18px;
	border-radius: 18px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.tmr-form-notice strong {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.tmr-form-notice--success {
	background: rgba(39, 143, 82, .1);
	color: #176538;
}

.tmr-form-notice--error {
	background: rgba(217, 77, 32, .12);
	color: #9f3416;
}

.tmr-payment-card {
	position: sticky;
	top: 28px;
	padding: 30px;
	background: #111;
	color: #fff;
	overflow: hidden;
}

.tmr-payment-kicker {
	color: #f26a2e;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-payment-card h2 {
	margin: 16px 0 14px;
	font-family: "Bebas Neue", sans-serif;
	font-size: 58px;
	line-height: .92;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-payment-card p {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, .72);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.75;
}

.tmr-bank-box {
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 22px;
	overflow: hidden;
}

.tmr-bank-box div {
	padding: 17px 18px;
	display: grid;
	gap: 7px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.tmr-bank-box div:last-child {
	border-bottom: 0;
}

.tmr-bank-box span {
	color: rgba(255, 255, 255, .52);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.tmr-bank-box strong {
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.35;
}

.tmr-payment-steps {
	margin-top: 24px;
	display: grid;
	gap: 12px;
}

.tmr-payment-steps div {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 12px;
	align-items: center;
}

.tmr-payment-steps b {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #d94d20;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 900;
}

.tmr-payment-steps span {
	color: rgba(255, 255, 255, .78);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.45;
}

.tmr-founder-section,
.tmr-story-page,
.tmr-gallery-page,
.tmr-news-page,
.tmr-founder-section *,
.tmr-story-page *,
.tmr-gallery-page *,
.tmr-news-page * {
	box-sizing: border-box;
}

.tmr-founder-section,
.tmr-story-page,
.tmr-gallery-page,
.tmr-news-page {
	background: #fff;
	color: #111;
	font-family: "Sora", sans-serif;
}

.tmr-founder-section {
	padding: 92px 34px;
}

.tmr-founder-inner {
	width: min(100%, 1360px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 34px;
	align-items: stretch;
}

.tmr-founder-copy {
	padding: 54px;
	border-radius: 30px;
	background: #f7f4f0;
	border: 1px solid rgba(17, 17, 17, .08);
}

.tmr-founder-copy h2 {
	max-width: 840px;
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: 86px;
	line-height: .9;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-founder-copy p {
	max-width: 830px;
	margin: 22px 0 0;
	color: rgba(17, 17, 17, .68);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.78;
}

.tmr-founder-copy .tmr-founder-lead {
	color: #111;
	font-size: 20px;
	line-height: 1.55;
	font-weight: 800;
}

.tmr-founder-link {
	width: fit-content;
	height: 58px;
	margin-top: 30px;
	padding: 0 9px 0 24px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
	transition: background .25s ease, transform .25s ease;
}

.tmr-founder-link:hover {
	background: #d94d20;
	transform: translateY(-2px);
}

.tmr-founder-link span {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	color: #111;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.tmr-founder-card {
	position: relative;
	min-height: 560px;
	border-radius: 30px;
	overflow: hidden;
	background: #111;
	display: flex;
	align-items: flex-end;
	padding: 24px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

.tmr-founder-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	image-rendering: auto;
	transform: scale(1.18);
	filter: saturate(1.04) contrast(1.03);
}

.tmr-founder-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .22) 48%, rgba(0, 0, 0, .82) 100%);
}

.tmr-founder-card div {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 20px;
	border-radius: 22px;
	background: rgba(0, 0, 0, .42);
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(16px);
}

.tmr-founder-card strong {
	display: block;
	color: #fff;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
}

.tmr-founder-card span {
	display: block;
	margin-top: 10px;
	color: rgba(255, 255, 255, .76);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-page-hero,
.tmr-simple-hero,
.tmr-story-grid,
.tmr-values-band,
.tmr-gallery-mosaic,
.tmr-news-feature,
.tmr-news-grid {
	width: min(100%, 1360px);
	margin-left: auto;
	margin-right: auto;
}

.tmr-page-hero {
	position: relative;
	min-height: 680px;
	margin-top: 24px;
	border-radius: 34px;
	overflow: hidden;
	background: #111;
	display: flex;
	align-items: flex-end;
	padding: 64px;
}

.tmr-page-hero video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tmr-page-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .16)),
		linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .7));
}

.tmr-page-hero__content {
	position: relative;
	z-index: 1;
	max-width: 880px;
	color: #fff;
}

.tmr-page-hero__content span {
	display: inline-flex;
	margin-bottom: 22px;
	color: #f26a2e;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.tmr-page-hero__content h1,
.tmr-simple-hero h1 {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: 96px;
	line-height: .88;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-page-hero__content p,
.tmr-simple-hero p {
	max-width: 720px;
	margin: 24px 0 0;
	font-size: 18px;
	font-weight: 650;
	line-height: 1.72;
}

.tmr-story-page,
.tmr-gallery-page,
.tmr-news-page {
	padding: 0 34px 120px;
}

.tmr-story-grid {
	padding-top: 92px;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 34px;
	align-items: stretch;
}

.tmr-story-copy {
	padding: 48px;
	border-radius: 30px;
	background: #f7f4f0;
	border: 1px solid rgba(17, 17, 17, .08);
}

.tmr-story-copy h2,
.tmr-news-feature h2,
.tmr-news-empty h2 {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	font-size: 72px;
	line-height: .9;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-story-copy p,
.tmr-news-feature p,
.tmr-news-empty p {
	margin: 22px 0 0;
	color: rgba(17, 17, 17, .68);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.78;
}

.tmr-story-video,
.tmr-news-feature video {
	min-height: 520px;
	border-radius: 30px;
	overflow: hidden;
	background: #111;
}

.tmr-story-video video,
.tmr-news-feature video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tmr-values-band {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.tmr-values-band div,
.tmr-news-card,
.tmr-news-empty {
	border: 1px solid rgba(17, 17, 17, .09);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
}

.tmr-values-band div {
	padding: 30px;
}

.tmr-values-band strong {
	color: #d94d20;
	font-size: 13px;
	font-weight: 900;
}

.tmr-values-band h3 {
	margin: 20px 0 12px;
	font-size: 22px;
	font-weight: 900;
}

.tmr-values-band p {
	margin: 0;
	color: rgba(17, 17, 17, .64);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.65;
}

.tmr-simple-hero {
	padding: 92px 0 42px;
}

.tmr-simple-hero h1 {
	max-width: 960px;
	color: #111;
}

.tmr-simple-hero p {
	color: rgba(17, 17, 17, .66);
}

.tmr-gallery-mosaic {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 320px;
	gap: 18px;
}

.tmr-gallery-tile {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	background: #111;
	box-shadow: 0 18px 54px rgba(0, 0, 0, .12);
}

.tmr-gallery-tile--large {
	grid-column: span 2;
	grid-row: span 2;
}

.tmr-gallery-tile video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .65s ease;
}

.tmr-gallery-tile:hover video {
	transform: scale(1.05);
}

.tmr-gallery-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .72));
}

.tmr-gallery-tile div {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 1;
	color: #fff;
}

.tmr-gallery-tile span,
.tmr-news-feature span,
.tmr-news-card span,
.tmr-news-empty span {
	display: block;
	color: #f26a2e;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.tmr-gallery-tile h2 {
	margin: 10px 0 0;
	color: #fff;
	font-family: "Bebas Neue", sans-serif;
	font-size: 42px;
	line-height: .92;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
}

.tmr-news-feature {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 24px;
	align-items: stretch;
	margin-bottom: 28px;
}

.tmr-news-feature > div {
	padding: 42px;
	border-radius: 28px;
	background: #111;
	color: #fff;
}

.tmr-news-feature p {
	color: rgba(255, 255, 255, .72);
}

.tmr-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.tmr-news-card {
	overflow: hidden;
}

.tmr-news-card a {
	color: inherit;
	text-decoration: none;
	display: block;
}

.tmr-news-card img,
.tmr-news-card__placeholder {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #111;
	color: #f26a2e;
	font-size: 54px;
	font-weight: 900;
}

.tmr-news-card div {
	padding: 24px;
}

.tmr-news-card h2 {
	margin: 12px 0;
	font-size: 24px;
	line-height: 1.08;
	font-weight: 900;
}

.tmr-news-card p {
	margin: 0;
	color: rgba(17, 17, 17, .62);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.6;
}

.tmr-news-empty {
	grid-column: 1 / -1;
	padding: 42px;
}

@media (max-width: 1100px) {
	.tmr-tour-card {
		min-height: 650px;
	}

	.tmr-tour-card__content {
		padding: 0 24px 24px;
	}

	.tmr-tour-card__content h3 {
		font-size: 46px;
	}

	.tmr-tour-card__meta {
		gap: 11px;
	}

	.tmr-tour-card__meta span {
		font-size: 13px;
	}

	.tmr-tour-price strong {
		font-size: 25px;
	}

	.tmr-event-main {
		padding-top: 70px;
	}

	.tmr-event-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.tmr-event-sidebar {
		position: static;
		grid-row: 1;
	}

	.tmr-booking-card {
		display: grid;
		grid-template-columns: 1fr 1.35fr;
	}

	.tmr-booking-btn {
		grid-column: 1 / -1;
	}

	.tmr-help-card {
		display: none;
	}

	.tmr-reservation-shell {
		grid-template-columns: 1fr;
	}

	.tmr-payment-card {
		position: static;
	}

	.tmr-founder-inner,
	.tmr-story-grid,
	.tmr-news-feature {
		grid-template-columns: 1fr;
	}

	.tmr-founder-card,
	.tmr-story-video,
	.tmr-news-feature video {
		min-height: 460px;
	}

	.tmr-gallery-mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tmr-news-grid,
	.tmr-values-band {
		grid-template-columns: 1fr;
	}

	.tmr-events-header,
	.tmr-events-grid {
		grid-template-columns: 1fr;
	}

	.tmr-event-card {
		grid-template-columns: 38% minmax(0, 1fr);
	}
}

@media (max-width: 820px) {
	.tmr-tours-section {
		padding: 86px 24px;
	}

	.tmr-tours-header {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 34px;
	}

	.tmr-tours-grid {
		grid-template-columns: 1fr;
	}

	.tmr-tour-card {
		min-height: 620px;
	}

	.tmr-tour-card__content h3 {
		font-size: 56px;
	}

	.tmr-tour-card__content p {
		min-height: auto;
	}

	.tmr-event-hero {
		width: calc(100% - 28px);
		min-height: 520px;
		margin: 14px auto 0;
		border-radius: 26px;
	}

	.tmr-event-hero__content {
		bottom: 42px;
	}

	.tmr-event-hero h1 {
		font-size: 72px;
	}

	.tmr-event-main {
		padding: 62px 18px 90px;
	}

	.tmr-booking-card {
		display: block;
	}

	.tmr-why-grid,
	.tmr-covered-grid,
	.tmr-event-gallery,
	.tmr-related-grid {
		grid-template-columns: 1fr;
	}

	.tmr-event-gallery img,
	.tmr-related-card img {
		height: 320px;
	}

	.tmr-related-section {
		padding-top: 90px;
	}

	.tmr-related-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.tmr-small-btn {
		width: 100%;
		justify-content: space-between;
	}

	.tmr-reservation-page {
		padding: 70px 22px 92px;
	}

	.tmr-reservation-hero h1 {
		font-size: 74px;
	}

	.tmr-reservation-form {
		grid-template-columns: 1fr;
	}

	.tmr-payment-card {
		order: -1;
	}

	.tmr-founder-section,
	.tmr-story-page,
	.tmr-gallery-page,
	.tmr-news-page {
		padding-left: 22px;
		padding-right: 22px;
	}

	.tmr-founder-copy,
	.tmr-story-copy,
	.tmr-news-feature > div {
		padding: 32px;
	}

	.tmr-founder-copy h2,
	.tmr-page-hero__content h1,
	.tmr-simple-hero h1 {
		font-size: 72px;
	}

	.tmr-page-hero {
		min-height: 560px;
		padding: 40px;
	}

	.tmr-gallery-mosaic {
		grid-auto-rows: 280px;
	}

	.tmr-events-section {
		padding: 86px 24px;
	}

	.tmr-events-header {
		margin-bottom: 34px;
	}

	.tmr-events-header h1 {
		font-size: 74px;
	}

	.tmr-event-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.tmr-event-card__media {
		min-height: 330px;
	}
}

@media (max-width: 560px) {
	.tmr-tours-section {
		padding: 64px 18px;
	}

	.tmr-tours-eyebrow {
		margin-bottom: 18px;
		font-size: 11px;
	}

	.tmr-tours-header h1,
	.tmr-tours-header h2 {
		font-size: 64px;
	}

	.tmr-tours-all-btn {
		width: 100%;
		height: 54px;
		justify-content: space-between;
		padding: 0 20px;
		font-size: 12px;
	}

	.tmr-tours-grid {
		gap: 18px;
	}

	.tmr-tour-card {
		min-height: 590px;
		border-radius: 24px;
	}

	.tmr-tour-card__badges {
		top: 20px;
		left: 20px;
		right: 20px;
	}

	.tmr-tour-card__tag {
		min-height: 38px;
		padding: 0 14px;
		font-size: 11px;
	}

	.tmr-card-date--tour {
		min-height: 38px;
		padding-right: 12px;
	}

	.tmr-card-date--tour .tmr-card-date__icon {
		width: 28px;
		height: 28px;
		flex-basis: 28px;
	}

	.tmr-card-date strong {
		font-size: 11px;
	}

	.tmr-tour-card__content {
		padding: 0 20px 20px;
	}

	.tmr-tour-card__content h3 {
		margin-bottom: 18px;
		font-size: 43px;
	}

	.tmr-tour-card__meta {
		gap: 11px;
		margin-bottom: 16px;
	}

	.tmr-tour-card__meta span {
		font-size: 12px;
	}

	.tmr-tour-card__meta svg {
		width: 18px;
		height: 18px;
		flex-basis: 18px;
	}

	.tmr-tour-card__meta i {
		display: none;
	}

	.tmr-tour-card__content p {
		font-size: 14px;
		line-height: 1.55;
	}

	.tmr-tour-card__footer {
		margin-top: 22px;
		padding-top: 21px;
	}

	.tmr-tour-price {
		gap: 6px;
	}

	.tmr-tour-price small {
		font-size: 12px;
	}

	.tmr-tour-price strong {
		font-size: 24px;
	}

	.tmr-tour-arrow {
		width: 46px;
		height: 46px;
		flex-basis: 46px;
		font-size: 28px;
	}

	.tmr-event-hero {
		min-height: 460px;
	}

	.tmr-event-hero h1 {
		font-size: 58px;
	}

	.tmr-event-hero p {
		font-size: 14px;
	}

	.tmr-event-section {
		margin-bottom: 64px;
	}

	.tmr-event-section h2,
	.tmr-related-header h2 {
		font-size: 49px;
	}

	.tmr-section-eyebrow {
		font-size: 11px;
	}

	.tmr-event-richtext p,
	.tmr-event-section > p {
		font-size: 14px;
		line-height: 1.7;
	}

	.tmr-event-image-card {
		aspect-ratio: 4 / 3.4;
		border-radius: 24px;
	}

	.tmr-why-item,
	.tmr-covered-card {
		padding: 22px;
		border-radius: 24px;
	}

	.tmr-booking-price {
		font-size: 40px;
	}

	.tmr-booking-details div {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.tmr-booking-details strong {
		text-align: left;
		max-width: none;
	}

	.tmr-related-card img {
		height: 280px;
	}

	.tmr-reservation-page {
		padding: 58px 16px 78px;
	}

	.tmr-reservation-hero {
		margin-bottom: 28px;
	}

	.tmr-reservation-hero h1 {
		font-size: 54px;
	}

	.tmr-reservation-hero p {
		font-size: 14px;
		line-height: 1.65;
	}

	.tmr-reservation-form-card,
	.tmr-payment-card {
		border-radius: 22px;
		padding: 22px;
	}

	.tmr-field input,
	.tmr-field select {
		height: 54px;
	}

	.tmr-payment-card h2 {
		font-size: 45px;
	}

	.tmr-reservation-submit {
		height: 58px;
		font-size: 12px;
	}

	.tmr-founder-section {
		padding: 64px 16px;
	}

	.tmr-founder-copy,
	.tmr-story-copy,
	.tmr-news-feature > div,
	.tmr-news-empty {
		padding: 24px;
		border-radius: 24px;
	}

	.tmr-founder-copy h2,
	.tmr-page-hero__content h1,
	.tmr-simple-hero h1 {
		font-size: 52px;
	}

	.tmr-founder-copy .tmr-founder-lead,
	.tmr-page-hero__content p,
	.tmr-simple-hero p {
		font-size: 15px;
		line-height: 1.65;
	}

	.tmr-founder-card {
		min-height: 420px;
		border-radius: 24px;
	}

	.tmr-page-hero {
		min-height: 500px;
		margin-top: 14px;
		padding: 28px;
		border-radius: 24px;
	}

	.tmr-story-page,
	.tmr-gallery-page,
	.tmr-news-page {
		padding: 0 16px 78px;
	}

	.tmr-story-grid {
		padding-top: 54px;
	}

	.tmr-story-copy h2,
	.tmr-news-feature h2,
	.tmr-news-empty h2 {
		font-size: 48px;
	}

	.tmr-story-video,
	.tmr-news-feature video {
		min-height: 380px;
		border-radius: 24px;
	}

	.tmr-simple-hero {
		padding: 64px 0 30px;
	}

	.tmr-gallery-mosaic {
		grid-template-columns: 1fr;
		grid-auto-rows: 360px;
	}

	.tmr-gallery-tile--large {
		grid-column: auto;
		grid-row: auto;
	}

	.tmr-news-feature {
		gap: 18px;
	}

	.tmr-news-card img,
	.tmr-news-card__placeholder {
		height: 220px;
	}

	.tmr-events-section {
		padding: 64px 16px 78px;
	}

	.tmr-events-header h1 {
		font-size: 56px;
	}

	.tmr-events-header p {
		font-size: 14px;
	}

	.tmr-event-card {
		border-radius: 24px;
	}

	.tmr-event-card__media {
		min-height: 290px;
	}

	.tmr-event-card__body {
		padding: 22px;
	}

	.tmr-event-card__top {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		margin-bottom: 18px;
	}

	.tmr-card-date--event,
	.tmr-event-card__top > .tmr-event-card__duration {
		width: 100%;
		justify-content: flex-start;
	}

	.tmr-event-card h2 {
		font-size: 45px;
	}

	.tmr-event-card__meta,
	.tmr-event-card__actions {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 390px) {
	.tmr-tour-card {
		min-height: 560px;
	}

	.tmr-tour-card__content h3 {
		font-size: 38px;
	}

	.tmr-tour-card__footer {
		align-items: flex-end;
	}
}
