/*
Theme Name: PER
Description: An Art Deco escape room experience.
Version: 1.0.0
Text Domain: per
*/

:root {
	--ink: #090b0a;
	--black: #030504;
	--ivory: #f4f0e7;
	--gold: #c5a45d;
	--gold-light: #e4cc8b;
	--green: #0d3228;
	--muted: #aaa69d;
	--serif: "Bodoni 72", "Didot", "Baskerville", "Times New Roman", serif;
	--sans: "Avenir Next", "Futura", "Century Gothic", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--ink);
	color: var(--ivory);
	font-family: var(--sans);
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: square;
	stroke-linejoin: miter;
	stroke-width: 1.5;
}

.site-header {
	background: rgba(3, 5, 4, .96);
	border-bottom: 1px solid rgba(197, 164, 93, .3);
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 10;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
	align-items: center;
	display: flex;
	height: 94px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1380px;
	padding: 0 5vw;
}

.brand {
	align-items: center;
	display: flex;
	gap: 12px;
}

.brand--asset {
	display: block;
	width: clamp(150px, 15vw, 215px);
}

.brand--asset img {
	display: block;
	height: auto;
	width: 100%;
}

.brand__mark {
	color: var(--gold);
	width: 34px;
}

.brand__mark svg {
	fill: currentColor;
	stroke: none;
}

.brand__text {
	display: grid;
}

.brand__name {
	font-family: var(--serif);
	font-size: 1.35rem;
	letter-spacing: .22em;
	line-height: 1;
	text-transform: uppercase;
}

.brand__tagline {
	color: var(--gold);
	font-size: .55rem;
	letter-spacing: .35em;
	margin-top: 6px;
	text-transform: uppercase;
}

.brand--custom .custom-logo-link {
	display: block;
}

.brand--custom .custom-logo {
	display: block;
	height: 58px;
	object-fit: contain;
	width: auto;
}

.site-nav {
	align-items: center;
	display: flex;
	gap: clamp(24px, 4vw, 56px);
}

.site-nav a {
	color: #ddd8ce;
	font-size: .68rem;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.site-nav a:hover,
.text-link:hover,
.card-link:hover {
	color: var(--gold-light);
}

.site-nav__item {
	position: relative;
}

.site-nav__item > a {
	align-items: center;
	display: flex;
	gap: 7px;
}

.site-nav__chevron {
	border-bottom: 1px solid var(--gold);
	border-right: 1px solid var(--gold);
	display: block;
	height: 6px;
	margin-top: -3px;
	transform: rotate(45deg);
	width: 6px;
}

.site-nav__dropdown {
	background: rgba(3, 5, 4, .98);
	border: 1px solid rgba(197, 164, 93, .42);
	display: grid;
	left: 50%;
	min-width: 270px;
	opacity: 0;
	padding: 18px;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 27px);
	transform: translate(-50%, 8px);
	transition: opacity .18s ease, transform .18s ease;
	visibility: hidden;
}

.site-nav__dropdown::before {
	content: "";
	height: 30px;
	left: 0;
	position: absolute;
	right: 0;
	top: -30px;
}

.site-nav__item--dropdown:hover .site-nav__dropdown,
.site-nav__item--dropdown:focus-within .site-nav__dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

.site-nav .site-nav__dropdown a {
	border-top: 1px solid #292d28;
	color: #d2cfc5;
	font-family: var(--serif);
	font-size: .93rem;
	letter-spacing: 0;
	padding: 12px 7px;
	text-transform: none;
}

.site-nav .site-nav__dropdown a:hover,
.site-nav .site-nav__dropdown a:focus {
	background: var(--green);
	color: var(--gold-light);
}

.site-nav__dropdown-label {
	color: var(--gold);
	font-size: .5rem;
	font-weight: 700;
	letter-spacing: .18em;
	padding: 3px 7px 13px;
	text-transform: uppercase;
}

.site-nav .site-nav__dropdown .site-nav__dropdown-all {
	color: var(--gold);
	font-family: var(--sans);
	font-size: .52rem;
	font-weight: 700;
	letter-spacing: .12em;
	margin-top: 5px;
	text-transform: uppercase;
}

.button {
	background: var(--gold);
	border: 1px solid var(--gold);
	color: var(--black);
	display: inline-flex;
	font-size: .67rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: .2em;
	padding: 18px 28px;
	text-transform: uppercase;
	transition: .2s ease;
}

.button:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
	transform: translateY(-2px);
}

.button--small {
	padding: 13px 21px;
}

.booking-cta {
	display: none !important;
}

.button--outline {
	background: transparent;
	border-color: var(--gold);
	color: var(--ivory);
}

.button--outline:hover {
	background: var(--gold);
	color: var(--black);
}

.hero {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(3, 5, 4, .97) 0%, rgba(3, 5, 4, .78) 54%, rgba(13, 50, 40, .5) 100%),
		radial-gradient(circle at 80% 44%, #1c5545, #07100d 38%, #030504 67%);
	display: flex;
	min-height: 820px;
	overflow: hidden;
	padding: 100px 10vw;
	position: relative;
}

.hero::before,
.hero::after {
	border: 1px solid rgba(197, 164, 93, .25);
	content: "";
	height: 520px;
	position: absolute;
	right: 8vw;
	top: 180px;
	transform: rotate(45deg);
	width: 520px;
}

.hero::after {
	height: 360px;
	right: calc(8vw + 80px);
	top: 260px;
	width: 360px;
}

.hero__pattern {
	background: repeating-linear-gradient(90deg, transparent 0 30px, rgba(197, 164, 93, .06) 30px 31px);
	inset: 0;
	position: absolute;
}

.hero__content {
	max-width: 720px;
	position: relative;
	z-index: 2;
}

.eyebrow {
	align-items: center;
	color: var(--gold);
	display: flex;
	font-size: .64rem;
	font-weight: 700;
	gap: 14px;
	letter-spacing: .35em;
	margin: 0 0 25px;
	text-transform: uppercase;
}

.eyebrow::before {
	background: var(--gold);
	content: "";
	height: 1px;
	width: 42px;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: var(--serif);
	font-weight: 400;
}

.hero h1 {
	font-size: clamp(4rem, 8vw, 8rem);
	letter-spacing: -.035em;
	line-height: .74;
	margin-bottom: 40px;
	text-transform: uppercase;
}

.hero-title > span {
	display: inline;
}

.hero__opening {
	align-items: center;
	color: var(--gold-light);
	display: inline-flex;
	font-family: var(--serif);
	font-size: clamp(1.6rem, 3vw, 2.6rem);
	gap: 18px;
	letter-spacing: .16em;
	line-height: 1;
	margin: -10px 0 30px;
	text-transform: uppercase;
}

