/**
 * RP27 Splash Theme — Main Styles
 *
 * Typography: Archivo (body/headings) and Sea Weed Script (display accents)
 * are registered in theme.json and self-hosted in assets/fonts/.
 */

/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
	--rp27-navy-ink: #1d223b;
	--rp27-sea-green: #1a7c67;
	--rp27-burnt-orange: #ce6334;
	--rp27-coral-orange: #e57c4d;
	--rp27-antique-gold: #d0ac72;
	--rp27-parchment: #f3e0bd;
	--rp27-parchment-deep: #e0c896;
	--rp27-parchment-wave-top: #ecd8b0;
	--rp27-parchment-wave-bottom: #e6d0a8;
	--rp27-white: #ffffff;
	--rp27-black: #000000;
	--rp27-radius-pill: 999px;
	--rp27-radius-card: 1rem;
	--rp27-shadow-soft: 0 12px 40px rgba(29, 34, 59, 0.12);
	--rp27-focus-ring: 0 0 0 3px rgba(229, 124, 77, 0.45);
	--rp27-header-height: calc(118px + 1rem);
	--scroll-margin-top: 90px;
	--rp27-btn-min-height: 3.25rem;
	--rp27-btn-padding-block: 1rem;
	--rp27-btn-padding-inline: 2rem;
	--rp27-btn-font-size: 1.0625rem;
	--rp27-wave-height: clamp(48px, 6vw, 96px);
	--rp27-hero-top-wave-height: clamp(42px, 4.5vw, 72px);
	--rp27-wave-gap: clamp(2.75rem, 4.5vw, 3.5rem);
	--rp27-subscribe-control-height: 3.5rem;
	--rp27-inner-width: 1200px;
	--rp27-page-gutter: clamp(1.25rem, 4vw, 2rem);
}

html {
	scroll-behavior: smooth;
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.rp27-wave-divider__track {
		will-change: auto;
		transform: none !important;
	}
}

body {
	font-family: var(--wp--preset--font-family--archivo), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--rp27-navy-ink);
	background: var(--rp27-white);
	overflow-x: clip;
}

/* ==========================================================================
   Layout — shared inner width (1200px)
   ========================================================================== */

.rp27-inner,
.rp27-section__inner,
.rp27-footer__inner,
.rp27-footer-noria__inner,
.rp27-hero__inner,
.rp27-hero__content,
.rp27-video__inner,
.rp27-get-involved__inner,
.rp27-gallery__inner {
	width: min(var(--rp27-inner-width), calc(100% - (var(--rp27-page-gutter) * 2)));
	margin-inline: auto;
}

/* ==========================================================================
   Splash layout — remove gaps between major sections
   ========================================================================== */

.wp-site-blocks > * + * {
	margin-block-start: 0;
}

header.rp27-header + main.rp27-splash,
.wp-site-blocks > header.rp27-header + main.rp27-splash {
	margin-block-start: 0 !important;
}

.rp27-splash.wp-block-group {
	gap: 0;
	margin-block: 0;
}

.rp27-splash.is-layout-flow > * {
	margin-block-start: 0;
}

.rp27-splash > .wp-block-group + .wp-block-group,
.rp27-splash > .rp27-section + .rp27-section,
.rp27-section + .rp27-section {
	margin-block-start: 0;
}

.rp27-section {
	position: relative;
	overflow: hidden;
	margin-block: 0;
}

/* ==========================================================================
   Wave dividers
   ========================================================================== */

.rp27-wave-divider {
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 100vw;
	max-width: none;
	transform: translateX(-50%);
	line-height: 0;
	pointer-events: none;
	z-index: 2;
	overflow: hidden;
}

.rp27-wave-divider__motion {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	line-height: 0;
}

.rp27-wave-divider__track {
	display: flex;
	width: 300%;
	margin-left: -100%;
	height: 100%;
	will-change: transform;
	line-height: 0;
}

.rp27-wave-divider__seam {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: var(--rp27-wave-height);
	shape-rendering: geometricPrecision;
}

.rp27-wave-divider__svg {
	flex: 0 0 33.3333%;
	width: 33.3333%;
	max-width: none;
	height: 100%;
	display: block;
	shape-rendering: geometricPrecision;
}

.rp27-wave-divider__svg + .rp27-wave-divider__svg {
	margin-left: -1px;
}

/* Equal breathing room above and below each wave transition */
.rp27-hero,
.rp27-video,
.rp27-get-involved,
.rp27-gallery {
	padding-bottom: calc(var(--rp27-wave-gap) + var(--rp27-wave-height));
}

.rp27-video,
.rp27-get-involved,
.rp27-gallery {
	padding-top: var(--rp27-wave-gap);
}

.rp27-get-involved {
	--rp27-wave-gap: clamp(2.75rem, 4.5vw, 3.5rem);
}

.rp27-gallery {
	padding-top: clamp(4rem, 6.5vw, 5.5rem);
	padding-bottom: max(
		clamp(6.5rem, 9vw, 8rem),
		calc(var(--rp27-wave-gap) + var(--rp27-wave-height))
	);
}

.rp27-wave-divider--hero .rp27-wave-divider__seam path,
.rp27-wave-divider--hero .rp27-wave-divider__track path {
	fill: var(--wp--preset--color--parchment, var(--rp27-parchment));
}

.rp27-wave-divider--about .rp27-wave-divider__seam path,
.rp27-wave-divider--about .rp27-wave-divider__track path {
	fill: var(--wp--preset--color--white, var(--rp27-white));
}

.rp27-wave-divider--involved .rp27-wave-divider__seam path,
.rp27-wave-divider--involved .rp27-wave-divider__track path {
	fill: var(--wp--preset--color--sea-green, var(--rp27-sea-green));
}

.rp27-wave-divider--gallery .rp27-wave-divider__seam path,
.rp27-wave-divider--gallery .rp27-wave-divider__track path {
	fill: var(--wp--preset--color--navy-ink, var(--rp27-navy-ink));
}

.rp27-section > .wp-block-group:not(.rp27-wave-divider),
.rp27-section__inner,
.rp27-hero__content,
.rp27-video__inner,
.rp27-get-involved__inner,
.rp27-gallery__inner {
	position: relative;
	z-index: 2;
}

@media (max-width: 700px) {
	:root {
		--rp27-wave-height: 54px;
	}

	.rp27-wave-divider__seam {
		height: var(--rp27-wave-height);
	}
}

.rp27-splash .alignfull {
	max-width: none;
	width: 100%;
}

.entry-content > .wp-block-group + .wp-block-group,
.entry-content > * + * {
	margin-block-start: 0;
}

[id] {
	scroll-margin-top: var(--scroll-margin-top);
}

.has-seaweed-script-font-family,
.rp27-hero__accent {
	font-family: var(--wp--preset--font-family--seaweed-script), cursive;
	font-weight: 400;
}

/* ==========================================================================
   Buttons & links
   ========================================================================== */

.rp27-button,
.wp-block-button .wp-block-button__link {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--rp27-btn-min-height);
	padding: var(--rp27-btn-padding-block) var(--rp27-btn-padding-inline);
	border: 2px solid transparent;
	border-radius: var(--rp27-radius-pill);
	font-family: var(--wp--preset--font-family--archivo), system-ui, sans-serif;
	font-size: var(--rp27-btn-font-size);
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wp-block-button .wp-block-button__link {
	height: auto;
}

.rp27-button {
	background: var(--rp27-burnt-orange);
	border-color: var(--rp27-burnt-orange);
	color: var(--rp27-white);
}

.rp27-button:hover,
.rp27-button:focus-visible {
	background: var(--rp27-coral-orange);
	border-color: var(--rp27-coral-orange);
	color: var(--rp27-white);
}

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

.rp27-button--outline:hover,
.rp27-button--outline:focus-visible {
	background: var(--rp27-antique-gold);
	border-color: var(--rp27-antique-gold);
	color: var(--rp27-navy-ink);
}

.rp27-button:focus-visible,
.rp27-primary-nav a:focus-visible,
.rp27-nav-toggle:focus-visible,
.rp27-tabs__tab:focus-visible,
a:focus-visible,
button:focus-visible {
	outline: none;
	box-shadow: var(--rp27-focus-ring);
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border-color: var(--rp27-antique-gold);
	color: var(--rp27-parchment);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
	background: var(--rp27-antique-gold);
	border-color: var(--rp27-antique-gold);
	color: var(--rp27-navy-ink);
}

.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
	border-color: var(--rp27-burnt-orange);
}

.wp-block-button.is-style-fill .wp-block-button__link:hover,
.wp-block-button.is-style-fill .wp-block-button__link:focus-visible,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:focus-visible {
	border-color: var(--rp27-coral-orange);
}

/* ==========================================================================
   Header & navigation
   ========================================================================== */

.wp-site-blocks > header.rp27-header,
.wp-site-blocks > .rp27-header,
header.rp27-header {
	max-width: none;
	width: 100%;
}

