:root {
	--fa-orange: #ff6542;
	--fa-green: #034732;
	--fa-plum: #493843;
	--fa-cream: #f8f1e7;
	--fa-white: #ffffff;
	--fa-soft: #6b5864;
	--fa-font: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

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

body {
	margin: 0;
	background: var(--fa-white);
	color: var(--fa-plum);
	font-family: var(--fa-font);
	font-size: 16px;
	line-height: 1.5;
}

a {
	color: inherit;
}

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

.site-main {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 64px 0;
}

.fa-placeholder {
	display: grid;
	min-height: 320px;
	place-items: center;
	text-align: center;
}

.fa-placeholder h1,
.entry__title,
.archive-title {
	margin: 0 0 20px;
	font-size: clamp(32px, 7vw, 56px);
	font-weight: 900;
	line-height: 0.98;
}

.entry {
	margin-bottom: 40px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--fa-white);
	color: var(--fa-plum);
}

.fa-dynamic-page {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.fa-dynamic-hero {
	display: grid;
	gap: 14px;
	padding: 56px 0 28px;
}

.fa-dynamic-hero h1 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(40px, 7vw, 78px);
	font-weight: 900;
	line-height: .96;
}

.fa-dynamic-hero p {
	max-width: 720px;
	margin: 0;
	color: var(--fa-soft);
	font-size: 18px;
	line-height: 1.55;
}

.eyebrow {
	color: var(--fa-orange);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.activities-grid,
.lodging-grid,
.blog-grid {
	display: grid;
	gap: 16px;
}

.activity-card,
.lodging-card,
.blog-card {
	overflow: hidden;
	border: 1px solid rgba(73, 56, 67, .12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 34px -28px rgba(73, 56, 67, .42);
	text-decoration: none;
	color: inherit;
}

.activity-media,
.card-media,
.blog-card__media {
	aspect-ratio: 16 / 10;
	background: #e9efe9;
}

.activity-media img,
.card-media img,
.blog-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.activity-body,
.card-body,
.blog-card__body {
	display: grid;
	gap: 12px;
	padding: 16px;
}

.activity-body h3,
.card-body h3,
.blog-card__body h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.05;
}

.activity-body p,
.card-body p,
.blog-card__body p {
	margin: 0;
	color: var(--fa-soft);
}

.activity-meta,
.tag-row,
.blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--fa-soft);
	font-size: 13px;
	font-weight: 700;
}

.activity-meta span,
.tag-row span,
.blog-card__tag {
	padding: 6px 9px;
	border-radius: 999px;
	background: rgba(255, 101, 66, .10);
}

.activity-footer,
.card-footer,
.blog-card__footer,
.fa-single-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: var(--fa-orange);
	color: var(--fa-white);
	font-weight: 900;
	text-decoration: none;
}

.btn--ghost {
	border: 1px solid rgba(73, 56, 67, .18);
	background: transparent;
	color: var(--fa-plum);
}

.price {
	display: grid;
	gap: 2px;
}

.price small {
	color: var(--fa-soft);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.price strong {
	font-size: 22px;
}

.fa-empty-state {
	grid-column: 1 / -1;
	margin: 0;
	padding: 22px;
	border: 1px dashed rgba(73, 56, 67, .24);
	border-radius: 8px;
	background: rgba(255, 255, 255, .72);
	color: var(--fa-soft);
	font-weight: 700;
}

.fa-product-content {
	max-width: 820px;
	padding-bottom: 56px;
}

@media (min-width: 720px) {
	.activities-grid,
	.lodging-grid,
	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1040px) {
	.activities-grid,
	.lodging-grid,
	.blog-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