.hero__opening::before,
.hero__opening::after {
	background: rgba(228, 204, 139, .7);
	content: "";
	height: 1px;
	width: 72px;
}

.hero__intro {
	color: #c4c0b7;
	font-family: var(--serif);
	font-size: 1.2rem;
	line-height: 1.8;
	max-width: 560px;
}

.hero__secondary {
	color: var(--gold-light);
	font-family: var(--serif);
	font-size: 1rem;
	letter-spacing: .03em;
	margin-top: 24px;
}

.hero__facts {
	color: #8f918a;
	font-size: .55rem;
	letter-spacing: .13em;
	margin: 28px 0 0;
	text-transform: uppercase;
}

.hero__actions {
	align-items: center;
	display: flex;
	gap: 32px;
	margin-top: 42px;
}

.text-link,
.card-link {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.text-link span,
.card-link span {
	color: var(--gold);
	margin-left: 8px;
}

.hero__timer {
	align-items: center;
	background: rgba(3, 5, 4, .75);
	border: 1px solid rgba(197, 164, 93, .55);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 260px;
	justify-content: center;
	overflow: hidden;
	padding: 7px;
	position: absolute;
	right: calc(8vw + 130px);
	top: 310px;
	width: 260px;
	z-index: 3;
}

.hero__timer-image {
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
	opacity: .72;
	width: 100%;
}

.hero__scroll {
	align-items: center;
	bottom: 36px;
	display: flex;
	font-size: .55rem;
	gap: 12px;
	letter-spacing: .25em;
	position: absolute;
	right: 5vw;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	z-index: 3;
}

.hero__scroll span:last-child {
	color: var(--gold);
	font-size: 1rem;
}

.section {
	margin: 0 auto;
	max-width: 1380px;
	padding: 110px 5vw;
}

.section-heading {
	align-items: end;
	display: grid;
	gap: 10%;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 60px;
}

.section h2,
.site-footer h2,
.booking-strip h2 {
	font-size: clamp(2.7rem, 5vw, 5rem);
	letter-spacing: -.02em;
	line-height: 1;
	margin-bottom: 0;
}

.section-heading > p,
.experience__copy > p,
.location__details > p {
	color: var(--muted);
	font-family: var(--serif);
	font-size: 1.05rem;
	line-height: 1.8;
}

.features {
	border-bottom: 1px solid #292b27;
	border-top: 1px solid #292b27;
}

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

.feature-card {
	border: 1px solid #333630;
	padding: 36px 30px;
}

.feature-card + .feature-card {
	border-left: 0;
}

.feature-card svg {
	color: var(--gold);
	margin-bottom: 30px;
	width: 48px;
}

.feature-card h3,
.group-grid h3 {
	font-size: 1.55rem;
}

.feature-card p,
.group-grid p {
	color: var(--muted);
	font-family: var(--serif);
	line-height: 1.65;
	margin-bottom: 0;
}

.room-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.room-card {
	border: 1px solid #333630;
	min-height: 630px;
	padding: 45px;
	position: relative;
	transition: .25s ease;
}

.room-card + .room-card {
	border-left: 0;
}

.room-card:hover {
	background: #0c1713;
	border-color: var(--gold);
	transform: translateY(-8px);
	z-index: 1;
}

.room-card + .room-card:hover {
	border-left: 1px solid var(--gold);
}

.room-card--featured {
	background: var(--green);
}

.room-card__badge {
	background: var(--gold);
	color: var(--black);
	font-size: .52rem;
	font-weight: 700;
	letter-spacing: .18em;
	padding: 8px 12px;
	position: static;
	text-transform: uppercase;
}

.room-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	justify-content: flex-end;
	position: absolute;
	right: 20px;
	top: 0;
	z-index: 2;
}

.room-card__badge--coming {
	background: var(--ivory);
	color: var(--green);
}

.room-card__badge--seasonal {
	background: transparent;
	border: 1px solid var(--gold);
	color: var(--gold-light);
}

.room-card__number {
	color: var(--gold);
	font-family: var(--serif);
	font-size: .8rem;
	letter-spacing: .2em;
	margin-bottom: 46px;
}

.room-card__genre {
	color: var(--gold);
	font-size: .55rem;
	letter-spacing: .2em;
	margin-bottom: 13px;
	text-transform: uppercase;
}

.experience-tags {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
}

