:root {
	--forest: #173d33;
	--deep: #0e2a25;
	--sand: #eee4d3;
	--paper: #fffdf8;
	--rust: #b6643b;
	--gold: #d2b56f;
	--ink: #1c2824;
	--muted: #68756f;
	--line: rgba(23, 61, 51, .14);
	--shadow: 0 24px 60px rgba(14, 42, 37, .16);
	--max: 1180px
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	background: var(--sand);
	color: var(--ink);
	line-height: 1.65
}

img {
	display: block;
	width: 100%;
	object-fit: cover
}

a {
	color: inherit
}

.container {
	width: min(calc(100% - 40px), var(--max));
	margin: auto
}

h1,
h2,
h3 {
	font-family: Georgia, serif
}

.topbar {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	background: rgba(238, 228, 211, .94);
	backdrop-filter: blur(14px);
	box-shadow: 0 8px 25px rgba(14, 42, 37, .1)
}

.nav {
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px
}

.brand {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--forest)
}

.mark {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--forest);
	color: #fff;
	font-family: Georgia;
	font-size: 1.5rem
}

.brand strong {
	display: block;
	letter-spacing: .15em;
	font-size: .87rem
}

.brand small {
	display: block;
	color: var(--muted)
}

.menu {
	display: flex;
	gap: 20px;
	align-items: center
}

.menu a {
	text-decoration: none;
	font-weight: 750;
	font-size: .9rem
}

.menu .cta {
	background: var(--forest);
	color: white;
	padding: 10px 15px;
	border-radius: 999px
}

.hamb {
	display: none;
	border: 1px solid var(--line);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	font-size: 1.25rem
}

.hero {
	min-height: 820px;
	position: relative;
	display: grid;
	align-items: end;
	color: #fff;
	overflow: hidden
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(90deg, rgba(8, 29, 24, .89), rgba(8, 29, 24, .52) 55%, rgba(8, 29, 24, .12)), url('/assets/images/hero.jpg');
	background-size: cover;
	background-position: center
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.08fr .72fr;
	gap: 55px;
	align-items: end;
	padding: 145px 0 75px
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: .17em;
	font-weight: 850;
	font-size: .73rem;
	color: var(--gold)
}

h1 {
	font-size: clamp(3.4rem, 7vw, 6.7rem);
	line-height: .92;
	letter-spacing: -.05em;
	margin: 14px 0 24px
}

.lead {
	font-size: 1.18rem;
	color: rgba(255, 255, 255, .84);
	max-width: 670px
}

.actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 26px
}

.btn {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 850
}

.btn.primary {
	background: var(--rust);
	color: #fff
}

.btn.light {
	background: #fff;
	color: var(--forest)
}

.proof {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 25px;
	color: rgba(255, 255, 255, .78);
	font-size: .86rem
}

.proof span:before {
	content: '•';
	color: var(--gold);
	margin-right: 8px
}

.video-card {
	background: rgba(255, 255, 255, .11);
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 30px;
	overflow: hidden;
	box-shadow: var(--shadow)
}

.video-card iframe {
	width: 100%;
	aspect-ratio: 16/9;
	border: 0;
	display: block
}

.video-copy {
	padding: 21px
}

.video-copy h3 {
	font-size: 1.8rem;
	margin: 4px 0
}

.video-copy p {
	margin: 0;
	color: rgba(255, 255, 255, .72)
}

.quick {
	background: white;
	border-bottom: 1px solid var(--line)
}

.quick-grid {
	display: grid;
	grid-template-columns: 1.15fr repeat(4, 1fr)
}

.quick div,
.quick a {
	padding: 22px 19px;
	border-right: 1px solid var(--line);
	text-decoration: none
}

.quick .intro {
	background: var(--forest);
	color: #fff
}

.quick b {
	display: block
}

.quick small {
	display: block;
	color: var(--muted);
	margin-top: 3px
}

.quick .intro small {
	color: rgba(255, 255, 255, .65)
}

section {
	padding: 82px 0
}

.head {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 35px;
	align-items: end;
	margin-bottom: 34px
}

.head h2 {
	font-size: clamp(2.5rem, 4.7vw, 4.7rem);
	line-height: .98;
	letter-spacing: -.04em;
	margin: 6px 0 0
}

.head p {
	color: var(--muted);
	font-size: 1.05rem;
	margin: 0
}

.planner {
	background: var(--forest);
	color: #fff;
	border-radius: 34px;
	padding: 38px;
	box-shadow: var(--shadow)
}

.planner h2 {
	font-size: 2.7rem;
	margin: 0
}

.tabs {
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
	margin: 24px 0
}

.tab {
	border: 1px solid rgba(255, 255, 255, .2);
	background: rgba(255, 255, 255, .08);
	color: #fff;
	border-radius: 999px;
	padding: 10px 15px;
	cursor: pointer
}

.tab.active {
	background: #fff;
	color: var(--forest)
}

.plan {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 18px
}

.plan-img {
	min-height: 360px;
	border-radius: 24px;
	background-size: cover;
	background-position: center
}

