body.rg-home-page {
	--rg-home-yellow: #f5c518;
	--rg-home-yellow-glow: rgba(245, 197, 24, .18);
	--rg-home-bg: #0c1626;
	--rg-home-bg-2: #13223a;
	--rg-home-bg-3: #1b2e4a;
	--rg-home-bg-4: #243a5c;
	--rg-home-ink: #e9eef7;
	--rg-home-muted: #8c99b1;
	--rg-home-line: rgba(255, 255, 255, .08);
	--rg-home-line-2: rgba(255, 255, 255, .14);
	background: var(--rg-home-bg);
}

body.rg-home-page #top-header,
body.rg-home-page #main-header,
body.rg-home-page #main-footer,
body.rg-home-page .entry-title,
body.rg-home-page .main_title,
body.rg-home-page .et_post_meta_wrapper {
	display: none !important;
}

body.rg-home-page #page-container,
body.rg-home-page #main-content {
	background: var(--rg-home-bg) !important;
	padding-top: 0 !important;
	overflow-x: hidden;
}

body.rg-home-page #main-content .container,
body.rg-home-page #content-area,
body.rg-home-page #left-area,
body.rg-home-page article,
body.rg-home-page .entry-content {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

body.rg-home-page #main-content .container::before,
body.rg-home-page #sidebar {
	display: none !important;
}

body.rg-home-page .entry-content > * {
	margin-block: 0;
}