.experience-tags__genres,
.experience-tags__tones {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.experience-tags__genres span {
	border: 1px solid rgba(243, 238, 220, .35);
	color: var(--ivory);
	font-size: .5rem;
	font-weight: 700;
	letter-spacing: .12em;
	padding: 6px 8px;
	text-transform: uppercase;
}

.experience-tags__tones span {
	align-items: center;
	color: var(--gold-light);
	display: inline-flex;
	font-family: var(--serif);
	font-size: .78rem;
	font-style: italic;
}

.experience-tags__tones span + span::before {
	color: var(--gold);
	content: "◆";
	font-family: var(--sans);
	font-size: .38rem;
	margin-right: 7px;
}

.experience-tags--hero {
	gap: 13px;
	margin-bottom: 28px;
}

.experience-tags--hero .experience-tags__genres span {
	background: rgba(3, 5, 4, .58);
	border-color: var(--gold);
	padding: 8px 11px;
}

.experience-tags--hero .experience-tags__tones span {
	font-size: 1rem;
}

.room-card h3 {
	font-size: 2.4rem;
	margin-bottom: 18px;
}

.room-card > p:not(.room-card__genre) {
	color: #a9aaa4;
	font-family: var(--serif);
	line-height: 1.65;
}

.room-card__meta {
	border-bottom: 1px solid #343832;
	border-top: 1px solid #343832;
	display: flex;
	font-size: .58rem;
	gap: 25px;
	letter-spacing: .08em;
	margin: 28px 0;
	padding: 15px 0;
	text-transform: uppercase;
}

.room-card__actions {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.room-card__triggers {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 28px;
}

.room-card__triggers > span:not(.trigger-label) {
	border: 1px solid #45483f;
	color: #b9b8af;
	font-size: .5rem;
	letter-spacing: .1em;
	padding: 6px 8px;
	text-transform: uppercase;
}

.room-card__triggers .trigger-label {
	align-items: center;
	color: var(--gold);
	display: flex;
	font-size: .52rem;
	font-weight: 700;
	letter-spacing: .13em;
	margin-bottom: 3px;
	text-transform: uppercase;
	width: 100%;
}

.trigger-label svg {
	margin-right: 7px;
	width: 15px;
}

.room-card__meta strong {
	color: var(--gold-light);
	font-family: var(--serif);
	font-size: 1rem;
}

.experience {
	align-items: start;
	border-top: 1px solid #292b27;
	display: grid;
	gap: 10%;
	grid-template-columns: .9fr 1.1fr;
}

.experience__copy h2 {
	margin-bottom: 34px;
}

.safety-note {
	border-left: 1px solid var(--gold);
	font-size: .9rem !important;
	margin-top: 30px;
	padding-left: 20px;
}

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

.steps-wrap__button {
	margin-top: 34px;
	width: 100%;
}

.steps li {
	align-items: center;
	border-bottom: 1px solid #30332e;
	display: grid;
	gap: 28px;
	grid-template-columns: 72px 1fr;
	padding: 28px 0;
}

.step-icon {
	align-items: center;
	border: 1px solid rgba(197, 164, 93, .45);
	color: var(--gold);
	display: flex;
	height: 70px;
	justify-content: center;
	transform: rotate(45deg);
	width: 70px;
}

.step-icon svg {
	transform: rotate(-45deg);
	width: 40px;
}

.steps small {
	color: var(--gold);
	font-family: var(--serif);
}

.steps h3 {
	display: inline;
	font-size: 1.7rem;
	margin-left: 18px;
}

.steps p {
	color: var(--muted);
	font-family: var(--serif);
	margin: 8px 0 0;
}

.groups {
	border-top: 1px solid #292b27;
}

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

.group-grid article {
	border-bottom: 1px solid #333630;
	border-top: 1px solid #333630;
	padding: 35px 30px;
}

.group-grid article + article {
	border-left: 1px solid #333630;
}

.group-grid span {
	color: var(--gold);
	display: block;
	font-family: var(--serif);
	font-size: .75rem;
	letter-spacing: .2em;
	margin-bottom: 32px;
}

.group-inquiry {
	align-items: center;
	background: var(--green);
	border: 1px solid rgba(197, 164, 93, .45);
	display: flex;
	gap: 50px;
	justify-content: space-between;
	margin-top: 35px;
	padding: 38px 42px;
	position: relative;
}

.group-inquiry::before {
	border: 1px solid rgba(197, 164, 93, .18);
	content: "";
	inset: 8px;
	pointer-events: none;
	position: absolute;
}

.group-inquiry > div {
	max-width: 790px;
	position: relative;
	z-index: 1;
}

.group-inquiry .eyebrow {
	margin-bottom: 12px;
}

.group-inquiry h3 {
	font-size: 2rem;
	margin-bottom: 12px;
}

.group-inquiry p:last-child {
	color: #bbbdb7;
	font-family: var(--serif);
	line-height: 1.65;
	margin-bottom: 0;
}

.group-inquiry p strong {
	color: var(--ivory);
	font-weight: 700;
}

.group-inquiry .button {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.location {
	align-items: start;
	display: grid;
	gap: 10%;
	grid-template-columns: 1fr 1fr;
}

.location__facts {
	display: grid;
	gap: 10px;
	margin-top: 30px;
}

.reviews {
	background:
		radial-gradient(circle at 15% 20%, rgba(24, 63, 50, .34), transparent 28%),
		radial-gradient(circle at 85% 80%, rgba(197, 164, 93, .08), transparent 25%),
		var(--black);
	border-bottom: 1px solid rgba(197, 164, 93, .22);
	border-top: 1px solid rgba(197, 164, 93, .22);
	max-width: none;
	overflow: hidden;
	padding-left: 0;
	padding-right: 0;
	position: relative;
}

.reviews::before {
	background:
		linear-gradient(90deg, transparent 49.8%, rgba(197, 164, 93, .08) 50%, transparent 50.2%),
		linear-gradient(transparent 49.8%, rgba(197, 164, 93, .08) 50%, transparent 50.2%);
	background-size: 80px 80px;
	content: "";
	inset: 0;
	opacity: .5;
	pointer-events: none;
	position: absolute;
}

.reviews__heading {
	margin: 0 auto 50px;
	max-width: 1380px;
	padding: 0 5vw;
	position: relative;
	text-align: center;
	z-index: 1;
}

.reviews__heading::after {
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	content: "";
	display: block;
	height: 1px;
	margin: 34px auto 0;
	max-width: 440px;
	width: 55%;
}

.reviews__heading .eyebrow {
	justify-content: center;
}

.reviews__heading .eyebrow::before,
.reviews__heading .eyebrow::after {
	background: var(--gold);
	content: "";
	height: 1px;
	width: 38px;
}

.reviews__heading h2 {
	font-size: clamp(3rem, 6vw, 5.6rem);
}

.reviews__heading > p:last-child {
	color: var(--muted);
	font-family: var(--serif);
	font-size: 1rem;
	margin: 26px 0 0;
}

.review-marquee {
	overflow: hidden;
	padding: 22px 0 48px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.review-marquee::before,
.review-marquee::after {
	background: linear-gradient(90deg, var(--ink), transparent);
	content: "";
	inset: 0 auto 0 0;
	pointer-events: none;
	position: absolute;
	width: 9vw;
	z-index: 2;
}

.review-marquee::after {
	background: linear-gradient(270deg, var(--ink), transparent);
	left: auto;
	right: 0;
}

.review-marquee__track {
	animation: review-scroll 34s linear infinite;
	display: flex;
	gap: 22px;
	width: max-content;
}

.review-marquee:hover .review-marquee__track,
.review-marquee:focus-within .review-marquee__track {
	animation-play-state: paused;
}

.review-card {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 42%),
		var(--green);
	border: 1px solid rgba(197, 164, 93, .4);
	clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
	flex: 0 0 clamp(310px, 34vw, 470px);
	min-height: 290px;
	padding: 46px 42px 38px;
	position: relative;
}

.review-card:nth-child(3n + 2) {
	background:
		linear-gradient(145deg, rgba(197, 164, 93, .08), transparent 45%),
		#101512;
	transform: translateY(18px);
}

.review-card:nth-child(3n + 3) {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 42%),
		#143b30;
}

.review-card::before {
	color: rgba(197, 164, 93, .3);
	content: "“";
	font-family: var(--serif);
	font-size: 5rem;
	line-height: 1;
	position: absolute;
	right: 25px;
	top: 18px;
}

.review-card::after {
	border-bottom: 1px solid rgba(197, 164, 93, .55);
	border-left: 1px solid rgba(197, 164, 93, .55);
	bottom: 12px;
	content: "";
	height: 34px;
	left: 12px;
	position: absolute;
	width: 34px;
}

.review-card__label {
	align-items: center;
	color: var(--gold) !important;
	display: flex;
	font-family: var(--sans) !important;
	font-size: .52rem !important;
	font-weight: 700;
	letter-spacing: .18em;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.review-card__label span {
	align-items: center;
	background: rgba(197, 164, 93, .15);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	display: inline-flex;
	font-family: var(--serif);
	height: 30px;
	justify-content: center;
	margin-right: 12px;
	width: 30px;
}

.review-card > p:not(.review-card__label) {
	font-family: var(--serif);
	font-size: 1.35rem;
	font-style: italic;
	line-height: 1.55;
	max-width: 350px;
}

.review-card > span {
	color: #93978f;
	display: block;
	font-size: .52rem;
	letter-spacing: .12em;
	margin-top: 28px;
	text-transform: uppercase;
}

@keyframes review-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 11px));
	}
}