.rp27-header {
	position: sticky;
	top: 0;
	z-index: 100;
	margin: 0;
	padding: 0 !important;
	background-color: var(--rp27-parchment-wave-top);
	background-image: linear-gradient(to bottom, #f0ede6 0%, #ecd8b0 100%);
}

.rp27-header .rp27-header__inner {
	position: relative;
}

.rp27-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: min(var(--rp27-inner-width), 100%);
	margin-inline: auto;
	padding-top: clamp(0.75rem, 1.6vw, 1.25rem);
	padding-bottom: 0;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

@media (min-width: 1261px) {
	.rp27-header__inner {
		padding-inline: 0;
	}
}

@media (max-width: 1260px) {
	.rp27-header__inner {
		padding-inline: clamp(1.5rem, 4vw, 3rem);
	}
}

@media (max-width: 900px) {
	.rp27-header__inner {
		padding-inline: 1.75rem;
	}
}

@media (max-width: 700px) {
	.rp27-header__inner {
		padding-inline: 1.25rem;
	}
}

@media (max-width: 420px) {
	.rp27-header__inner {
		padding-inline: 1rem;
	}
}

.rp27-logo-link {
	display: inline-block;
	flex-shrink: 0;
	line-height: 0;
	text-decoration: none;
}

.rp27-logo-link img {
	display: block;
	opacity: 1;
	transition: opacity 0.25s ease;
}

.rp27-logo-link:hover img,
.rp27-logo-link:focus-visible img {
	opacity: 0.82;
}

.rp27-header .rp27-logo-link img,
.rp27-header__logo {
	width: 145px;
	max-width: 145px;
	height: auto;
}

@media (max-width: 768px) {
	.rp27-header .rp27-logo-link img,
	.rp27-header__logo {
		width: 112px;
		max-width: 112px;
	}

	:root {
		--rp27-header-height: calc(91px + 1rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.rp27-logo-link img {
		transition: none;
	}
}

.rp27-nav-toggle {
	display: none;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	border: 2px solid var(--rp27-navy-ink);
	border-radius: 0.5rem;
	background: transparent;
	color: var(--rp27-navy-ink);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.rp27-nav-toggle__bars {
	position: relative;
	width: 1.25rem;
	height: 2px;
	background: currentColor;
}

.rp27-nav-toggle__bars::before,
.rp27-nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
}

.rp27-nav-toggle__bars::before {
	top: -6px;
}

.rp27-nav-toggle__bars::after {
	top: 6px;
}

.rp27-primary-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.rp27-primary-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rp27-primary-nav__list a {
	color: var(--rp27-navy-ink);
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 600;
}

.rp27-primary-nav__list a:hover,
.rp27-primary-nav__list a:focus-visible {
	color: var(--rp27-sea-green);
}

.rp27-header__cta {
	white-space: nowrap;
}

@media (max-width: 768px) {
	.rp27-nav-toggle {
		display: inline-flex;
	}

	.rp27-primary-nav {
		position: absolute;
		top: 100%;
		right: 1rem;
		left: 1rem;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		padding: 1rem;
		border-radius: var(--rp27-radius-card);
		background: linear-gradient(to bottom, #f3e0bd 0%, #ecd8b0 100%);
		border: 1px solid rgba(29, 34, 59, 0.1);
		box-shadow: var(--rp27-shadow-soft);
	}

	.rp27-primary-nav.is-open {
		display: flex;
	}

	.rp27-primary-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.rp27-header__cta {
		width: 100%;
		text-align: center;
	}
}

/* ==========================================================================
   Hero
   ========================================================================== */

.rp27-hero {
	position: relative;
	isolation: isolate;
	overflow: visible;
	margin-block-start: -1px;
	text-align: center;
	padding-top: calc(clamp(4.5rem, 7vw, 7rem) + var(--rp27-hero-top-wave-height) * 0.55);
	--rp27-wave-gap: clamp(2.25rem, 3.5vw, 2.75rem);
	background-color: var(--wp--preset--color--navy-ink, #1d223b);
	background-image:
		radial-gradient(circle at 12% 18%, rgba(243, 224, 189, 0.08) 0%, rgba(243, 224, 189, 0) 30%),
		linear-gradient(120deg, #1d223b 0%, #162a42 55%, #10334a 100%);
}

.rp27-section.rp27-hero,
.rp27-hero.rp27-section {
	overflow: visible;
}

.rp27-hero.has-navy-ink-background-color {
	background-color: var(--wp--preset--color--navy-ink, #1d223b) !important;
}

.rp27-hero__top-wave {
	position: absolute;
	top: 0;
	bottom: auto;
	left: 50%;
	width: 100vw;
	max-width: none;
	height: var(--rp27-hero-top-wave-height);
	transform: translateX(-50%);
	line-height: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 4;
}

.rp27-hero__top-wave .rp27-wave-divider__seam,
.rp27-hero__top-wave svg {
	display: block;
	width: 100%;
	height: var(--rp27-hero-top-wave-height);
	shape-rendering: geometricPrecision;
}

.rp27-hero__top-wave .rp27-wave-divider__seam path {
	fill: var(--rp27-parchment-wave-top, #ecd8b0);
}

/* Mobile map texture (parallax target) */
.rp27-hero__bg-wrap {
	position: absolute;
	top: calc(-1 * var(--rp27-hero-top-wave-height));
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.rp27-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 130%;
	background-image: url("../images/bg-hero.jpg");
	background-repeat: no-repeat;
	background-position: 50% 42%;
	background-size: cover;
	opacity: 0.62;
	will-change: transform;
}

/* Overlay + coastal atmosphere */
.rp27-hero::after {
	content: "";
	position: absolute;
	top: calc(-1 * var(--rp27-hero-top-wave-height));
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-image:
		linear-gradient(
			180deg,
			rgba(29, 34, 59, 0.24) 0%,
			rgba(29, 34, 59, 0.36) 55%,
			rgba(16, 48, 69, 0.44) 100%
		),
		linear-gradient(to bottom, transparent 0%, rgba(29, 34, 59, 0.14) 100%),
		radial-gradient(ellipse 90% 55% at 50% 100%, rgba(243, 224, 189, 0.08), transparent 68%),
		radial-gradient(circle at 18% 88%, rgba(26, 124, 103, 0.05), transparent 38%);
	background-repeat: no-repeat;
	background-position: center, center, center bottom, 18% 88%;
	background-size: auto, auto, 100% 100%, 40% 40%;
	pointer-events: none;
}

.rp27-hero__inner,
.rp27-hero__content {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 1rem;
	justify-items: center;
}

.rp27-hero__accent {
	margin: 0 0 0.15rem;
	font-size: clamp(1.65rem, 3.5vw, 2.65rem);
	line-height: 1.05;
	color: var(--rp27-coral-orange);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.rp27-hero__title {
	font-size: clamp(2.75rem, 4.25vw, 4.35rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.045em;
	text-wrap: balance;
	color: var(--wp--preset--color--parchment, var(--rp27-parchment));
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.rp27-hero__title span {
	display: block;
}

@media (min-width: 701px) {
	.rp27-hero__title span {
		white-space: nowrap;
	}
}

.rp27-hero__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(0.9rem, 2vw, 1.6rem);
	margin-top: clamp(0.85rem, 1.5vw, 1.2rem);
	color: var(--wp--preset--color--parchment, var(--rp27-parchment));
	font-family: var(--wp--preset--font-family--archivo), system-ui, sans-serif;
	font-size: clamp(1.25rem, 2vw, 1.85rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.rp27-hero__divider {
	display: block;
	flex-shrink: 0;
	width: 1px;
	height: 1.35em;
	background: currentColor;
	opacity: 0.45;
}

.rp27-hero__location,
.rp27-hero__date {
	margin: 0;
	white-space: nowrap;
}

.rp27-hero__intro {
	max-width: 820px;
	margin: 1rem auto 0;
}

.rp27-hero__ctas,
.rp27-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 1.25rem;
	gap: 1rem;
}

@media (max-width: 700px) {
	:root {
		--rp27-hero-top-wave-height: 42px;
	}

	.rp27-hero {
		padding-top: calc(3.75rem + var(--rp27-hero-top-wave-height) * 0.45);
	}

	.rp27-hero__bg {
		opacity: 0.5;
		background-position: center top;
		height: 120%;
	}

	.rp27-hero::after {
		background-size: auto, auto, 100% 100%, 50% 50%;
	}

	.rp27-hero__accent {
		font-size: clamp(1.5rem, 7vw, 2rem);
	}

	.rp27-hero__title {
		max-width: none;
		font-size: clamp(2.75rem, 12vw, 4.5rem);
		line-height: 0.95;
		letter-spacing: -0.03em;
	}

	.rp27-hero__intro {
		margin-top: 1.25rem;
	}
}

@media (max-width: 640px) {
	.rp27-hero__meta {
		flex-direction: column;
		gap: 0.45rem;
		font-size: clamp(1rem, 5vw, 1.35rem);
		letter-spacing: 0.045em;
	}

	.rp27-hero__location,
	.rp27-hero__date {
		white-space: normal;
	}

	.rp27-hero__divider {
		width: 72px;
		height: 1px;
	}
}

/* ==========================================================================
   Video
   ========================================================================== */

.rp27-video {
	width: 100%;
}

.rp27-video__inner {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 2rem;
}

.rp27-video h2 {
	margin: 0;
	text-align: center;
	text-wrap: balance;
}

.rp27-video .wp-block-embed,
.rp27-video__embed {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
	margin-block: 0;
	border-radius: var(--rp27-radius-card);
	overflow: hidden;
	box-shadow: var(--rp27-shadow-soft);
}

.rp27-video .wp-block-embed__wrapper {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
}

.rp27-video .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper::before {
	content: none;
	display: none;
	padding: 0;
}

.rp27-video .wp-block-embed__wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ==========================================================================
   Get Involved tabs
   ========================================================================== */

.rp27-get-involved {
	margin-top: calc(var(--rp27-wave-height) * -1);
	padding-top: calc(var(--rp27-wave-gap) + var(--rp27-wave-height) * 0.35);
	position: relative;
	z-index: 2;
	padding-bottom: max(
		clamp(6rem, 9vw, 8rem),
		calc(var(--rp27-wave-gap) + var(--rp27-wave-height))
	);
}

.rp27-get-involved h2 {
	margin-bottom: 1.75rem;
	text-wrap: balance;
}

.rp27-tabs {
	width: 100%;
	margin-top: 0.5rem;
}

.rp27-tabs__list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	gap: 0;
	margin-bottom: 1.5rem;
	padding: 0.35rem;
	border-radius: var(--rp27-radius-pill);
	background: var(--rp27-parchment);
	overflow: hidden;
}

.rp27-tabs__indicator {
	position: absolute;
	top: 0.35rem;
	bottom: 0.35rem;
	left: 0.35rem;
	width: calc((100% - 0.7rem) / 3);
	border-radius: var(--rp27-radius-pill);
	background: var(--rp27-navy-ink);
	z-index: 0;
	transform: translateX(0);
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.rp27-tabs__list[data-active-index="0"] .rp27-tabs__indicator {
	transform: translateX(0);
}

.rp27-tabs__list[data-active-index="1"] .rp27-tabs__indicator {
	transform: translateX(100%);
}

.rp27-tabs__list[data-active-index="2"] .rp27-tabs__indicator {
	transform: translateX(200%);
}

.rp27-tabs__tab {
	position: relative;
	z-index: 1;
	padding: 0.85rem 1rem;
	border: 0;
	border-radius: var(--rp27-radius-pill);
	background: transparent;
	color: var(--rp27-navy-ink);
	font: inherit;
	font-size: 1rem;
	font-weight: 900;
	text-align: center;
	min-height: 52px;
	cursor: pointer;
	transition: color 180ms ease;
}

.rp27-tabs__tab.is-active,
.rp27-tabs__tab[aria-selected="true"] {
	background: transparent;
	color: var(--rp27-white);
}

.rp27-tabs__tab:hover:not(.is-active):not([aria-selected="true"]) {
	background: rgba(29, 34, 59, 0.08);
}

@media (prefers-reduced-motion: reduce) {
	.rp27-tabs__indicator {
		transition: none !important;
	}
}

.rp27-tabs__panels {
	padding: 2rem;
	border: 2px solid rgba(29, 34, 59, 0.08);
	border-radius: var(--rp27-radius-card);
	background: var(--rp27-white);
	box-shadow: var(--rp27-shadow-soft);
}

.rp27-tabs__panel {
	display: none;
	text-align: center;
}

.rp27-tabs__panel.is-active {
	display: block;
}

.rp27-tabs__intro {
	margin: 0 auto 1.5rem;
	max-width: 42rem;
	font-size: 1.2rem;
	line-height: 1.7;
	text-wrap: balance;
}

.rp27-tabs__panel-heading {
	margin: 0 auto 1rem;
	max-width: 42rem;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
	text-wrap: balance;
}

/* ==========================================================================
   Get Involved — embedded HubSpot forms (scoped)
   ========================================================================== */

.rp27-hubspot-form {
	width: 100%;
	max-width: 880px;
	margin: 2rem auto 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
	padding: 0;
	text-align: left;
}

.rp27-hubspot-form--subscribe,
.rp27-hubspot-form--interest {
	max-width: 100%;
	width: 100%;
}

.rp27-hubspot-form--speak,
.rp27-hubspot-form--exhibit {
	max-width: 760px;
}

.rp27-hubspot-form__target {
	width: 100%;
}

.rp27-hubspot-form .hbspt-form,
.rp27-hubspot-form .hs-form {
	width: 100%;
	margin: 0;
	color: var(--wp--preset--color--navy-ink);
	font-family: var(--wp--preset--font-family--archivo), system-ui, sans-serif;
}

.rp27-hubspot-form fieldset {
	max-width: none !important;
	width: 100% !important;
	margin: 0 0 1rem !important;
	padding: 0 !important;
	border: 0 !important;
}

.rp27-hubspot-form .hs-form-field {
	margin: 0 0 1.05rem;
}

.rp27-hubspot-form .form-columns-1 .hs-form-field,
.rp27-hubspot-form .form-columns-2 .hs-form-field {
	padding: 0 !important;
}

.rp27-hubspot-form .form-columns-2 {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.rp27-hubspot-form .form-columns-2 .hs-form-field {
	width: 100% !important;
	float: none !important;
}

.rp27-hubspot-form label {
	display: block;
	margin: 0 0 0.45rem;
	color: var(--wp--preset--color--navy-ink);
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.25;
}

.rp27-hubspot-form .hs-form-required {
	color: var(--wp--preset--color--burnt-orange);
	margin-left: 0.1rem;
}

.rp27-hubspot-form .hs-input:not([type="checkbox"]):not([type="radio"]),
.rp27-hubspot-form input[type="text"],
.rp27-hubspot-form input[type="email"],
.rp27-hubspot-form input[type="tel"],
.rp27-hubspot-form input[type="url"],
.rp27-hubspot-form input[type="number"],
.rp27-hubspot-form select,
.rp27-hubspot-form textarea {
	box-sizing: border-box;
	width: 100% !important;
	min-height: 56px;
	border: 1px solid rgba(29, 34, 59, 0.22);
	border-radius: 12px;
	background: #fff;
	color: var(--wp--preset--color--navy-ink);
	font: inherit;
	font-size: 1rem;
	line-height: 1.35;
	padding: 0.9rem 1rem;
	box-shadow: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.rp27-hubspot-form textarea {
	min-height: 140px;
	resize: vertical;
}

.rp27-hubspot-form select {
	cursor: pointer;
}

.rp27-hubspot-form .hs-input:not([type="checkbox"]):not([type="radio"]):focus,
.rp27-hubspot-form input[type="text"]:focus,
.rp27-hubspot-form input[type="email"]:focus,
.rp27-hubspot-form input[type="tel"]:focus,
.rp27-hubspot-form input[type="url"]:focus,
.rp27-hubspot-form input[type="number"]:focus,
.rp27-hubspot-form select:focus,
.rp27-hubspot-form textarea:focus {
	border-color: var(--wp--preset--color--burnt-orange);
	outline: 0;
	box-shadow: 0 0 0 4px rgba(206, 99, 52, 0.16);
}

.rp27-hubspot-form ::placeholder {
	color: rgba(29, 34, 59, 0.55);
}

.rp27-hubspot-form .inputs-list {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
}

.rp27-hubspot-form .inputs-list:not(.hs-error-msgs) li {
	margin: 0 0 0.65rem;
	padding: 0;
}

.rp27-hubspot-form .inputs-list li::marker {
	content: "";
}

.rp27-hubspot-form .inputs-list:not(.hs-error-msgs) label,
.rp27-hubspot-form .hs-form-checkbox-display,
.rp27-hubspot-form .hs-form-radio-display,
.rp27-hubspot-form .hs-form-booleancheckbox-display {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: start;
	gap: 0.65rem;
	margin: 0;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
}

.rp27-hubspot-form input[type="checkbox"],
.rp27-hubspot-form input[type="radio"] {
	width: 20px !important;
	height: 20px !important;
	min-width: 20px;
	min-height: auto;
	margin: 0.05rem 0 0 !important;
	padding: 0 !important;
	accent-color: var(--wp--preset--color--burnt-orange);
	cursor: pointer;
}

.rp27-hubspot-form input[type="radio"] {
	border-radius: 999px;
}

.rp27-hubspot-form .inputs-list span {
	display: block;
}

.rp27-hubspot-form .inputs-list span.hs-form-required,
.rp27-hubspot-form .hs-form-booleancheckbox-display span.hs-form-required,
.rp27-hubspot-form .legal-consent-container span.hs-form-required {
	display: inline;
	margin-left: 0.15rem;
	vertical-align: baseline;
}

.rp27-hubspot-form .hs_submit,
.rp27-hubspot-form .actions {
	margin: 1.5rem 0 0;
	text-align: center;
}

.rp27-hubspot-form .hs-button,
.rp27-hubspot-form input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--wp--preset--color--burnt-orange) !important;
	background-image: none !important;
	color: #fff !important;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0.9rem 2rem !important;
	font-family: var(--wp--preset--font-family--archivo), system-ui, sans-serif !important;
	font-size: 1rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-align: center;
	text-decoration: none;
	text-shadow: none !important;
	box-shadow: 0 14px 28px rgba(206, 99, 52, 0.22);
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.rp27-hubspot-form input[type="submit"] {
	display: inline-block;
}

.rp27-hubspot-form .hs-button:hover,
.rp27-hubspot-form .hs-button:focus-visible,
.rp27-hubspot-form input[type="submit"]:hover,
.rp27-hubspot-form input[type="submit"]:focus-visible {
	background: var(--wp--preset--color--coral-orange) !important;
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(206, 99, 52, 0.28);
	outline: 3px solid rgba(208, 172, 114, 0.55);
	outline-offset: 3px;
}

.rp27-hubspot-form .hs-richtext,
.rp27-hubspot-form .legal-consent-container,
.rp27-hubspot-form .legal-consent-container p {
	color: rgba(29, 34, 59, 0.82);
	font-size: 0.82rem;
	line-height: 1.45;
	text-align: center;
}

.rp27-hubspot-form--subscribe .legal-consent-container .hs-richtext {
	width: 100%;
	margin: 0 auto;
}

.rp27-hubspot-form .legal-consent-container {
	margin-top: 1rem;
}

.rp27-hubspot-form a {
	color: var(--wp--preset--color--navy-ink);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.rp27-hubspot-form a:hover,
.rp27-hubspot-form a:focus-visible {
	color: var(--wp--preset--color--burnt-orange);
}

.rp27-hubspot-form .hs-error-msgs {
	list-style: none;
	margin: 0.45rem 0 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
}

.rp27-hubspot-form .hs-error-msgs li {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
}

.rp27-hubspot-form .hs-error-msgs:empty {
	display: none;
	margin: 0;
}

.rp27-hubspot-form .hs-error-msgs label,
.rp27-hubspot-form .hs-error-msg {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	grid-template-columns: none !important;
	color: #b42318;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.35;
	text-align: left;
	white-space: normal;
	word-break: normal;
	overflow-wrap: normal;
	cursor: default;
}

.rp27-hubspot-form .invalid .hs-input,
.rp27-hubspot-form .hs-input.invalid,
.rp27-hubspot-form .error .hs-input,
.rp27-hubspot-form .hs-form-field.error .hs-input,
.rp27-hubspot-form .hs-form-field.invalid .hs-input {
	border-color: #b42318 !important;
	box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
}

.rp27-hubspot-form .submitted-message {
	color: var(--wp--preset--color--navy-ink);
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.45;
	text-align: center;
	padding: 2rem 1rem;
}

.rp27-hubspot-form .hs-richtext h1,
.rp27-hubspot-form .hs-richtext h2,
.rp27-hubspot-form .hs-richtext h3 {
	color: var(--wp--preset--color--navy-ink);
	font-family: var(--wp--preset--font-family--archivo), system-ui, sans-serif;
	font-weight: 900;
	line-height: 1.08;
	text-align: center;
	margin: 0 0 1rem;
}

.rp27-hubspot-form .hs-richtext h1 {
	font-size: clamp(1.6rem, 2.4vw, 2.25rem);
	line-height: 1.12;
	max-width: 720px;
	margin: 0 auto 1.25rem;
}

.rp27-hubspot-form .hs-richtext h2 {
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	line-height: 1.15;
	max-width: 720px;
	margin: 0 auto 1rem;
}

.rp27-hubspot-form .hs-richtext h3 {
	font-size: clamp(1.15rem, 1.6vw, 1.45rem);
	line-height: 1.18;
	max-width: 720px;
	margin: 0 auto 0.85rem;
}

.rp27-hubspot-form--exhibit .hs-richtext h1,
.rp27-hubspot-form--exhibit .hs-richtext h2 {
	font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.rp27-hubspot-form .hs-fieldtype-checkbox > label {
	margin-bottom: 0.75rem;
}

.rp27-hubspot-form .hs-fieldtype-checkbox .inputs-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: 0.75rem;
}

.rp27-hubspot-form .hs-fieldtype-checkbox .inputs-list li {
	margin: 0;
	flex: 0 1 auto;
}

.rp27-hubspot-form .hs-fieldtype-checkbox .inputs-list label {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 38px;
	padding: 0.45rem 0.7rem;
	border: 1px solid rgba(29, 34, 59, 0.16);
	border-radius: 999px;
	background: rgba(243, 224, 189, 0.35);
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.2;
	grid-template-columns: none;
}

.rp27-hubspot-form .hs-fieldtype-checkbox .inputs-list input[type="checkbox"] {
	margin: 0 !important;
	flex: 0 0 auto;
}

.rp27-hubspot-form .legal-consent-container .inputs-list,
.rp27-hubspot-form .hs-fieldtype-booleancheckbox .inputs-list {
	display: block;
	margin-top: 0.75rem;
}

.rp27-hubspot-form .legal-consent-container .inputs-list li,
.rp27-hubspot-form .hs-fieldtype-booleancheckbox .inputs-list li {
	margin: 0;
}

.rp27-hubspot-form .legal-consent-container .inputs-list label,
.rp27-hubspot-form .hs-fieldtype-booleancheckbox .inputs-list label,
.rp27-hubspot-form .hs-form-booleancheckbox-display {
	display: grid !important;
	grid-template-columns: 20px minmax(0, 1fr);
	align-items: start;
	gap: 0.7rem;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.35;
	text-align: left;
}

.rp27-hubspot-form .legal-consent-container input[type="checkbox"],
.rp27-hubspot-form .hs-fieldtype-booleancheckbox input[type="checkbox"] {
	width: 20px !important;
	height: 20px !important;
	margin: 0.05rem 0 0 !important;
}

.rp27-hubspot-form .hs-form-booleancheckbox-display > span,
.rp27-hubspot-form .legal-consent-container .inputs-list label > span {
	display: block;
}

.rp27-hubspot-form--speak .hs-form-field,
.rp27-hubspot-form--exhibit .hs-form-field {
	margin-bottom: 1rem;
}

.rp27-hubspot-form--speak .hs-richtext,
.rp27-hubspot-form--exhibit .hs-richtext {
	margin-bottom: 1.25rem;
}

/* Subscribe tab — centered 2/3-width email with centered submit */
.rp27-hubspot-form--subscribe .hs-form,
.rp27-hubspot-form--interest .hs-form,
.rp27-hubspot-form--subscribe form,
.rp27-hubspot-form--interest form {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	justify-items: center;
	gap: 1rem;
	width: 100%;
}

.rp27-hubspot-form--subscribe fieldset,
.rp27-hubspot-form--interest fieldset {
	margin: 0 !important;
}

.rp27-hubspot-form--subscribe .hs-form-field,
.rp27-hubspot-form--interest .hs-form-field {
	margin: 0 !important;
	width: 66.666%;
	max-width: 100%;
}

.rp27-hubspot-form--subscribe .hs-form-field > label,
.rp27-hubspot-form--interest .hs-form-field > label {
	display: none;
}

.rp27-hubspot-form--subscribe .hs-email,
.rp27-hubspot-form--interest .hs-email {
	grid-column: 1;
	width: 66.666%;
	max-width: 100%;
	min-width: 0;
}

.rp27-hubspot-form--subscribe .hs-email .input,
.rp27-hubspot-form--interest .hs-email .input {
	width: 100%;
}

.rp27-hubspot-form--subscribe .hs-error-msgs,
.rp27-hubspot-form--interest .hs-error-msgs {
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
}

.rp27-hubspot-form--subscribe .hs-submit,
.rp27-hubspot-form--interest .hs-submit {
	grid-column: 1;
	justify-self: center;
	margin: 0;
	width: auto;
}

.rp27-hubspot-form--subscribe .hs_submit,
.rp27-hubspot-form--subscribe .actions,
.rp27-hubspot-form--interest .hs_submit,
.rp27-hubspot-form--interest .actions {
	margin: 0 !important;
	text-align: center;
}

.rp27-hubspot-form--subscribe .hs-button,
.rp27-hubspot-form--subscribe input[type="submit"],
.rp27-hubspot-form--interest .hs-button,
.rp27-hubspot-form--interest input[type="submit"] {
	min-height: 56px;
	white-space: nowrap;
	width: auto;
}

.rp27-hubspot-form--subscribe .legal-consent-container,
.rp27-hubspot-form--subscribe .hs-richtext,
.rp27-hubspot-form--subscribe .hs_error_rollup,
.rp27-hubspot-form--interest .legal-consent-container,
.rp27-hubspot-form--interest .hs-richtext,
.rp27-hubspot-form--interest .hs_error_rollup {
	grid-column: 1;
	width: 66.666%;
	max-width: 100%;
	margin-top: 0.5rem;
	text-align: center;
}

@media (max-width: 700px) {
	.rp27-hubspot-form {
		margin-top: 1.5rem;
	}

	.rp27-hubspot-form .form-columns-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.rp27-hubspot-form .hs-input:not([type="checkbox"]):not([type="radio"]),
	.rp27-hubspot-form input[type="text"],
	.rp27-hubspot-form input[type="email"],
	.rp27-hubspot-form input[type="tel"],
	.rp27-hubspot-form input[type="url"],
	.rp27-hubspot-form input[type="number"],
	.rp27-hubspot-form select,
	.rp27-hubspot-form textarea {
		min-height: 52px;
		font-size: 1rem;
	}

	.rp27-hubspot-form .hs-button,
	.rp27-hubspot-form input[type="submit"] {
		width: 100%;
	}

	.rp27-hubspot-form--subscribe .hs-submit,
	.rp27-hubspot-form--interest .hs-submit {
		justify-self: center;
	}

	.rp27-hubspot-form--subscribe .hs-button,
	.rp27-hubspot-form--subscribe input[type="submit"],
	.rp27-hubspot-form--interest .hs-button,
	.rp27-hubspot-form--interest input[type="submit"] {
		width: auto;
	}

	.rp27-hubspot-form--subscribe .hs-form-field,
	.rp27-hubspot-form--interest .hs-form-field,
	.rp27-hubspot-form--subscribe .hs-email,
	.rp27-hubspot-form--interest .hs-email,
	.rp27-hubspot-form--subscribe .legal-consent-container,
	.rp27-hubspot-form--subscribe .hs-richtext,
	.rp27-hubspot-form--subscribe .hs_error_rollup,
	.rp27-hubspot-form--interest .legal-consent-container,
	.rp27-hubspot-form--interest .hs-richtext,
	.rp27-hubspot-form--interest .hs_error_rollup {
		width: 100%;
	}

	.rp27-hubspot-form .hs-fieldtype-checkbox .inputs-list {
		gap: 0.6rem;
	}

	.rp27-hubspot-form .hs-fieldtype-checkbox .inputs-list label {
		width: 100%;
		border-radius: 14px;
	}
}

@media (max-width: 640px) {
	.rp27-tabs__list {
		grid-template-columns: 1fr;
		border-radius: var(--rp27-radius-card);
	}

	.rp27-tabs__indicator {
		display: none;
	}

	.rp27-tabs__tab {
		width: 100%;
		min-width: 0;
	}

	.rp27-tabs__tab.is-active,
	.rp27-tabs__tab[aria-selected="true"] {
		background: var(--rp27-navy-ink);
		color: var(--rp27-white);
	}
}

/* ==========================================================================
   Gallery (RP26 moments)
   ========================================================================== */

.rp27-gallery {
	background: var(--wp--preset--color--sea-green);
	color: var(--wp--preset--color--white);
	text-align: center;
	overflow-x: clip;
	overflow-y: visible;
}

@supports not (overflow: clip) {
	.rp27-gallery {
		overflow-x: hidden;
	}
}

.rp27-gallery__inner {
	display: grid;
	gap: 1.5rem;
	justify-items: center;
	overflow: visible;
}

.rp27-gallery h2 {
	margin: 0;
	text-wrap: balance;
}

.rp27-gallery__inner.is-layout-constrained > .rp27-gallery__intro {
	max-width: min(100%, 60rem) !important;
}

.rp27-gallery__intro {
	width: min(100%, 60rem);
	max-width: 60rem;
	margin: 1rem auto 0 !important;
	color: var(--wp--preset--color--white);
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	line-height: 1.45;
	text-align: center;
	text-wrap: balance;
}

@media (max-width: 700px) {
	.rp27-gallery__intro {
		max-width: 34rem;
		font-size: 1rem;
	}
}

.rp27-gallery-carousel-wrap {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 2rem auto 0;
	justify-self: stretch;
	overflow: visible;
}

.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar.swiper-scrollbar,
.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar {
	position: relative !important;
	top: auto !important;
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	width: min(var(--rp27-inner-width, 1200px), 100%) !important;
	max-width: var(--rp27-inner-width, 1200px);
	height: 24px;
	margin: 0 auto 1.5rem;
	border-radius: 999px;
	background: rgba(243, 224, 189, 0.95);
	border: 1px solid rgba(208, 172, 114, 0.85);
	overflow: hidden;
	cursor: grab;
	z-index: 1;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar:hover,
.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar:focus-visible {
	background: rgba(243, 224, 189, 1);
	border-color: var(--wp--preset--color--antique-gold);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
	outline: none;
}

.rp27-gallery-carousel__scrollbar:active {
	cursor: grabbing;
}

.rp27-gallery-carousel__scrollbar .swiper-scrollbar-drag,
.rp27-gallery-carousel__scrollbar-drag {
	height: 100%;
	border-radius: 999px;
	background: var(--wp--preset--color--burnt-orange);
	box-shadow: inset 0 0 0 1px rgba(29, 34, 59, 0.18);
	transition: background 180ms ease, box-shadow 180ms ease;
}

.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar:hover .swiper-scrollbar-drag,
.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar:hover .rp27-gallery-carousel__scrollbar-drag,
.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar:focus-visible .swiper-scrollbar-drag,
.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar:focus-visible .rp27-gallery-carousel__scrollbar-drag {
	background: var(--wp--preset--color--coral-orange);
	box-shadow: inset 0 0 0 1px rgba(29, 34, 59, 0.22);
}

.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar:active .swiper-scrollbar-drag,
.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar:active .rp27-gallery-carousel__scrollbar-drag {
	background: var(--wp--preset--color--burnt-orange);
	filter: brightness(1.08);
}

.rp27-gallery-carousel-wrap,
.rp27-gallery-carousel-shell,
.rp27-gallery-carousel,
.rp27-gallery-carousel .swiper-wrapper,
.rp27-gallery-carousel .swiper-slide,
.rp27-gallery-carousel .rp27-gallery-card {
	background: transparent;
}

.rp27-gallery-carousel-shell {
	position: relative;
	width: 100%;
	max-width: none;
	margin-inline: auto;
	display: block;
	overflow: visible;
}

.rp27-gallery-carousel {
	position: relative;
	width: min(var(--rp27-inner-width, 1200px), 100%);
	max-width: var(--rp27-inner-width, 1200px);
	margin-inline: auto;
	overflow: hidden;
	padding-inline: 0;
}

.rp27-gallery-carousel .swiper-wrapper {
	align-items: stretch;
}

.rp27-gallery-carousel .swiper-slide {
	height: auto !important;
	align-self: stretch;
	overflow: visible;
	background: transparent !important;
}

.rp27-gallery-carousel .rp27-gallery-card {
	margin: 0;
	width: 100%;
	background: transparent;
}

.rp27-gallery-carousel .rp27-gallery-card__link {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	border-radius: 12px;
	overflow: hidden;
	background: transparent;
	box-shadow: none;
	transition: transform 180ms ease, opacity 180ms ease;
}

.rp27-gallery-carousel .rp27-gallery-card__link:hover,
.rp27-gallery-carousel .rp27-gallery-card__link:focus-visible {
	transform: translateY(-3px);
	box-shadow: none;
}

.rp27-gallery-carousel .rp27-gallery-card__image {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 12px;
	background: transparent;
}

.rp27-gallery-card__media {
	aspect-ratio: 1 / 1;
	background:
		linear-gradient(135deg, rgba(243, 224, 189, 0.18), rgba(29, 34, 59, 0.38)),
		var(--wp--preset--color--navy-ink);
}

.rp27-gallery-carousel__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: min(var(--rp27-inner-width, 1200px), 100%);
	margin: 1rem auto 0;
}

.rp27-gallery-carousel__pagination .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: var(--wp--preset--color--parchment);
	opacity: 0.48;
}

.rp27-gallery-carousel__pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--wp--preset--color--coral-orange);
}

.rp27-gallery-carousel__button {
	position: absolute;
	top: 50%;
	z-index: 5;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	padding: 0;
	border-radius: 999px;
	border: 2px solid var(--wp--preset--color--antique-gold);
	background: var(--wp--preset--color--navy-ink);
	color: var(--wp--preset--color--parchment);
	line-height: 1;
	text-align: center;
	cursor: pointer;
	display: inline-grid;
	place-items: center;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.rp27-gallery-carousel__icon {
	display: grid;
	place-items: center;
	width: 1.35rem;
	height: 1.35rem;
	line-height: 1;
	pointer-events: none;
}

.rp27-gallery-carousel__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.rp27-gallery-carousel__button--prev {
	left: max(1rem, calc((100% - var(--rp27-inner-width, 1200px)) / 2 - 4.25rem));
	right: auto;
}

.rp27-gallery-carousel__button--next {
	right: max(1rem, calc((100% - var(--rp27-inner-width, 1200px)) / 2 - 4.25rem));
	left: auto;
}

.rp27-gallery-carousel__button:hover,
.rp27-gallery-carousel__button:focus-visible {
	background: var(--wp--preset--color--burnt-orange);
	border-color: var(--wp--preset--color--burnt-orange);
	color: #fff;
	outline: 3px solid var(--wp--preset--color--antique-gold);
	outline-offset: 3px;
}

@media (min-width: 1351px) {
	.rp27-gallery-carousel__button--prev {
		left: -4.25rem;
	}

	.rp27-gallery-carousel__button--next {
		right: -4.25rem;
	}
}

@media (max-width: 1199px) {
	.rp27-gallery-carousel-shell {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"carousel carousel"
			"prev next";
		gap: 1rem;
		align-items: center;
		justify-items: center;
	}

	.rp27-gallery-carousel {
		grid-area: carousel;
		width: 100%;
		padding-inline: 0;
	}

	.rp27-gallery-carousel__button {
		position: static;
		transform: none;
		width: 42px;
		height: 42px;
	}

	.rp27-gallery-carousel__button--prev {
		grid-area: prev;
		justify-self: end;
		left: auto;
		right: auto;
	}

	.rp27-gallery-carousel__button--next {
		grid-area: next;
		justify-self: start;
		left: auto;
		right: auto;
	}
}

@media (max-width: 700px) {
	.rp27-gallery h2 {
		font-size: clamp(2rem, 10vw, 3rem);
		line-height: 1.05;
	}

	.rp27-gallery__intro {
		max-width: 32rem;
		margin-inline: auto;
	}

	.rp27-gallery .rp27-button,
	.rp27-gallery__cta {
		margin-top: 1.5rem;
		margin-inline: auto;
	}

	.rp27-gallery-carousel__icon {
		width: 1.15rem;
		height: 1.15rem;
	}

	.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar.swiper-scrollbar,
	.rp27-gallery-carousel-wrap > .rp27-gallery-carousel__scrollbar {
		width: 100%;
		height: 16px;
		margin: 1.25rem auto 1rem;
	}
}

@media (max-width: 420px) {
	.rp27-gallery-carousel .rp27-gallery-card__link {
		border-radius: 10px;
	}

	.rp27-gallery-carousel .rp27-gallery-card__image {
		border-radius: 10px;
	}
}

.rp27-gallery__cta-wrap {
	margin: 1.5rem 0 0;
	width: 100%;
}

.rp27-gallery .rp27-button,
.rp27-gallery .rp27-gallery__cta {
	display: inline-flex;
	margin-top: 0.5rem;
	margin-inline: auto;
}

/* Gallery lightbox */
.rp27-lightbox[hidden] {
	display: none;
}

.rp27-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 3vw, 2rem);
}

.rp27-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(29, 34, 59, 0.88);
	backdrop-filter: blur(6px);
}

.rp27-lightbox__dialog {
	position: relative;
	z-index: 1;
	width: min(1100px, 100%);
	max-height: 90vh;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
}

.rp27-lightbox__figure {
	margin: 0;
	display: grid;
	gap: 0.75rem;
	justify-items: center;
	width: 100%;
}

.rp27-lightbox__image-viewport {
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	max-width: 100%;
	max-height: 78vh;
	border-radius: 16px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
	cursor: zoom-in;
	touch-action: none;
}

.rp27-lightbox__image-viewport.is-zoomed {
	cursor: grab;
}

.rp27-lightbox__image-viewport.is-dragging {
	cursor: grabbing;
}

.rp27-lightbox__image {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 78vh;
	margin-inline: auto;
	object-fit: contain;
	border-radius: 16px;
	box-shadow: none;
	transform-origin: center center;
	will-change: transform;
	user-select: none;
	-webkit-user-drag: none;
	cursor: inherit;
}

.rp27-lightbox__zoom-hint {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	z-index: 2;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(29, 34, 59, 0.78);
	color: var(--wp--preset--color--parchment);
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.01em;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
	pointer-events: none;
	opacity: 0;
	white-space: nowrap;
	max-width: calc(100% - 2rem);
	transition: opacity 160ms ease, transform 160ms ease;
}

.rp27-lightbox__image-viewport:hover .rp27-lightbox__zoom-hint,
.rp27-lightbox__image-viewport:focus-within .rp27-lightbox__zoom-hint {
	opacity: 1;
	transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 560px) {
	.rp27-lightbox__zoom-hint {
		white-space: normal;
		text-align: center;
		line-height: 1.25;
	}
}

.rp27-lightbox__counter {
	position: absolute;
	top: -1rem;
	left: -1rem;
	z-index: 2;
	margin: 0;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	background: rgba(29, 34, 59, 0.72);
	color: var(--wp--preset--color--parchment);
	font-size: 0.9rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.04em;
	line-height: 1;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.rp27-lightbox__close,
.rp27-lightbox__nav {
	border: 0;
	background: var(--wp--preset--color--burnt-orange);
	color: #fff;
	cursor: pointer;
	display: inline-grid;
	place-items: center;
	padding: 0;
	line-height: 1;
	text-align: center;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.rp27-lightbox__icon {
	display: grid;
	place-items: center;
	width: 1.35rem;
	height: 1.35rem;
	line-height: 1;
	pointer-events: none;
}

.rp27-lightbox__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.rp27-lightbox__close {
	position: absolute;
	top: -1rem;
	right: -1rem;
	width: 44px;
	height: 44px;
	border-radius: 999px;
}

.rp27-lightbox__close .rp27-lightbox__icon {
	width: 1.2rem;
	height: 1.2rem;
}

.rp27-lightbox__nav {
	width: 48px;
	height: 64px;
	border-radius: 999px;
}

.rp27-lightbox__nav:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.rp27-lightbox__close:hover,
.rp27-lightbox__close:focus-visible,
.rp27-lightbox__nav:hover:not(:disabled),
.rp27-lightbox__nav:focus-visible:not(:disabled) {
	background: var(--wp--preset--color--coral-orange);
	outline: 3px solid var(--wp--preset--color--antique-gold);
	outline-offset: 3px;
}

body.rp27-lightbox-is-open {
	overflow: hidden;
}

@media (max-width: 700px) {
	.rp27-lightbox__dialog {
		width: calc(100% - 1.5rem);
		max-width: calc(100% - 1.5rem);
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.rp27-lightbox__nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
	}

	.rp27-lightbox__nav--prev {
		left: 0.5rem;
	}

	.rp27-lightbox__nav--next {
		right: 0.5rem;
	}

	.rp27-lightbox__image-viewport {
		max-height: 68vh;
		border-radius: 12px;
	}

	.rp27-lightbox__image {
		max-height: 68vh;
		border-radius: 12px;
	}

	.rp27-lightbox__close {
		top: 0.5rem;
		right: 0.5rem;
		width: 42px;
		height: 42px;
	}

	.rp27-lightbox__counter {
		top: 0.5rem;
		left: 0.5rem;
	}

	.rp27-lightbox__zoom-hint {
		max-width: calc(100% - 1rem);
		white-space: normal;
		text-align: center;
		line-height: 1.25;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rp27-gallery-card__link,
	.rp27-lightbox * {
		transition: none !important;
	}

	.rp27-lightbox__zoom-hint {
		transition: none;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */

.wp-site-blocks > footer.rp27-footer,
.wp-site-blocks > .rp27-footer,
footer.rp27-footer {
	max-width: none;
	width: 100%;
}

.rp27-footer {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	padding-inline: 0 !important;
	background: var(--rp27-navy-ink);
	background-color: var(--rp27-navy-ink);
	background-image: none;
	color: var(--wp--preset--color--parchment, var(--rp27-parchment));
}

.rp27-footer.has-navy-ink-background-color {
	background-color: var(--rp27-navy-ink) !important;
	background-image: none !important;
}

.rp27-footer a {
	color: var(--wp--preset--color--parchment, var(--rp27-parchment));
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.rp27-footer a:hover,
.rp27-footer a:focus-visible {
	color: var(--rp27-coral-orange);
}

.rp27-footer__inner {
	padding-block: clamp(2.5rem, 5vw, 3.5rem);
	background: transparent;
	background-image: none;
}

.rp27-footer__columns {
	gap: clamp(2rem, 5vw, 4rem);
	margin: 0;
}

.rp27-footer__column--brand {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2.25rem);
}

.rp27-footer__title {
	max-width: 560px;
	margin: 0 0 0.5rem;
	color: var(--wp--preset--color--parchment);
	font-size: clamp(1.75rem, 2.6vw, 2.75rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.rp27-footer__title span {
	display: block;
}

.rp27-footer__brand p {
	margin-top: 0;
	margin-bottom: 0.35rem;
}

.rp27-footer__social-heading {
	margin: 0 0 1rem;
	font-size: 0.9375rem !important;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
}

.rp27-social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rp27-social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(243, 224, 189, 0.35);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--rp27-parchment);
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rp27-social-icons a:hover,
.rp27-social-icons a:focus-visible {
	background: rgba(229, 124, 77, 0.18);
	border-color: var(--rp27-coral-orange);
	color: var(--rp27-coral-orange);
	transform: translateY(-1px);
}

.rp27-social-icons a:focus-visible {
	outline: none;
	box-shadow: var(--rp27-focus-ring);
}

.rp27-social-icons__icon {
	display: block;
	width: 1.65rem;
	height: auto;
	fill: currentColor;
}

.rp27-social-icons__icon--youtube {
	width: 1.85rem;
}

.rp27-footer__column--aside {
	display: flex;
	flex-direction: column;
	gap: clamp(1.25rem, 3vw, 1.75rem);
}

.rp27-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.rp27-footer__contact-line,
.rp27-footer__utility-links {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.55;
	text-align: right;
}

.rp27-footer__utility-links {
	margin-top: 0.35rem;
}

/* Desktop: right-align the aside column (override WP constrained layout centering) */
@media (min-width: 801px) {
	.rp27-footer__column--aside {
		text-align: right;
		align-items: flex-end;
	}

	.rp27-footer__column--brand {
		text-align: left;
		align-items: flex-start;
	}

	.rp27-footer__column--aside .rp27-hubspot-subscribe {
		width: 100%;
		max-width: 36rem;
		margin-left: auto;
		align-self: flex-end;
	}

	.rp27-footer__column--aside .rp27-hubspot-subscribe__target,
	.rp27-footer__column--aside .hbspt-form {
		width: 100%;
	}

	.rp27-footer__column--aside .hubspot-form-subscribe .hs-form {
		justify-content: flex-end;
	}

	.rp27-footer__contact,
	.rp27-footer__contact.is-layout-constrained {
		width: 100%;
		max-width: 100%;
		margin-inline: 0;
		align-items: flex-end;
	}

	.rp27-footer__contact.is-layout-constrained > *,
	.rp27-footer__column--aside.is-layout-constrained > * {
		margin-inline: 0 !important;
		max-width: none !important;
		width: 100%;
	}

	.rp27-footer__column--aside .rp27-footer__contact-line,
	.rp27-footer__column--aside .rp27-footer__utility-links {
		text-align: right !important;
	}

	.rp27-footer__column--aside .rp27-footer-alerts__disclaimer {
		margin-left: auto;
		margin-right: 0;
		text-align: right;
	}
}

.rp27-footer__utility-sep {
	margin-inline: 0.35rem;
	color: rgba(243, 224, 189, 0.55);
}

.rp27-footer p,
.rp27-footer li {
	line-height: 1.6;
}

.rp27-footer__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	background: var(--rp27-parchment);
}

.rp27-footer__logo img {
	display: block;
	width: 120px;
	height: auto;
}

/* HubSpot Get Alerts subscribe form (adapted from RP26) */

.rp27-hubspot-subscribe {
	width: 100%;
}

.rp27-hubspot-subscribe__heading {
	margin: 0 0 0.75rem;
	font-size: 1.125rem;
	font-weight: 900;
	line-height: 1.3;
	color: var(--rp27-parchment);
}

.rp27-hubspot-subscribe--align-right .rp27-hubspot-subscribe__heading {
	text-align: right;
}

.rp27-hubspot-subscribe--align-center .rp27-hubspot-subscribe__heading {
	text-align: center;
}

.rp27-hubspot-subscribe--align-left .rp27-hubspot-subscribe__heading {
	text-align: left;
}

.rp27-hubspot-subscribe__target {
	width: 100%;
}

.hubspot-form-subscribe label {
	display: none;
}

.hubspot-form-subscribe .hs-form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.75rem;
	margin: 0;
	width: 100%;
}

.hubspot-form-subscribe .hs-form .hs-email {
	flex: 1 1 14rem;
	min-width: 0;
	order: 1;
}

.hubspot-form-subscribe .hs-form .hs-submit {
	order: 2;
	align-self: flex-start;
	margin: 0 0 0 auto;
}

.hubspot-form-subscribe .hs-form .legal-consent-container,
.hubspot-form-subscribe .hs-form .hs-richtext {
	flex-basis: 100%;
	order: 3;
	margin: 0;
	max-width: 100%;
	width: 100%;
}

/* Footer: replace HubSpot disclaimer with theme-controlled copy */
.rp27-footer__column--aside .hubspot-form-subscribe .hs-form .legal-consent-container,
.rp27-footer__column--aside .hubspot-form-subscribe .hs-form .hs-richtext {
	display: none !important;
}

.rp27-footer-alerts__disclaimer {
	max-width: 38.75rem;
	margin: 1.125rem 0 0 auto;
	color: var(--wp--preset--color--parchment, var(--rp27-parchment));
	font-size: 0.875rem;
	line-height: 1.55;
	text-align: right;
	text-wrap: pretty;
}

.rp27-footer-alerts__disclaimer a {
	color: var(--wp--preset--color--parchment, var(--rp27-parchment));
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.rp27-footer-alerts__disclaimer a:hover,
.rp27-footer-alerts__disclaimer a:focus-visible {
	color: var(--wp--preset--color--coral-orange, var(--rp27-coral-orange));
}

.hubspot-form-subscribe .hs-form .hs-input {
	box-sizing: border-box;
	width: 100%;
	min-height: var(--rp27-btn-min-height);
	padding: 0 1rem;
	border: 1px solid rgba(243, 224, 189, 0.35);
	border-radius: 12px;
	background: var(--rp27-white);
	color: var(--rp27-navy-ink);
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.25;
}

.hubspot-form-subscribe .hs-form .hs-input:hover {
	background: #f8f8f8;
}

.hubspot-form-subscribe .hs-form .hs-input:focus {
	border-color: var(--rp27-coral-orange);
	outline: none;
	box-shadow: var(--rp27-focus-ring);
}

.hubspot-form-subscribe .hs-form .hs-input::placeholder {
	color: #6b7280;
	font-weight: 400;
}

.hubspot-form-subscribe .hs-form .hs-submit .hs-button,
.hubspot-form-subscribe .hs-form .hs-submit input[type="submit"],
.hubspot-form-subscribe .hs-form input.hs-button.primary.large,
.hubspot-form-subscribe .hs-form .hs-button,
.hubspot-form-subscribe .hs-form input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	display: inline-block;
	min-height: var(--rp27-btn-min-height) !important;
	height: auto !important;
	padding: var(--rp27-btn-padding-block) var(--rp27-btn-padding-inline) !important;
	border: 2px solid var(--rp27-burnt-orange) !important;
	border-radius: var(--rp27-radius-pill) !important;
	background: var(--wp--preset--color--burnt-orange, var(--rp27-burnt-orange)) !important;
	background-image: none !important;
	color: var(--rp27-white) !important;
	font-family: var(--wp--preset--font-family--archivo), system-ui, sans-serif !important;
	font-size: var(--rp27-btn-font-size) !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-align: center;
	text-shadow: none !important;
	cursor: pointer;
	white-space: nowrap;
	vertical-align: middle;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hubspot-form-subscribe .hs-form .hs-submit .hs-button:hover,
.hubspot-form-subscribe .hs-form .hs-submit input[type="submit"]:hover,
.hubspot-form-subscribe .hs-form .hs-button:hover,
.hubspot-form-subscribe .hs-form input[type="submit"]:hover {
	background: var(--rp27-coral-orange) !important;
	border-color: var(--rp27-coral-orange) !important;
	color: var(--rp27-white) !important;
}

.hubspot-form-subscribe .hs-form .hs-submit .hs-button:focus-visible,
.hubspot-form-subscribe .hs-form .hs-submit input[type="submit"]:focus-visible,
.hubspot-form-subscribe .hs-form .hs-button:focus-visible,
.hubspot-form-subscribe .hs-form input[type="submit"]:focus-visible {
	outline: none;
	box-shadow: var(--rp27-focus-ring);
}

.hubspot-form-subscribe .hs-form .hs-richtext,
.hubspot-form-subscribe .hs-form .hs-richtext p,
.hubspot-form-subscribe .hs-form .hs-richtext span,
.hubspot-form-subscribe .hs-form .hs-richtext a,
.hubspot-form-subscribe .hs-form .hs-richtext * {
	color: var(--rp27-parchment) !important;
	font-size: 0.75rem !important;
	line-height: 1.45 !important;
	text-align: right !important;
}

.rp27-hubspot-subscribe--align-center .hs-form .hs-richtext,
.rp27-hubspot-subscribe--align-center .hs-form .hs-richtext p,
.rp27-hubspot-subscribe--align-center .hs-form .hs-richtext span,
.rp27-hubspot-subscribe--align-center .hs-form .hs-richtext a,
.rp27-hubspot-subscribe--align-center .hs-form .hs-richtext * {
	text-align: center !important;
}

.hubspot-form-subscribe .hs-form .hs-input.invalid,
.hubspot-form-subscribe .hs-form .hs-input.error,
.hubspot-form-subscribe .hs-form-field.error .hs-input,
.hubspot-form-subscribe .hs-form-field.invalid .hs-input {
	border-color: var(--rp27-coral-orange) !important;
	box-shadow: var(--rp27-focus-ring);
}

.hubspot-form-subscribe .hs-form .hs-error-msgs {
	list-style: none;
	margin: 0.5rem 0 0;
	padding: 0;
	width: 100%;
}

.hubspot-form-subscribe .hs-form .hs-error-msgs:empty {
	display: none;
	margin: 0;
}

.hubspot-form-subscribe .hs-form .hs-error-msgs label,
.hubspot-form-subscribe .hs-form .hs-error-msg {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	grid-template-columns: none !important;
	color: var(--rp27-coral-orange);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
	white-space: normal;
	word-break: normal;
	overflow-wrap: normal;
}

.hubspot-form-subscribe .hs_error_rollup {
	flex-basis: 100%;
	order: 4;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hubspot-form-subscribe .hs_error_rollup .hs-error-msgs {
	margin: 0;
}

.hubspot-form-subscribe .hs_error_rollup:empty {
	display: none;
}

.hbspt-form,
.hubspot-form-subscribe .hs-form .hs-email {
	width: 100% !important;
}

@media (max-width: 800px) {
	.rp27-footer__columns {
		flex-direction: column-reverse;
	}

	.rp27-footer__column--aside,
	.rp27-footer__column--brand {
		align-items: center;
		text-align: center;
	}

	.rp27-footer__contact {
		align-items: center;
	}

	.rp27-footer__contact.is-layout-constrained > *,
	.rp27-footer__column--aside.is-layout-constrained > * {
		margin-inline: auto !important;
	}

	.rp27-footer__contact-line,
	.rp27-footer__utility-links,
	.rp27-footer__column--aside .rp27-hubspot-subscribe--align-right .rp27-hubspot-subscribe__heading,
	.rp27-footer__column--aside .hubspot-form-subscribe .hs-form .hs-richtext,
	.rp27-footer__column--aside .hubspot-form-subscribe .hs-form .hs-richtext p,
	.rp27-footer__column--aside .hubspot-form-subscribe .hs-form .hs-richtext span,
	.rp27-footer__column--aside .hubspot-form-subscribe .hs-form .hs-richtext a,
	.rp27-footer__column--aside .hubspot-form-subscribe .hs-form .hs-richtext * {
		text-align: center !important;
	}

	.rp27-footer__column--aside .rp27-hubspot-subscribe {
		max-width: 100%;
		margin-inline: auto;
		align-self: stretch;
	}

	.rp27-footer__column--aside .rp27-hubspot-subscribe--align-right .rp27-hubspot-subscribe__heading {
		text-align: center;
	}

	.rp27-footer__column--aside .hubspot-form-subscribe .hs-form {
		justify-content: center;
	}

	.hubspot-form-subscribe .hs-form .hs-error-msgs label,
	.hubspot-form-subscribe .hs-form .hs-error-msg {
		text-align: center;
	}

	.hubspot-form-subscribe .hs_error_rollup .hs-error-msgs label,
	.hubspot-form-subscribe .hs_error_rollup .hs-error-msg {
		text-align: center;
	}

	.rp27-social-icons {
		justify-content: center;
	}

	.rp27-footer__column--aside .hubspot-form-subscribe .hs-form .hs-submit {
		margin-inline: auto;
	}

	.rp27-footer-alerts__disclaimer {
		margin-inline: auto;
		text-align: center;
		max-width: 34rem;
	}
}

@media (max-width: 640px) {
	.hubspot-form-subscribe .hs-form .hs-email,
	.hubspot-form-subscribe .hs-form .hs-submit {
		flex: 1 1 100%;
		width: 100%;
	}

	.hubspot-form-subscribe .hs-form .hs-submit {
		margin-left: 0;
	}

	.hubspot-form-subscribe .hs-form .hs-button,
	.hubspot-form-subscribe .hs-form input[type="submit"] {
		width: 100%;
	}
}

.rp27-footer-noria {
	width: 100%;
	max-width: none;
	background: #285f9d;
	border-top: 4px solid var(--wp--preset--color--navy-ink, var(--rp27-navy-ink));
	color: #ffffff;
}

.rp27-footer-noria__inner {
	min-height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding-inline: var(--rp27-page-gutter);
	text-align: center;
}

.rp27-footer-noria__label {
	color: #ffffff;
	font-family: var(--wp--preset--font-family--archivo), system-ui, sans-serif;
	font-size: clamp(0.9rem, 1.5vw, 1.25rem);
	font-weight: 900;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-transform: uppercase;
}

.rp27-footer-noria__brand-link {
	display: inline-flex;
	color: #ffffff;
	line-height: 0;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.rp27-footer-noria__brand-link:hover,
.rp27-footer-noria__brand-link:focus-visible {
	opacity: 0.82;
}

.rp27-footer-noria__brand-link:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
	border-radius: 4px;
}

.rp27-footer-noria__logo {
	display: block;
	width: clamp(110px, 16vw, 125px);
	height: auto;
}

@media (max-width: 640px) {
	.rp27-footer-noria__inner {
		min-height: 88px;
		flex-direction: column;
		gap: 0.35rem;
		padding-block: 1.25rem;
	}
}

/* ==========================================================================
   Privacy & interior pages
   ========================================================================== */

.rp27-page .wp-block-post-content,
main .wp-block-post-content {
	max-width: 48rem;
	margin-inline: auto;
	padding-block: var(--wp--preset--spacing--60);
	padding-inline: var(--wp--preset--spacing--40);
}

.rp27-page .wp-block-post-content h1,
.rp27-page .wp-block-post-content h2,
.rp27-page .wp-block-post-content h3,
main .wp-block-post-content h1,
main .wp-block-post-content h2,
main .wp-block-post-content h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	line-height: 1.25;
}

.rp27-page .wp-block-post-content p,
.rp27-page .wp-block-post-content li,
main .wp-block-post-content p,
main .wp-block-post-content li {
	font-size: 1.125rem;
	line-height: 1.75;
}

.rp27-page .wp-block-post-content ul,
.rp27-page .wp-block-post-content ol,
main .wp-block-post-content ul,
main .wp-block-post-content ol {
	padding-left: 1.5rem;
}

/* ==========================================================================
   404
   ========================================================================== */

.rp27-404 {
	text-align: center;
}

.rp27-404 h1 {
	text-wrap: balance;
}

/* ==========================================================================
   Preloader
   ========================================================================== */

.rp27-preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--rp27-navy-ink);
	opacity: 1;
	visibility: visible;
	transition: opacity 0.45s ease, visibility 0.45s ease;
	animation: rp27-preloader-fade-in 0.35s ease;
}

.rp27-preloader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.rp27-preloader__logo {
	width: min(10rem, 40vw);
	height: auto;
}

body:not(.rp27-preloader-enabled) .rp27-preloader {
	display: none;
}

@keyframes rp27-preloader-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rp27-preloader {
		animation: none;
		transition: none;
	}
}

/* TODO: Replace static preloader with designer-provided After Effects/Lottie JSON animation. */

/* ==========================================================================
   Back to top
   ========================================================================== */

.rp27-back-to-top {
	--fill-percentage: 0%;
	align-items: center;
	backdrop-filter: blur(1px) saturate(100%);
	background: rgba(255, 255, 255, 0.9);
	border: 3px solid var(--rp27-burnt-orange);
	border-radius: 50%;
	bottom: 1.25rem;
	box-shadow: var(--rp27-shadow-soft);
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	height: 3.625rem;
	justify-content: center;
	opacity: 0;
	padding: 0;
	pointer-events: none;
	position: fixed;
	right: 1.25rem;
	transform: translateY(0.5rem);
	transition:
		opacity 0.3s ease-out,
		transform 0.3s ease-out,
		background-color 0.2s ease-out,
		border-color 0.2s ease-out,
		box-shadow 0.2s ease-out;
	visibility: hidden;
	width: 3.625rem;
	z-index: 9990;
}

.rp27-back-to-top::before {
	background: conic-gradient(
		var(--rp27-coral-orange) 0deg,
		var(--rp27-coral-orange) calc(var(--fill-percentage) * 3.6deg),
		transparent calc(var(--fill-percentage) * 3.6deg),
		transparent 360deg
	);
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 0;
	mask: radial-gradient(
		circle at center,
		transparent 0,
		transparent calc(50% - 3.5px),
		black calc(50% - 3.5px),
		black 50%
	);
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: background 0.3s ease;
	width: 100%;
	z-index: -1;
}

.rp27-back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.rp27-back-to-top svg {
	display: block;
	height: auto;
	left: 50%;
	max-width: 100%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.rp27-back-to-top svg path {
	fill: var(--rp27-burnt-orange);
	transition: fill 0.2s ease-in;
}

.rp27-back-to-top:hover,
.rp27-back-to-top:focus-visible {
	background-color: var(--rp27-navy-ink);
	border-color: var(--rp27-navy-ink);
	box-shadow: 0 12px 40px rgba(29, 34, 59, 0.22);
	outline: none;
}

.rp27-back-to-top:focus-visible {
	box-shadow: var(--rp27-focus-ring), 0 12px 40px rgba(29, 34, 59, 0.22);
}

.rp27-back-to-top:hover svg path,
.rp27-back-to-top:focus-visible svg path {
	fill: var(--rp27-parchment);
}

@media (max-width: 767px) {
	.rp27-back-to-top {
		bottom: 1rem;
		height: 3rem;
		right: 1rem;
		width: 3rem;
	}

	.rp27-back-to-top svg {
		width: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rp27-back-to-top {
		transition: none;
		transform: none;
	}

	.rp27-back-to-top::before {
		transition: none;
	}
}