.rg-home,
.rg-home-nav,
.rg-home-footer {
	box-sizing: border-box;
	color: var(--rg-home-ink);
	font-family: "Manrope", sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.rg-home *,
.rg-home *::before,
.rg-home *::after,
.rg-home-nav *,
.rg-home-nav *::before,
.rg-home-nav *::after,
.rg-home-footer *,
.rg-home-footer *::before,
.rg-home-footer *::after {
	box-sizing: border-box;
}

.rg-home a,
.rg-home-nav a,
.rg-home-footer a {
	color: inherit;
	text-decoration: none;
}

.rg-home img,
.rg-home-nav img,
.rg-home-footer img {
	display: block;
	max-width: 100%;
}

.rg-home-script {
	color: var(--rg-home-yellow);
	font-family: "Allura", cursive;
	font-weight: 400;
	line-height: 1;
}

.rg-home-nav {
	align-items: center;
	display: flex;
	justify-content: space-between;
	left: 0;
	padding: 22px 56px;
	position: fixed;
	right: 0;
	top: 0;
	transition: background-color .3s ease, border-color .3s ease, padding .3s ease;
	z-index: 9999;
}

body.admin-bar .rg-home-nav {
	top: 32px;
}

.rg-home-nav.scrolled {
	background: rgba(12, 22, 38, .92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--rg-home-line);
	padding: 14px 56px;
}

.rg-home-brand,
.rg-home-footer-logo {
	align-items: center;
	display: inline-flex;
	min-width: 132px;
}

.rg-home-logo-img {
	height: auto;
	max-height: 42px;
	max-width: 178px;
	object-fit: contain;
	width: auto;
}

.rg-home-logo-img.footer {
	max-height: 46px;
	max-width: 190px;
}

.rg-home-logo-text {
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.rg-home-logo-text span {
	color: var(--rg-home-yellow);
}

.rg-home-nav-links {
	align-items: center;
	color: #c9d2e2;
	display: flex;
	font-size: .78rem;
	font-weight: 500;
	gap: 36px;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.rg-home-nav-links a:hover,
.rg-home-nav-links a:focus-visible {
	color: var(--rg-home-yellow);
}

.rg-home-dd {
	position: relative;
}

.rg-home-dd-trigger {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	gap: 6px;
}

.rg-home-dd-trigger::after {
	border-bottom: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	content: "";
	height: 6px;
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform .2s ease;
	width: 6px;
}

.rg-home-dd:hover .rg-home-dd-trigger::after,
.rg-home-dd:focus-within .rg-home-dd-trigger::after {
	transform: rotate(-135deg) translate(-2px, -2px);
}

.rg-home-dd-menu {
	background: rgba(19, 34, 58, .96);
	backdrop-filter: blur(14px);
	border: 1px solid var(--rg-home-line-2);
	border-radius: 2px;
	left: 50%;
	min-width: 240px;
	opacity: 0;
	padding: 14px 0;
	position: absolute;
	top: 100%;
	transform: translateX(-50%) translateY(10px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	visibility: hidden;
	z-index: 10000;
}

.rg-home-dd:hover .rg-home-dd-menu,
.rg-home-dd:focus-within .rg-home-dd-menu {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	visibility: visible;
}

.rg-home-dd-menu a {
	color: #cfd6e2;
	display: block;
	font-size: .74rem;
	font-weight: 500;
	letter-spacing: .16em;
	padding: 10px 24px;
}

.rg-home-dd-menu a:hover,
.rg-home-dd-menu a:focus-visible {
	background: rgba(245, 197, 24, .08);
	color: var(--rg-home-yellow);
}

.rg-home-nav-cta {
	background: var(--rg-home-yellow);
	border-radius: 2px;
	color: var(--rg-home-bg);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .22em;
	padding: 11px 22px;
	text-transform: uppercase;
}

.rg-home-nav-cta:hover,
.rg-home-nav-cta:focus-visible {
	background: #fff;
	color: var(--rg-home-bg);
}

.rg-home-hero {
	align-items: center;
	display: flex;
	height: 100vh;
	min-height: 720px;
	overflow: hidden;
	position: relative;
}

.rg-home-hero-bg {
	animation: rgHomeSlowZoom 18s ease-out forwards;
	background-position: center center;
	background-size: cover;
	inset: 0;
	position: absolute;
	transform: scale(1.06);
}

@keyframes rgHomeSlowZoom {
	to {
		transform: scale(1);
	}
}

.rg-home-hero-overlay {
	background:
		radial-gradient(ellipse at 25% 50%, rgba(12, 22, 38, .2), rgba(12, 22, 38, .55) 70%),
		linear-gradient(180deg, rgba(12, 22, 38, .55) 0%, rgba(12, 22, 38, .15) 35%, rgba(12, 22, 38, .95) 100%);
	inset: 0;
	position: absolute;
}

.rg-home-hero-content {
	margin: 0 auto;
	max-width: 1400px;
	padding: 0 64px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.rg-home-eyebrow {
	align-items: center;
	color: var(--rg-home-yellow);
	display: inline-flex;
	font-size: .72rem;
	font-weight: 700;
	gap: 14px;
	letter-spacing: .5em;
	margin-bottom: 32px;
	text-transform: uppercase;
}

.rg-home-eyebrow::before {
	background: var(--rg-home-yellow);
	content: "";
	height: 1px;
	width: 36px;
}

.rg-home-hero h1 {
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 7rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: .96;
	margin: 0;
	max-width: 16ch;
}

.rg-home-hero h1 em,
.rg-home-about-text h2 em,
.rg-home-event-section h2 em,
.rg-home-contact-text h2 em {
	color: var(--rg-home-yellow);
	font-style: italic;
}

.rg-home-hero-lead {
	color: #d3dbe9;
	font-size: 1.25rem;
	line-height: 1.55;
	margin: 36px 0 0;
	max-width: 54ch;
}

.rg-home-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 48px;
}

.rg-home-ctas.no-margin {
	margin-top: 0;
}

.rg-home-btn {
	align-items: center;
	border: 1.5px solid transparent;
	border-radius: 2px;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: .74rem;
	font-weight: 700;
	gap: 10px;
	letter-spacing: .26em;
	padding: 16px 28px;
	text-transform: uppercase;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.rg-home-btn-y {
	background: var(--rg-home-yellow);
	color: var(--rg-home-bg);
}

.rg-home-btn-y:hover,
.rg-home-btn-y:focus-visible {
	background: #fff;
	box-shadow: 0 14px 30px rgba(245, 197, 24, .28);
	color: var(--rg-home-bg);
	transform: translateY(-2px);
}

.rg-home-btn-o {
	border-color: rgba(255, 255, 255, .45);
	color: #fff;
}

.rg-home-btn-o:hover,
.rg-home-btn-o:focus-visible {
	background: rgba(245, 197, 24, .04);
	border-color: var(--rg-home-yellow);
	color: var(--rg-home-yellow);
}

.rg-home-scroll-cue {
	align-items: center;
	bottom: 24px;
	color: #a8b4cc;
	display: flex;
	flex-direction: column;
	font-size: .62rem;
	gap: 10px;
	left: 50%;
	letter-spacing: .4em;
	position: absolute;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.rg-home-scroll-cue::after {
	animation: rgHomeCue 2s infinite;
	background: linear-gradient(180deg, #a8b4cc, transparent);
	content: "";
	height: 36px;
	width: 1px;
}

@keyframes rgHomeCue {
	0%,
	100% {
		opacity: .3;
	}

	50% {
		opacity: 1;
	}
}

.rg-home-section {
	padding: 140px 64px;
	position: relative;
}

.rg-home-container {
	margin: 0 auto;
	max-width: 1320px;
}

.rg-home-sec-head {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	justify-content: space-between;
	margin-bottom: 72px;
}

.rg-home-sec-eyebrow {
	color: var(--rg-home-yellow);
	font-family: "Allura", cursive;
	font-size: 4.5rem;
	line-height: .85;
}

.rg-home-sec-title {
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 3.5rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.02;
	margin-top: 8px;
	max-width: 22ch;
}

.rg-home-sec-num {
	color: var(--rg-home-muted);
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .4em;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.rg-home-sec-intro {
	color: var(--rg-home-muted);
	font-size: 1rem;
	margin: 0;
	max-width: 42ch;
}

.rg-home-intro-band {
	background: var(--rg-home-bg-2);
	padding: 140px 64px;
	position: relative;
	text-align: center;
}

.rg-home-marks {
	color: var(--rg-home-yellow);
	display: block;
	font-family: "Playfair Display", serif;
	font-size: 4rem;
	line-height: .6;
	margin-bottom: 18px;
}

.rg-home-quote {
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 2.8rem;
	font-style: italic;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 auto;
	max-width: 24ch;
}

.rg-home-y {
	color: var(--rg-home-yellow);
	font-style: normal;
}

.rg-home-attr {
	color: var(--rg-home-muted);
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .4em;
	margin-top: 32px;
	text-transform: uppercase;
}

.rg-home-about-section {
	background: var(--rg-home-bg);
}

.rg-home-about-grid {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1.1fr;
}

.rg-home-about-img {
	aspect-ratio: 4 / 5;
	background-position: center;
	background-size: cover;
	border-radius: 2px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
	position: relative;
}

.rg-home-about-img::after {
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 2px;
	content: "";
	inset: 0;
	position: absolute;
}

.rg-home-about-text h2,
.rg-home-event-section h2,
.rg-home-contact-text h2 {
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 3.4rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 8px 0 24px;
}

.rg-home-about-text p,
.rg-home-contact-text p {
	color: #b8c2d6;
	font-size: 1.02rem;
	margin: 0 0 18px;
	max-width: 54ch;
}

.rg-home-about-text p b {
	color: #fff;
	font-weight: 600;
}

.rg-home-about-stats {
	border-top: 1px solid var(--rg-home-line);
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 48px;
	padding-top: 32px;
}

.rg-home-num {
	color: var(--rg-home-yellow);
	font-family: "Playfair Display", serif;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1;
}

.rg-home-num span {
	font-size: .6em;
}

.rg-home-lbl {
	color: var(--rg-home-muted);
	font-size: .66rem;
	font-weight: 600;
	letter-spacing: .28em;
	margin-top: 8px;
	text-transform: uppercase;
}

.rg-home-destinations-section {
	background: var(--rg-home-bg-2);
}

.rg-home-dest-grid {
	background: var(--rg-home-line);
	display: grid;
	gap: 2px;
	grid-template-columns: repeat(3, 1fr);
}

.rg-home-dest-card {
	aspect-ratio: 4 / 5;
	background: var(--rg-home-bg);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	padding: 36px;
	position: relative;
	transition: transform .3s ease;
}

.rg-home-dest-bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	inset: 0;
	position: absolute;
	transition: transform .8s ease;
	z-index: 0;
}

.rg-home-dest-card:hover .rg-home-dest-bg,
.rg-home-dest-card:focus-visible .rg-home-dest-bg {
	transform: scale(1.06);
}

.rg-home-dest-overlay {
	background: linear-gradient(180deg, rgba(12, 22, 38, .2) 0%, rgba(12, 22, 38, .45) 50%, rgba(12, 22, 38, .95) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.rg-home-dest-card > *:not(.rg-home-dest-bg):not(.rg-home-dest-overlay) {
	position: relative;
	z-index: 2;
}

.rg-home-dest-region {
	color: var(--rg-home-yellow);
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .32em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.rg-home-dest-card h3 {
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0 0 14px;
}

.rg-home-dest-card p {
	color: #cfd6e2;
	font-size: .88rem;
	margin: 0 0 22px;
	max-width: 36ch;
}

.rg-home-dest-link {
	align-items: center;
	color: var(--rg-home-yellow);
	display: inline-flex;
	font-size: .7rem;
	font-weight: 700;
	gap: 10px;
	letter-spacing: .26em;
	text-transform: uppercase;
	transition: color .2s ease;
}

.rg-home-dest-link::after {
	content: "\2192";
	transition: transform .2s ease;
}

.rg-home-dest-card:hover .rg-home-dest-link,
.rg-home-dest-card:focus-visible .rg-home-dest-link {
	color: #fff;
}

.rg-home-dest-card:hover .rg-home-dest-link::after,
.rg-home-dest-card:focus-visible .rg-home-dest-link::after {
	transform: translateX(4px);
}

.rg-home-dest-bg.casa {
	background-image: url("../images/casa-de-campo.jpg");
}

.rg-home-dest-bg.cabo {
	background-image: linear-gradient(160deg, #e87d3a 0%, #a83b2e 50%, #3d1e1a 100%);
}

.rg-home-dest-bg.standrews {
	background-image: linear-gradient(160deg, #4a6c8a 0%, #243a52 50%, #0e1a2a 100%);
}

.rg-home-dest-bg.westcoast {
	background-image: linear-gradient(160deg, #3d6b6e 0%, #1f3b40 50%, #0a1518 100%);
}

.rg-home-dest-bg.highlands {
	background-image: linear-gradient(160deg, #6e4e3a 0%, #3a2920 50%, #15110d 100%);
}

.rg-home-dest-bg.northeast {
	background-image: linear-gradient(160deg, #4a5a6e 0%, #1f2d3c 50%, #0a1018 100%);
}

.rg-home-event-section {
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.rg-home-event-wrap {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: 1.3fr 1fr;
}

.rg-home-event-tag {
	align-items: center;
	color: var(--rg-home-yellow);
	display: inline-flex;
	font-size: .66rem;
	font-weight: 800;
	gap: 10px;
	letter-spacing: .4em;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.rg-home-event-tag::before {
	background: var(--rg-home-yellow);
	content: "";
	height: 1px;
	width: 28px;
}

.rg-home-event-section h2 {
	font-size: 3.8rem;
	line-height: 1.02;
}

.rg-home-meta {
	color: #cfd6e2;
	font-size: 1.02rem;
	margin: 0 0 18px;
}

.rg-home-lead {
	color: #b8c2d6;
	font-size: 1rem;
	margin: 0 0 36px;
	max-width: 54ch;
}

.rg-home-event-card {
	background: rgba(255, 255, 255, .04);
	backdrop-filter: blur(10px);
	border: 1px solid var(--rg-home-line-2);
	border-radius: 2px;
	padding: 36px;
}

.rg-home-event-card-lbl {
	color: var(--rg-home-yellow);
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .32em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.rg-home-when {
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 18px;
}

.rg-home-event-card-rows {
	border-top: 1px dashed var(--rg-home-line-2);
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-top: 18px;
}

.rg-home-event-card-row {
	display: flex;
	font-size: .88rem;
	justify-content: space-between;
}

.rg-home-k {
	color: var(--rg-home-muted);
	letter-spacing: .04em;
}

.rg-home-v {
	color: #fff;
	font-weight: 600;
	text-align: right;
}

.rg-home-promise-band {
	background: var(--rg-home-bg);
	border-bottom: 1px solid var(--rg-home-line);
	border-top: 1px solid var(--rg-home-line);
	padding: 80px 64px;
	position: relative;
}

.rg-home-promise-grid {
	display: grid;
	gap: 48px;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto;
	max-width: 1320px;
}

.rg-home-promise-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: left;
}

.rg-home-ico {
	align-items: center;
	border: 1.5px solid var(--rg-home-yellow);
	border-radius: 50%;
	color: var(--rg-home-yellow);
	display: flex;
	height: 44px;
	justify-content: center;
	margin-bottom: 8px;
	width: 44px;
}

.rg-home-ico svg {
	height: 20px;
	width: 20px;
}

.rg-home-promise-item h4 {
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.15;
	margin: 0;
}

.rg-home-promise-item p {
	color: var(--rg-home-muted);
	font-size: .88rem;
	margin: 0;
}

.rg-home-contact-section {
	background: var(--rg-home-bg-2);
	border-top: 1px solid var(--rg-home-line);
}

.rg-home-contact-grid {
	align-items: start;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1.1fr;
}

.rg-home-contact-info {
	border-top: 1px solid var(--rg-home-line);
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 36px;
	padding-top: 32px;
}

.rg-home-row {
	align-items: center;
	color: #dbe2ef;
	display: flex;
	font-size: .95rem;
	gap: 14px;
}

.rg-home-row b {
	color: var(--rg-home-yellow);
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .3em;
	min-width: 80px;
	text-transform: uppercase;
}

.rg-home-row a:hover,
.rg-home-row a:focus-visible {
	color: var(--rg-home-yellow);
}

.rg-home-contact-form {
	background: rgba(0, 0, 0, .18);
	border: 1px solid var(--rg-home-line);
	border-radius: 2px;
	margin: 0;
	padding: 48px;
}

.rg-home-cf-grid {
	display: grid;
	gap: 18px 20px;
	grid-template-columns: 1fr 1fr;
}

.rg-home-cf-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.rg-home-cf-field.full {
	grid-column: 1 / -1;
}

.rg-home-cf-label {
	align-items: center;
	color: var(--rg-home-muted);
	display: flex;
	font-size: .68rem;
	font-weight: 600;
	gap: 8px;
	letter-spacing: .24em;
	text-transform: uppercase;
}

.rg-home-req {
	color: var(--rg-home-yellow);
	font-size: 1.2em;
	line-height: .8;
}

.rg-home-input,
.rg-home-select,
.rg-home-textarea {
	background-color: rgba(0, 0, 0, .22);
	border: 1px solid var(--rg-home-line-2);
	border-radius: 2px;
	color: #fff;
	font-family: inherit;
	font-size: .95rem;
	line-height: 1.4;
	padding: 14px 16px;
	transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
	width: 100%;
}

.rg-home-input:hover,
.rg-home-select:hover {
	border-color: rgba(255, 255, 255, .25);
}

.rg-home-input:focus,
.rg-home-select:focus,
.rg-home-textarea:focus {
	background-color: rgba(245, 197, 24, .04);
	border-color: var(--rg-home-yellow);
	box-shadow: 0 0 0 3px rgba(245, 197, 24, .12);
	outline: none;
}

.rg-home-input::placeholder,
.rg-home-textarea::placeholder {
	color: #5a6781;
	opacity: 1;
}

.rg-home-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238C99B1' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
	background-position: right 16px center;
	background-repeat: no-repeat;
	cursor: pointer;
	padding-right: 36px;
}

.rg-home-select option {
	background: var(--rg-home-bg-2);
	color: #fff;
}

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

.rg-home-cf-submit {
	background: var(--rg-home-yellow);
	border: none;
	border-radius: 2px;
	color: var(--rg-home-bg);
	cursor: pointer;
	font-family: inherit;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .28em;
	margin-top: 8px;
	padding: 18px 24px;
	text-transform: uppercase;
	transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
	width: 100%;
}

.rg-home-cf-submit:hover,
.rg-home-cf-submit:focus-visible {
	background: #fff;
	box-shadow: 0 12px 30px rgba(245, 197, 24, .25);
	color: var(--rg-home-bg);
	transform: translateY(-1px);
}

.rg-home-form-note {
	color: var(--rg-home-yellow);
	font-size: .82rem;
	margin: 10px 0 0;
	min-height: 1.2em;
}

.rg-home-footer {
	background: #06101f;
	border-top: 1px solid var(--rg-home-line);
	color: #9aa6bb;
	padding: 80px 64px 40px;
}

.rg-home-footer-grid {
	display: grid;
	gap: 64px;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	margin: 0 auto;
	max-width: 1320px;
}

.rg-home-footer-brand p {
	color: #7c8a9f;
	font-size: .92rem;
	margin: 16px 0 24px;
	max-width: 36ch;
}

.rg-home-social {
	display: flex;
	gap: 12px;
}

.rg-home-social a {
	align-items: center;
	border: 1px solid var(--rg-home-line-2);
	border-radius: 50%;
	color: #9aa6bb;
	display: flex;
	height: 36px;
	justify-content: center;
	transition: border-color .2s ease, color .2s ease;
	width: 36px;
}

.rg-home-social a:hover,
.rg-home-social a:focus-visible {
	border-color: var(--rg-home-yellow);
	color: var(--rg-home-yellow);
}

.rg-home-social svg {
	height: 16px;
	width: 16px;
}

.rg-home-footer-col h5 {
	color: var(--rg-home-yellow);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .3em;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.rg-home-footer-col a {
	color: #9aa6bb;
	display: block;
	font-size: .88rem;
	padding: 6px 0;
	transition: color .15s ease, padding-left .15s ease;
}

.rg-home-footer-col a:hover,
.rg-home-footer-col a:focus-visible {
	color: #fff;
	padding-left: 6px;
}

.rg-home-footer-bottom {
	align-items: center;
	border-top: 1px solid var(--rg-home-line);
	color: #6a7891;
	display: flex;
	flex-wrap: wrap;
	font-size: .78rem;
	gap: 16px;
	justify-content: space-between;
	letter-spacing: .08em;
	margin: 64px auto 0;
	max-width: 1320px;
	padding-top: 24px;
}

@media (max-width: 1180px) {
	.rg-home-hero h1 {
		font-size: 5.8rem;
	}

	.rg-home-sec-title,
	.rg-home-event-section h2 {
		font-size: 3rem;
	}

	.rg-home-about-text h2,
	.rg-home-contact-text h2 {
		font-size: 3rem;
	}
}

@media (max-width: 980px) {
	body.admin-bar .rg-home-nav {
		top: 46px;
	}

	.rg-home-nav,
	.rg-home-section,
	.rg-home-intro-band,
	.rg-home-promise-band,
	.rg-home-footer {
		padding-left: 24px;
		padding-right: 24px;
	}

	.rg-home-nav {
		padding-bottom: 16px;
		padding-top: 16px;
	}

	.rg-home-nav.scrolled {
		padding-left: 24px;
		padding-right: 24px;
	}

	.rg-home-nav-links {
		display: none;
	}

	.rg-home-logo-img {
		max-height: 36px;
		max-width: 150px;
	}

	.rg-home-hero {
		min-height: 600px;
	}

	.rg-home-hero-content {
		padding: 0 24px;
	}

	.rg-home-hero h1 {
		font-size: 4.4rem;
	}

	.rg-home-hero-lead {
		font-size: 1.08rem;
	}

	.rg-home-sec-eyebrow {
		font-size: 3.6rem;
	}

	.rg-home-sec-title,
	.rg-home-event-section h2,
	.rg-home-about-text h2,
	.rg-home-contact-text h2 {
		font-size: 2.55rem;
	}

	.rg-home-about-grid,
	.rg-home-event-wrap,
	.rg-home-contact-grid {
		gap: 40px;
		grid-template-columns: 1fr;
	}

	.rg-home-dest-grid {
		grid-template-columns: 1fr;
	}

	.rg-home-dest-card {
		aspect-ratio: 16 / 10;
	}

	.rg-home-promise-grid {
		gap: 32px;
		grid-template-columns: repeat(2, 1fr);
	}

	.rg-home-footer-grid {
		gap: 36px;
		grid-template-columns: 1fr 1fr;
	}

	.rg-home-contact-form {
		padding: 28px;
	}

	.rg-home-cf-grid {
		grid-template-columns: 1fr;
	}

	.rg-home-about-stats {
		gap: 18px;
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.rg-home-nav {
		padding-left: 18px;
		padding-right: 18px;
	}

	.rg-home-brand,
	.rg-home-footer-logo {
		min-width: 0;
	}

	.rg-home-nav-cta {
		font-size: .66rem;
		letter-spacing: .16em;
		padding: 10px 14px;
	}

	.rg-home-hero h1 {
		font-size: 3.35rem;
	}

	.rg-home-eyebrow {
		font-size: .64rem;
		letter-spacing: .32em;
	}

	.rg-home-quote {
		font-size: 2rem;
	}

	.rg-home-sec-eyebrow {
		font-size: 3rem;
	}

	.rg-home-sec-title,
	.rg-home-event-section h2,
	.rg-home-about-text h2,
	.rg-home-contact-text h2 {
		font-size: 2.15rem;
	}

	.rg-home-dest-card {
		aspect-ratio: auto;
		min-height: 420px;
	}

	.rg-home-about-stats,
	.rg-home-promise-grid,
	.rg-home-footer-grid {
		grid-template-columns: 1fr;
	}

	.rg-home-footer-bottom {
		justify-content: center;
		text-align: center;
	}

	.rg-home-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}
}

.rg-home-editor-card {
	background: #0c1626;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 6px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
	color: #e9eef7;
	font-family: "Manrope", sans-serif;
	margin: 18px 0;
	padding: 22px;
}

.rg-home-editor-card .components-base-control,
.rg-home-editor-card .components-panel__body,
.rg-home-editor-card .components-toggle-control {
	color: #e9eef7;
}

.rg-home-editor-card .components-base-control__label,
.rg-home-editor-card .components-toggle-control__label,
.rg-home-editor-rich-wrap > label {
	color: #f5c518;
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .18em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.rg-home-editor-card input,
.rg-home-editor-card textarea,
.rg-home-editor-card select,
.rg-home-editor-rich {
	background: rgba(0, 0, 0, .22) !important;
	border: 1px solid rgba(255, 255, 255, .16) !important;
	border-radius: 2px !important;
	color: #fff !important;
	font-family: "Manrope", sans-serif !important;
	min-height: 42px;
	padding: 10px 12px !important;
}

.rg-home-editor-card textarea {
	min-height: 92px;
}

.rg-home-editor-card input:focus,
.rg-home-editor-card textarea:focus,
.rg-home-editor-card select:focus,
.rg-home-editor-rich:focus {
	border-color: #f5c518 !important;
	box-shadow: 0 0 0 2px rgba(245, 197, 24, .16) !important;
	outline: none !important;
}

.rg-home-editor-card .components-panel__body {
	background: rgba(255, 255, 255, .035);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 4px;
	margin: 12px 0;
}

.rg-home-editor-card .components-panel__body-title button {
	color: #fff !important;
	font-weight: 700;
}

.rg-home-editor-card .components-button.is-secondary {
	background: #f5c518;
	border-color: #f5c518;
	color: #0c1626;
	font-weight: 800;
	margin-top: 10px;
}

.rg-home-editor-card .components-button.is-link.is-destructive {
	color: #f5c518;
	margin-top: 10px;
	text-decoration: none;
}

.rg-home-editor-card-head {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-bottom: 14px;
	padding-bottom: 12px;
}

.rg-home-editor-card-head span {
	color: #8c99b1;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .24em;
	text-transform: uppercase;
}

.rg-home-editor-card-head strong {
	color: #f5c518;
	font-family: "Playfair Display", serif;
	font-size: 24px;
	font-weight: 500;
}

.rg-home-editor-subtitle,
.rg-home-editor-help {
	color: #9aa6bb;
	font-size: 13px;
	margin: 0 0 18px;
}

.rg-home-editor-group {
	background: rgba(255, 255, 255, .025);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 4px;
	margin: 16px 0;
	padding: 16px;
}

.rg-home-editor-group h4,
.rg-home-editor-list > h4 {
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 14px;
}

.rg-home-editor-grid {
	display: grid;
	gap: 14px 18px;
	grid-template-columns: 1fr;
}

.rg-home-editor-grid.two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rg-home-editor-rich-wrap {
	margin: 0 0 16px;
}

.rg-home-editor-rich {
	line-height: 1.5;
	min-height: 58px;
}

.rg-home-editor-image-control {
	margin-bottom: 18px;
}

.rg-home-editor-thumb {
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 2px;
	display: block;
	margin: 8px 0 4px;
	max-height: 180px;
	object-fit: cover;
	width: 100%;
}

.rg-home-editor-card-image-control {
	background: rgba(0, 0, 0, .16);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 4px;
	margin: 0 0 16px;
	padding: 12px;
}

.rg-home-editor-card-image-control > label {
	color: #f5c518;
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .18em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.rg-home-editor-card-image-preview,
.rg-home-editor-card-image-empty {
	align-items: center;
	aspect-ratio: 16 / 9;
	background-color: #13223a;
	background-position: center;
	background-size: cover;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 2px;
	color: #8c99b1;
	display: flex;
	font-size: 13px;
	justify-content: center;
	margin-bottom: 10px;
	min-height: 160px;
	text-align: center;
	width: 100%;
}

.rg-home-editor-list {
	margin: 18px 0;
}

@media (max-width: 760px) {
	.rg-home-editor-grid.two {
		grid-template-columns: 1fr;
	}
}

/* Consistent contact phone field sizing and formatting */
.rg-home-input,
.rg-home-select {
	height: 52px;
	min-height: 52px;
}

.rg-home-phone-input {
	font-variant-numeric: tabular-nums;
	letter-spacing: .02em;
}
/* Force readable typed text in contact fields */
.rg-home-contact-form .rg-home-input,
.rg-home-contact-form .rg-home-select,
.rg-home-contact-form .rg-home-textarea {
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	caret-color: var(--rg-home-yellow);
}

.rg-home-contact-form .rg-home-input:focus,
.rg-home-contact-form .rg-home-select:focus,
.rg-home-contact-form .rg-home-textarea:focus {
	color: #fff !important;
	-webkit-text-fill-color: #fff;
}

.rg-home-contact-form .rg-home-input:-webkit-autofill,
.rg-home-contact-form .rg-home-select:-webkit-autofill,
.rg-home-contact-form .rg-home-textarea:-webkit-autofill {
	-webkit-text-fill-color: #fff;
	transition: background-color 9999s ease-out;
}

/* Keep contact fields dark in every state */
.rg-home-contact-form .rg-home-input,
.rg-home-contact-form .rg-home-select,
.rg-home-contact-form .rg-home-textarea,
.rg-home-contact-form .rg-home-input:hover,
.rg-home-contact-form .rg-home-select:hover,
.rg-home-contact-form .rg-home-textarea:hover {
	background-color: #0c1626 !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
}

.rg-home-contact-form .rg-home-input:focus,
.rg-home-contact-form .rg-home-select:focus,
.rg-home-contact-form .rg-home-textarea:focus {
	background-color: #0c1626 !important;
	border-color: var(--rg-home-yellow) !important;
	box-shadow: 0 0 0 3px rgba(245, 197, 24, .14);
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	outline: none;
}

.rg-home-contact-form .rg-home-input:-webkit-autofill,
.rg-home-contact-form .rg-home-select:-webkit-autofill,
.rg-home-contact-form .rg-home-textarea:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #0c1626 inset;
	-webkit-text-fill-color: #fff;
	caret-color: var(--rg-home-yellow);
}