.location__facts span {
	border-left: 1px solid var(--gold);
	color: #c4c0b7;
	font-size: .62rem;
	letter-spacing: .12em;
	padding: 8px 0 8px 16px;
	text-transform: uppercase;
}

.booking-strip {
	align-items: center;
	background: var(--green);
	border-bottom: 1px solid var(--gold);
	border-top: 1px solid var(--gold);
	display: flex;
	justify-content: space-between;
	padding: 75px 10vw;
	position: relative;
}

.booking-strip > div:first-child {
	max-width: 650px;
}

.booking-strip__copy h2 + p {
	color: #b9b8af;
	font-family: var(--serif);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 34px 0 0;
	max-width: 620px;
}

.booking-strip__actions {
	display: flex;
	flex-shrink: 0;
	gap: 12px;
	justify-content: flex-end;
	position: relative;
	z-index: 2;
}

.booking-strip__privacy {
	color: #858b84 !important;
	font-family: var(--sans) !important;
	font-size: .55rem !important;
	letter-spacing: .08em;
	line-height: 1.7;
	margin: 18px 0 0;
	text-transform: uppercase;
}

.booking-strip__signup {
	max-width: 590px;
	position: relative;
	width: 48%;
	z-index: 2;
}

.newsletter-feedback {
	border: 1px solid rgba(197, 164, 93, .35);
	font-family: var(--serif);
	font-size: .92rem;
	line-height: 1.6;
	margin: 0 0 12px;
	padding: 12px 14px;
}

.newsletter-feedback--success {
	background: rgba(22, 67, 45, .5);
	color: #dff4e3;
}

.newsletter-feedback--error {
	background: rgba(77, 27, 21, .45);
	color: #ffd7d2;
}

.newsletter-honeypot {
	left: -9999px;
	position: absolute;
}

.mailing-form {
	background: rgba(3, 5, 4, .35);
	border: 1px solid rgba(197, 164, 93, .55);
	margin-bottom: 22px;
	padding: 26px;
}

.mailing-form__fields {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr 1.4fr;
	margin-bottom: 15px;
}

.mailing-form label > span {
	color: var(--gold-light);
	display: block;
	font-size: .52rem;
	font-weight: 700;
	letter-spacing: .12em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.mailing-form input[type="text"],
.mailing-form input[type="email"] {
	background: var(--ivory);
	border: 1px solid transparent;
	border-radius: 0;
	color: var(--black);
	font-family: var(--serif);
	font-size: .95rem;
	min-height: 46px;
	padding: 10px 12px;
	width: 100%;
}

.mailing-form input:focus {
	border-color: var(--gold);
	outline: 2px solid var(--gold-light);
	outline-offset: 2px;
}

.mailing-form__consent {
	align-items: flex-start;
	display: grid;
	gap: 9px;
	grid-template-columns: 16px 1fr;
	margin: 0 0 18px;
}

.mailing-form__consent input {
	accent-color: var(--gold);
	margin: 2px 0 0;
}

.mailing-form__consent span {
	color: #bbbcb6 !important;
	font-family: var(--serif);
	font-size: .76rem !important;
	font-weight: 400 !important;
	letter-spacing: 0 !important;
	line-height: 1.45;
	margin: 0 !important;
	text-transform: none !important;
}

.mailing-form .button {
	border: 0;
	cursor: pointer;
	width: 100%;
}

.site-footer__description {
	color: var(--muted);
	font-family: var(--serif);
	line-height: 1.7;
	margin: -20px 0 35px;
	max-width: 620px;
}

.booking-strip::after {
	border: 1px solid rgba(197, 164, 93, .25);
	content: "";
	inset: 12px;
	pointer-events: none;
	position: absolute;
}

.button--light {
	background: var(--ivory);
	border-color: var(--ivory);
	position: relative;
	z-index: 2;
}

.site-footer {
	align-items: center;
	background: var(--black);
	display: flex;
	flex-direction: column;
	padding: 100px 5vw 40px;
	text-align: center;
}

.site-footer .eyebrow::before {
	display: none;
}

.footer-mark {
	color: var(--gold);
	font-size: 1.4rem;
	margin-bottom: 30px;
}

.site-footer h2 {
	margin-bottom: 40px;
}

.site-footer__meta {
	border-top: 1px solid #252724;
	color: #777972;
	font-size: .58rem;
	letter-spacing: .15em;
	margin: 80px 0 0;
	padding-top: 30px;
	text-transform: uppercase;
	width: 100%;
}

@media (max-width: 900px) {
	.site-nav {
		display: none;
	}

	.hero {
		min-height: 760px;
		padding-left: 7vw;
	}

	.hero::before,
	.hero::after,
	.hero__timer {
		opacity: .35;
		right: -260px;
	}

	.hero__timer {
		right: 8vw;
		top: auto;
		bottom: 45px;
	}

	.section-heading,
	.experience,
	.location {
		gap: 45px;
		grid-template-columns: 1fr;
	}

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

	.feature-grid,
	.group-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.feature-card + .feature-card {
		border-left: 1px solid #333630;
	}

	.feature-card:nth-child(even),
	.group-grid article:nth-child(even) {
		border-left: 0;
	}

	.room-card {
		min-height: auto;
	}

	.room-card + .room-card {
		border-left: 1px solid #333630;
		border-top: 0;
	}
}

@media (max-width: 600px) {
	.site-header__inner {
		height: 78px;
		padding: 0 20px;
	}

	.brand--custom .custom-logo {
		height: 48px;
		max-width: 145px;
	}

	.brand__name {
		font-size: 1rem;
	}

	.site-header .button {
		font-size: .55rem;
		padding: 11px 13px;
	}

	.hero {
		min-height: 700px;
		padding: 130px 24px 90px;
	}

	.hero h1 {
		font-size: clamp(3.1rem, 15vw, 4.2rem);
		white-space: nowrap;
	}

	.hero__opening {
		font-size: clamp(1.1rem, 5vw, 1.7rem);
		gap: 12px;
		letter-spacing: .12em;
	}

	.hero__opening::before,
	.hero__opening::after {
		width: 34px;
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 22px;
	}

	.hero__actions .text-link {
		text-align: center;
	}

	.hero__timer,
	.hero__scroll {
		display: none;
	}

	.section {
		padding: 80px 20px;
	}

	.reviews {
		padding-left: 0;
		padding-right: 0;
	}

	.reviews__heading {
		padding-left: 20px;
		padding-right: 20px;
	}

	.section-heading {
		margin-bottom: 35px;
	}

	.room-card {
		padding: 34px 28px;
	}

	.room-card__number {
		margin-bottom: 32px;
	}

	.steps li {
		gap: 20px;
		grid-template-columns: 58px 1fr;
	}

	.step-icon {
		height: 54px;
		width: 54px;
	}

	.step-icon svg {
		width: 31px;
	}

	.booking-strip {
		align-items: stretch;
		flex-direction: column;
		gap: 35px;
		padding: 60px 30px;
	}

	.booking-strip__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.group-inquiry {
		align-items: stretch;
		flex-direction: column;
		gap: 28px;
		padding: 34px 28px;
	}

	.booking-strip__signup {
		max-width: none;
		width: 100%;
	}

	.mailing-form__fields {
		grid-template-columns: 1fr;
	}

	.site-footer {
		padding-top: 75px;
	}

	.site-footer__meta {
		line-height: 2;
	}

	.feature-grid,
	.group-grid {
		grid-template-columns: 1fr;
	}

	.feature-card + .feature-card,
	.feature-card:nth-child(even),
	.group-grid article + article,
	.group-grid article:nth-child(even) {
		border-left: 1px solid #333630;
		border-top: 0;
	}

	.room-card__actions {
		align-items: stretch;
		flex-direction: column;
	}

}

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

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
	}

	.review-marquee__track {
		animation: none;
		overflow-x: auto;
		width: max-content;
	}
}