.plan-copy {
	padding: 28px;
	background: rgba(255, 255, 255, .09);
	border-radius: 24px
}

.plan-copy h3 {
	font-size: 2.1rem;
	margin: 8px 0
}

.stops {
	display: grid;
	gap: 10px;
	margin-top: 17px
}

.stop {
	padding: 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .08)
}

.stop b {
	display: block
}

.stop small {
	color: rgba(255, 255, 255, .68)
}

.mosaic {
	display: grid;
	grid-template-columns: 1.15fr .85fr .85fr;
	grid-template-rows: 300px 255px;
	gap: 16px
}

.tile {
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: var(--shadow);
	color: #fff;
	text-decoration: none;
	min-height: 240px
}

.tile.large {
	grid-row: 1/3
}

.tile.wide {
	grid-column: 2/4
}

.tile img {
	height: 100%
}

.tile:after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(7, 27, 23, .88))
}

.tile div {
	position: absolute;
	z-index: 2;
	left: 22px;
	bottom: 18px
}

.tile h3 {
	font-size: 1.75rem;
	margin: 3px 0
}

.tile.large h3 {
	font-size: 2.5rem
}

.dark {
	background: var(--deep);
	color: #fff
}

.dark .head p {
	color: rgba(255, 255, 255, .7)
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 25px;
	overflow: hidden;
	box-shadow: var(--shadow)
}

.card img {
	height: 230px
}

.card .copy {
	padding: 24px
}

.tag {
	display: inline-flex;
	border-radius: 999px;
	background: #e7eee9;
	color: var(--forest);
	padding: 7px 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .7rem;
	font-weight: 850
}

.card h3 {
	font-size: 1.6rem;
	margin: 12px 0 8px
}

.card p {
	color: var(--muted)
}

.card a {
	font-weight: 800;
	color: var(--forest);
	text-decoration: none
}

.route-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px
}

.route {
	display: grid;
	grid-template-columns: 240px 1fr;
	background: var(--paper);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow)
}

.route .copy {
    color: #333
}

.route img {
	height: 100%
}

.route .copy {
	padding: 25px
}

.meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0
}

.meta span {
	background: #efe9de;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: .78rem
}

.banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	background: var(--forest);
	color: #fff;
	border-radius: 32px;
	padding: 42px;
	box-shadow: var(--shadow)
}

.banner h2 {
	font-size: 3rem;
	line-height: 1;
	margin: 5px 0 12px
}

.banner p {
	color: rgba(255, 255, 255, .72);
	max-width: 700px
}

.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px
}

.gallery img {
	height: 240px;
	border-radius: 20px;
	box-shadow: var(--shadow)
}

.gallery img:nth-child(1),
.gallery img:nth-child(6) {
	grid-column: span 2;
	height: 320px
}

footer {
	background: #0d2b25;
	color: #fff;
	padding: 55px 0 28px;
	margin-top: 70px
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr .7fr .7fr;
	gap: 35px
}

.footer-grid p {
	color: rgba(255, 255, 255, .68)
}

.footer-grid a {
	color: #fff
}

.footer-links {
	display: grid;
	gap: 8px;
	align-content: start
}

.bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	margin-top: 30px;
	padding-top: 20px;
	color: rgba(255, 255, 255, .55);
	display: flex;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap
}

@media(max-width:950px) {
	.hamb {
		display: block
	}

	.menu {
		display: none;
		position: absolute;
		top: 74px;
		left: 20px;
		right: 20px;
		background: var(--paper);
		padding: 14px;
		border-radius: 18px;
		flex-direction: column;
		align-items: stretch;
		box-shadow: var(--shadow)
	}

	.menu.open {
		display: flex
	}

	.hero {
		min-height: 1020px
	}

	.hero-grid,
	.head,
	.plan,
	.footer-grid {
		grid-template-columns: 1fr
	}

	.quick-grid {
		grid-template-columns: 1fr 1fr
	}

	.quick .intro {
		grid-column: 1/-1
	}

	.mosaic {
		grid-template-columns: 1fr 1fr
	}

	.tile.large {
		grid-column: 1/-1;
		grid-row: auto
	}

	.tile.wide {
		grid-column: auto
	}

	.cards {
		grid-template-columns: 1fr 1fr
	}

	.route-grid {
		grid-template-columns: 1fr
	}

	.gallery {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width:650px) {
	.container {
		width: min(calc(100% - 26px), var(--max))
	}

	.brand small {
		display: none
	}

	.hero {
		min-height: 940px
	}

	.hero-grid {
		padding: 115px 0 55px
	}

	.quick-grid,
	.cards,
	.mosaic,
	.gallery {
		grid-template-columns: 1fr
	}

	.tile.large,
	.tile.wide,
	.gallery img:nth-child(n) {
		grid-column: auto;
		height: 260px
	}

	.route {
		grid-template-columns: 1fr;
	}

	.route img {
		height: 240px
	}

	.banner {
		display: block;
		padding: 27px
	}

	.planner {
		padding: 25px
	}

	.gallery img {
		height: 250px
	}
}