/* Coming-soon launch modal */
.launch-modal {
	align-items: center;
	background:
		radial-gradient(circle at 50% 40%, rgba(24, 63, 50, .78), transparent 42%),
		rgba(3, 5, 4, .98);
	display: flex;
	inset: 0;
	justify-content: center;
	overflow-y: auto;
	padding: 32px;
	position: fixed;
	z-index: 9999;
}

.launch-modal[hidden] {
	display: none;
}

body.launch-modal-open {
	overflow: hidden;
}

.launch-modal__pattern {
	background:
		linear-gradient(90deg, transparent 49.8%, rgba(197, 164, 93, .07) 50%, transparent 50.2%),
		linear-gradient(transparent 49.8%, rgba(197, 164, 93, .07) 50%, transparent 50.2%);
	background-size: 84px 84px;
	inset: 0;
	pointer-events: none;
	position: fixed;
}

.launch-modal__panel {
	border: 1px solid rgba(197, 164, 93, .55);
	margin: auto;
	max-width: 820px;
	padding: clamp(35px, 6vw, 70px);
	position: relative;
	text-align: center;
	width: 100%;
}

.launch-modal__panel::before {
	border: 1px solid rgba(197, 164, 93, .2);
	content: "";
	inset: 9px;
	pointer-events: none;
	position: absolute;
}

.launch-modal__logo {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 13px;
	justify-content: center;
	margin: 0 auto 35px;
	position: relative;
	z-index: 1;
}

.launch-modal__logo-image {
	height: auto;
	max-height: 150px;
	max-width: min(510px, 76vw);
	object-fit: contain;
	width: auto;
}

.launch-modal__logo .brand__mark {
	color: var(--gold);
	width: 48px;
}

.launch-modal__wordmark {
	font-family: var(--serif);
	font-size: 1.3rem;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.launch-modal .eyebrow {
	justify-content: center;
	margin-bottom: 22px;
	position: relative;
	z-index: 1;
}

.launch-modal .eyebrow::after {
	background: var(--gold);
	content: "";
	height: 1px;
	width: 42px;
}

.launch-modal h2 {
	font-size: clamp(2.7rem, 6vw, 5.4rem);
	line-height: .92;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.launch-modal__copy {
	color: #c0beb5;
	font-family: var(--serif);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 auto 30px;
	max-width: 650px;
	position: relative;
	z-index: 1;
}

.launch-modal__form {
	margin: 0 auto;
	max-width: 620px;
	position: relative;
	text-align: left;
	z-index: 1;
}

.launch-modal__form .newsletter-feedback {
	margin-bottom: 16px;
}

.launch-modal__form > label {
	color: var(--gold-light);
	display: block;
	font-size: .52rem;
	font-weight: 700;
	letter-spacing: .13em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.launch-modal__form > div {
	display: grid;
	grid-template-columns: 1fr auto;
}

.launch-modal__form input[type="email"] {
	background: var(--ivory);
	border: 1px solid var(--ivory);
	border-radius: 0;
	color: var(--black);
	font-family: var(--serif);
	font-size: 1rem;
	min-width: 0;
	padding: 13px 15px;
}

.launch-modal__form input:focus {
	outline: 2px solid var(--gold-light);
	outline-offset: 2px;
}

.launch-modal__form .button {
	border: 0;
	cursor: pointer;
	white-space: nowrap;
}

.launch-modal__disclosure {
	color: #999d96;
	font-family: var(--serif);
	font-size: .75rem;
	line-height: 1.45;
	margin: 12px 0 0;
}

.launch-modal__continue {
	background: transparent;
	border: 1px solid var(--gold);
	color: var(--ivory);
	cursor: pointer;
	font-size: .58rem;
	font-weight: 700;
	letter-spacing: .16em;
	margin-top: 28px;
	padding: 15px 24px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.launch-modal__continue span {
	color: var(--gold);
	margin-left: 8px;
}

.launch-modal__continue:hover,
.launch-modal__continue:focus {
	background: var(--gold);
	color: var(--black);
}

@media (max-width: 600px) {
	.launch-modal {
		align-items: flex-start;
		padding: 14px;
	}

	.launch-modal__panel {
		padding: 36px 23px;
	}

	.launch-modal .eyebrow::before,
	.launch-modal .eyebrow::after {
		display: none;
	}

	.launch-modal h2 {
		font-size: clamp(2.35rem, 12vw, 3.6rem);
	}

	.launch-modal__form > div {
		grid-template-columns: 1fr;
	}

	.launch-modal__form .button {
		width: 100%;
	}
}

/* Structured site footer */
.site-footer {
	align-items: stretch;
	display: block;
	padding: 0;
	text-align: left;
}

.site-footer__top {
	display: grid;
	gap: clamp(30px, 3vw, 48px);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	padding: 90px 5vw 80px;
}

.footer-brand > p {
	color: var(--muted);
	font-family: var(--serif);
	line-height: 1.7;
	margin: 26px 0 30px;
	max-width: 350px;
}

.footer-brand__asset {
	max-width: 285px;
	width: 100%;
}

.footer-brand__logo .custom-logo {
	height: 68px;
	object-fit: contain;
	object-position: left center;
	width: auto;
}

.footer-form,
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.footer-form h2,
.footer-contact h2 {
	color: var(--gold);
	font-family: var(--sans);
	font-size: .64rem;
	font-weight: 700;
	letter-spacing: .22em;
	margin: 5px 0 15px;
	text-transform: uppercase;
}

.footer-form form {
	display: grid;
	gap: 12px;
}

.footer-form label > span {
	color: #aaa9a3;
	display: block;
	font-size: .5rem;
	font-weight: 700;
	letter-spacing: .13em;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.footer-form input,
.footer-form textarea {
	background: #111411;
	border: 1px solid #343832;
	border-radius: 0;
	color: var(--ivory);
	font-family: var(--serif);
	font-size: .9rem;
	padding: 9px 10px;
	resize: vertical;
	width: 100%;
}

.footer-form input:focus,
.footer-form textarea:focus {
	border-color: var(--gold);
	outline: 1px solid var(--gold);
}

.footer-form .button {
	cursor: pointer;
	width: 100%;
}

.footer-contact address {
	display: grid;
	font-style: normal;
	gap: 22px;
}

.footer-contact__item {
	align-items: flex-start;
	color: #b7b5ae;
	display: grid;
	font-family: var(--serif);
	font-size: .88rem;
	gap: 12px;
	grid-template-columns: 24px 1fr;
	line-height: 1.5;
}

.footer-contact__item svg {
	color: var(--gold);
	margin-top: 3px;
	width: 20px;
}

.footer-contact__item strong,
.footer-contact__item small {
	display: block;
}

.footer-contact__item strong {
	color: var(--ivory);
	font-family: var(--sans);
	font-size: .54rem;
	letter-spacing: .15em;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.footer-contact__item small {
	color: #71736d;
	font-size: .72rem;
}

.footer-contact__notice {
	border-left: 1px solid var(--gold);
	color: var(--gold-light);
	font-size: .55rem;
	letter-spacing: .12em;
	line-height: 1.6;
	margin: 12px 0 0;
	padding-left: 12px;
	text-transform: uppercase;
}

.footer-map {
	align-items: flex-end;
	background: #0c1613;
	display: flex;
	justify-content: center;
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.footer-map::before,
.footer-map::after {
	content: "";
	inset: 18px;
	position: absolute;
	z-index: 1;
}

.footer-map::before {
	border: 1px solid rgba(197, 164, 93, .18);
}

.footer-map::after {
	background: linear-gradient(180deg, rgba(6, 11, 10, .08), rgba(6, 11, 10, .5));
	content: "";
}

.footer-map__frame,
.footer-map__shade {
	inset: 0;
	position: absolute;
}

.footer-map__frame {
	border: 0;
	height: 100%;
	width: 100%;
}

.footer-map__shade {
	background:
		linear-gradient(180deg, rgba(6, 11, 10, .06) 0%, rgba(6, 11, 10, .58) 62%, rgba(6, 11, 10, .88) 100%),
		linear-gradient(90deg, rgba(6, 11, 10, .36) 0%, rgba(6, 11, 10, 0) 30%, rgba(6, 11, 10, 0) 70%, rgba(6, 11, 10, .36) 100%);
	z-index: 1;
}

.footer-map__pin {
	color: var(--gold);
	left: 50%;
	position: absolute;
	top: 44%;
	transform: translate(-50%, -50%);
	width: 48px;
	z-index: 2;
}

.footer-map__label {
	align-items: center;
	bottom: 32px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	position: absolute;
	text-align: center;
	padding: 0 20px;
	z-index: 2;
}

.footer-map__label small {
	color: var(--gold);
	font-size: .52rem;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.footer-map__label strong {
	font-family: var(--serif);
	font-size: 1.7rem;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	max-width: 16ch;
}

.footer-map__action {
	background: rgba(8, 15, 13, .72);
	border: 1px solid rgba(197, 164, 93, .4);
	border-radius: 999px;
	color: var(--ivory);
	display: inline-flex;
	font-size: .55rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: .15em;
	margin-top: 8px;
	padding: 11px 16px;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-map--compact {
	border: 1px solid rgba(197, 164, 93, .28);
	margin: 0;
	min-height: 320px;
	width: 100%;
}

.footer-map--compact::before {
	inset: 14px;
}

.footer-map--compact::after {
	inset: 0;
}

.footer-map--compact .footer-map__pin {
	top: 40%;
	transform: translate(-50%, -50%);
	width: 34px;
}

.footer-map--compact .footer-map__label {
	bottom: 20px;
}

.footer-map--compact .footer-map__label strong {
	font-size: 1.25rem;
}

.footer-map__action:hover {
	background: rgba(17, 28, 24, .88);
}

.site-footer__bottom {
	align-items: center;
	color: #686a65;
	display: flex;
	font-size: .52rem;
	justify-content: center;
	letter-spacing: .12em;
	text-align: center;
	width: 100%;
	padding: 28px 5vw;
	text-transform: uppercase;
}

.footer-information {
	border-bottom: 1px solid #292b27;
	border-top: 1px solid #292b27;
	display: flex;
	flex-wrap: wrap;
	gap: 12px clamp(20px, 3vw, 42px);
	justify-content: center;
	padding: 25px 5vw;
	width: 100%;
}

.footer-information a {
	color: #858781;
	font-size: .52rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.footer-information a:hover {
	color: var(--gold-light);
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom div {
	display: flex;
	gap: 28px;
}

.site-footer__bottom a:hover {
	color: var(--gold);
}

@media (max-width: 1050px) {
	.site-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-contact {
		border-top: 0;
		grid-column: auto;
		padding-top: 0;
	}

	.footer-contact address {
		grid-template-columns: 1fr;
	}

	.footer-map--compact {
		min-height: 300px;
	}
}

@media (max-width: 750px) {
	.site-footer__top {
		grid-template-columns: 1fr;
		padding: 70px 24px 55px;
	}

	.footer-brand,
	.footer-contact {
		grid-column: auto;
	}

	.footer-contact address {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		padding: 28px 24px;
	}

	.site-footer__bottom div {
		flex-wrap: wrap;
		gap: 14px 24px;
	}
}

/* Refined editorial review rail */
.reviews {
	background: var(--black);
	border-bottom: 1px solid #292b27;
	border-top: 1px solid #292b27;
	padding-bottom: 120px;
	padding-top: 120px;
}

.reviews::before {
	background: none;
}

.reviews__heading {
	display: block;
	margin-bottom: 58px;
	text-align: left;
}

.reviews__heading .eyebrow {
	justify-content: flex-start;
	margin-bottom: 24px;
}

.reviews__heading .eyebrow::after {
	display: none;
}

.reviews__heading h2 {
	font-size: clamp(3rem, 5.5vw, 5.6rem);
	max-width: 780px;
}

.reviews__heading::after {
	display: none;
}

.review-marquee {
	padding: 12px 0 22px;
}

.review-marquee::before,
.review-marquee::after {
	width: 5vw;
}

.review-marquee__track {
	gap: 18px;
}

@keyframes review-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 9px));
	}
}

.review-card,
.review-card:nth-child(3n + 2),
.review-card:nth-child(3n + 3) {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 45%),
		#102f27;
	border: 0;
	clip-path: none;
	color: var(--ivory);
	flex-basis: clamp(330px, 38vw, 540px);
	min-height: 310px;
	padding: 48px 48px 42px;
	transform: none;
}

.review-card::before {
	color: var(--gold);
	font-size: 5.5rem;
	opacity: .55;
	right: 34px;
	top: 25px;
}

.review-card::after {
	background: var(--gold);
	border: 0;
	bottom: auto;
	height: 2px;
	left: 48px;
	top: 91px;
	width: 44px;
}

.review-card__label {
	color: var(--gold-light) !important;
	margin-bottom: 46px;
}

.review-card__label span {
	background: transparent;
	clip-path: none;
	font-size: .72rem;
	height: auto;
	justify-content: flex-start;
	margin-right: 18px;
	width: auto;
}

.review-card > p:not(.review-card__label) {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	font-style: normal;
	line-height: 1.5;
	max-width: 420px;
}

.review-card > span {
	border-top: 1px solid rgba(243, 238, 220, .16);
	color: #aeb5af;
	margin-top: 38px;
	padding-top: 18px;
}

@media (max-width: 700px) {
	.reviews {
		padding-bottom: 85px;
		padding-top: 85px;
	}

	.reviews__heading {
		display: block;
		margin-bottom: 42px;
	}

	.reviews__heading .eyebrow {
		margin-bottom: 24px;
	}

	.review-card,
	.review-card:nth-child(3n + 2),
	.review-card:nth-child(3n + 3) {
		flex-basis: min(84vw, 390px);
		padding: 40px 32px 34px;
	}

	.review-card::after {
		left: 32px;
	}
}

/* Single experience */
.experience-hero {
	align-items: end;
	background:
		linear-gradient(90deg, rgba(3, 5, 4, .96), rgba(13, 50, 40, .72)),
		var(--green);
	display: flex;
	min-height: 650px;
	overflow: hidden;
	padding: 100px 8vw 85px;
	position: relative;
}

.experience-hero::before,
.experience-hero::after {
	border: 1px solid rgba(197, 164, 93, .25);
	content: "";
	height: 520px;
	position: absolute;
	right: 8vw;
	top: 120px;
	transform: rotate(45deg);
	width: 520px;
	z-index: 1;
}

.experience-hero::after {
	height: 360px;
	right: calc(8vw + 80px);
	top: 200px;
	width: 360px;
}

.experience-hero__media {
	inset: 0;
	position: absolute;
}

.experience-hero__media::after {
	background: linear-gradient(90deg, rgba(3, 5, 4, .97) 4%, rgba(3, 5, 4, .72) 58%, rgba(3, 5, 4, .38));
	content: "";
	inset: 0;
	position: absolute;
}

.experience-hero__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.experience-hero__pattern {
	background:
		linear-gradient(90deg, transparent 49.8%, rgba(197, 164, 93, .09) 50%, transparent 50.2%),
		linear-gradient(transparent 49.8%, rgba(197, 164, 93, .09) 50%, transparent 50.2%);
	background-size: 90px 90px;
	inset: 0;
	position: absolute;
}

.experience-hero__content {
	max-width: 900px;
	position: relative;
	z-index: 2;
}

.experience-hero__logo {
	align-items: center;
	background: rgba(3, 5, 4, .75);
	border: 1px solid rgba(197, 164, 93, .55);
	border-radius: 50%;
	display: flex;
	height: 260px;
	justify-content: center;
	overflow: hidden;
	padding: 7px;
	position: absolute;
	right: calc(8vw + 130px);
	top: 250px;
	width: 260px;
	z-index: 3;
}

.experience-hero__logo-image {
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
	opacity: .72;
	width: 100%;
}

.experience-hero__back {
	color: #aaa9a3;
	display: inline-block;
	font-size: .58rem;
	letter-spacing: .17em;
	margin-bottom: 52px;
	text-transform: uppercase;
}

.experience-hero__back:hover {
	color: var(--gold-light);
}

.experience-status {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.experience-status span {
	background: var(--gold);
	color: var(--black);
	font-size: .54rem;
	font-weight: 700;
	letter-spacing: .16em;
	padding: 8px 11px;
	text-transform: uppercase;
}

.experience-status .experience-status__coming {
	background: var(--ivory);
	color: var(--green);
}

.experience-status .experience-status__seasonal {
	background: rgba(3, 5, 4, .65);
	border: 1px solid var(--gold);
	color: var(--gold-light);
}

.experience-hero h1 {
	font-size: clamp(4rem, 8vw, 8rem);
	line-height: .85;
	margin-bottom: 32px;
	max-width: 900px;
	text-transform: uppercase;
}

.experience-hero__intro {
	color: #cbc7bd;
	font-family: var(--serif);
	font-size: 1.2rem;
	line-height: 1.75;
	max-width: 650px;
}

.experience-hero .button {
	margin-top: 24px;
}

.experience-overview {
	align-items: start;
	display: grid;
	gap: 9%;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
}

.experience-overview__main h2 {
	margin-bottom: 42px;
}

.experience-overview__content {
	color: #bbb8af;
	font-family: var(--serif);
	font-size: 1.08rem;
	line-height: 1.85;
}

.experience-overview__content > * {
	max-width: 760px;
}

.experience-overview__content h2,
.experience-overview__content h3 {
	color: var(--ivory);
	margin-top: 45px;
}

.experience-facts {
	background: var(--green);
	border: 1px solid rgba(197, 164, 93, .45);
	padding: 38px;
	position: sticky;
	top: 125px;
}

.experience-facts > h2 {
	font-family: var(--sans);
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .2em;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.experience-facts dl {
	margin: 0;
}

.experience-facts dl > div {
	align-items: baseline;
	border-top: 1px solid rgba(243, 238, 220, .15);
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 15px 0;
}

.experience-facts dt {
	color: #a4aaa4;
	font-size: .52rem;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.experience-facts dd {
	font-family: var(--serif);
	margin: 0;
	text-align: right;
}

.experience-facts__advisories {
	border-top: 1px solid var(--gold);
	margin-top: 18px;
	padding-top: 24px;
}

.experience-facts__advisories h3 {
	align-items: center;
	color: var(--gold-light);
	display: flex;
	font-family: var(--sans);
	font-size: .55rem;
	gap: 8px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.experience-facts__advisories h3 svg {
	width: 17px;
}

.experience-facts__advisories ul {
	color: #bfc2bc;
	font-family: var(--serif);
	line-height: 1.7;
	list-style: none;
	padding: 0;
}

.experience-facts__advisories li::before {
	color: var(--gold);
	content: "—";
	margin-right: 8px;
}

.experience-facts > .button {
	margin-top: 18px;
	width: 100%;
}

.related-experiences {
	border-top: 1px solid #292b27;
}

.room-grid--related {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-page {
	background:
		radial-gradient(circle at top, rgba(13, 50, 40, .38), transparent 34%),
		linear-gradient(180deg, #090b0a 0%, #050706 100%);
	padding: 0 0 80px;
}

.policy-page__article {
	margin: 0;
}

.policy-page__hero {
	border-bottom: 1px solid rgba(197, 164, 93, .18);
	padding: 88px 5vw 42px;
}

.policy-page__hero-inner,
.policy-page__body {
	margin: 0 auto;
	max-width: 980px;
	width: 100%;
}

.policy-page__title {
	font-family: var(--serif);
	font-size: clamp(2.7rem, 7vw, 4.8rem);
	font-weight: 400;
	letter-spacing: .04em;
	line-height: .95;
	margin: 0;
	text-transform: uppercase;
}

.policy-page__meta {
	align-items: center;
	color: #b9b6ae;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	letter-spacing: .14em;
	margin-top: 20px;
	text-transform: uppercase;
}

.policy-page__meta,
.policy-page__pagination {
	font-size: .62rem;
}

.policy-page__meta span {
	color: var(--gold);
	font-weight: 700;
}

.policy-page__intro {
	color: #d7d2c8;
	font-family: var(--serif);
	font-size: 1.16rem;
	line-height: 1.7;
	margin: 28px 0 0;
	max-width: 60ch;
}

.policy-page__body {
	padding: 42px 5vw 0;
}

.policy-page__content {
	background: rgba(8, 11, 10, .9);
	border: 1px solid rgba(197, 164, 93, .18);
	box-shadow: 0 24px 72px rgba(0, 0, 0, .24);
	color: #d8d3c8;
	padding: clamp(28px, 4vw, 54px);
}

.policy-page__content > :first-child {
	margin-top: 0;
}

.policy-page__content > :last-child {
	margin-bottom: 0;
}

.policy-page__content :where(p, ul, ol, blockquote, table, pre, .wp-block-group, .wp-block-columns, .wp-block-image, .wp-block-table) {
	margin: 0 0 1.35rem;
}

.policy-page__content :where(h2, h3, h4, h5, h6) {
	color: var(--ivory);
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.15;
	margin: 2.8rem 0 1rem;
}

.policy-page__content h2 {
	font-size: clamp(1.8rem, 4.5vw, 2.5rem);
}

.policy-page__content h3 {
	font-size: clamp(1.4rem, 3.2vw, 1.85rem);
}

.policy-page__content :where(p, li, td, th) {
	font-size: 1rem;
	line-height: 1.85;
}

.policy-page__content ul,
.policy-page__content ol {
	padding-left: 1.4rem;
}

.policy-page__content li + li {
	margin-top: .55rem;
}

.policy-page__content a {
	color: var(--gold-light);
	text-decoration: underline;
	text-decoration-color: rgba(228, 204, 139, .45);
	text-underline-offset: .2em;
}

.policy-page__content a:hover {
	color: var(--ivory);
	text-decoration-color: var(--gold-light);
}

.policy-page__content strong {
	color: var(--ivory);
}

.policy-page__content blockquote {
	border-left: 2px solid rgba(197, 164, 93, .6);
	color: #e4dfd4;
	font-family: var(--serif);
	font-size: 1.08rem;
	margin-left: 0;
	padding-left: 1.2rem;
}

.policy-page__content hr {
	border: 0;
	border-top: 1px solid rgba(197, 164, 93, .18);
	margin: 2rem 0;
}

.policy-page__content table {
	border-collapse: collapse;
	width: 100%;
}

.policy-page__content th,
.policy-page__content td {
	border: 1px solid rgba(197, 164, 93, .18);
	padding: .9rem 1rem;
	text-align: left;
	vertical-align: top;
}

.policy-page__content th {
	color: var(--ivory);
	font-size: .82rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.policy-page__pagination {
	color: #cfc8bb;
	letter-spacing: .14em;
	margin-top: 2rem;
	text-transform: uppercase;
}

.policy-page__pagination a,
.policy-page__pagination span {
	margin-left: .5rem;
}

@media (max-width: 900px) {
	.experience-hero::before,
	.experience-hero::after,
	.experience-hero__logo {
		opacity: .35;
		right: -260px;
	}

	.experience-hero__logo {
		right: 8vw;
		top: auto;
		bottom: 45px;
	}

	.experience-overview {
		grid-template-columns: 1fr;
	}

	.experience-facts {
		position: static;
	}

	.room-grid--related {
		grid-template-columns: 1fr;
	}

	.policy-page__hero {
		padding-top: 72px;
	}

	.policy-page__content {
		padding: 28px 24px;
	}
}

@media (max-width: 600px) {
	.experience-hero {
		min-height: 560px;
		padding: 90px 24px 65px;
	}

	.experience-hero::before,
	.experience-hero::after {
		display: none;
	}

	.experience-hero__logo {
		bottom: 28px;
		height: 132px;
		opacity: .22;
		right: -18px;
		width: 132px;
	}

	.experience-hero h1 {
		font-size: clamp(3rem, 16vw, 4.5rem);
	}

	.experience-facts {
		padding: 30px 24px;
	}

	.policy-page {
		padding-bottom: 56px;
	}

	.policy-page__hero,
	.policy-page__body {
		padding-left: 24px;
		padding-right: 24px;
	}

	.policy-page__meta {
		font-size: .58rem;
	}

	.policy-page__content :where(p, li, td, th) {
		font-size: .95rem;
	}
}
