/* Remember Santorini — Design System */

:root {
	--rs-color-yellow: #f2c214;
	--rs-color-yellow-dark: #c9a010;
	--rs-color-navy: #1a2d4a;
	--rs-color-navy-dark: #0f1c30;
	--rs-color-teal: #6bb9d1;
	--rs-color-black: #111111;
	--rs-color-white: #ffffff;
	--rs-color-gray: #666666;

	--rs-font-sans: 'Geologica', system-ui, sans-serif;
	--rs-font-script: 'Courgette', cursive;

	--rs-container: 1280px;
	--rs-gutter: clamp(1.25rem, 4vw, 3rem);
	--rs-hero-width: 95vw;
	--rs-hero-height: 95vh;
	--rs-hero-radius: clamp(20px, 2.2vw, 32px);
	--rs-header-inset: clamp(1.25rem, 2.8vw, 2.25rem);
	--rs-section-aside: minmax(7rem, 12%);
	--rs-section-gap: clamp(1.25rem, 5vw, 5rem);
	--rs-section-content-indent: clamp(0rem, 6vw, 4.5rem);
	--rs-section-content-width: min(100%, 72rem);

	--rs-header-height: 170px;
	--rs-transition: 0.3s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--rs-font-sans);
	font-weight: 100;
	font-size: 16px;
	line-height: 1.6;
	color: var(--rs-color-black);
	background: var(--rs-color-white);
	-webkit-font-smoothing: antialiased;
}

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

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

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
}

.rs-container {
	width: min(var(--rs-container), 100% - var(--rs-gutter) * 2);
	margin-inline: auto;
}

/* ── Header ─────────────────────────────────────────────── */

.rs-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--rs-header-height);
	color: var(--rs-color-white);
	transition: background 0.35s ease, padding 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease, top 0.35s ease, width 0.35s ease;
}

.has-hero .rs-header {
	background: transparent;
	top: 2.5vh;
	left: 50%;
	right: auto;
	width: var(--rs-hero-width);
	height: auto;
	padding-top: 2.85rem;
	transform: translateX(-50%);
}

.has-hero .rs-header__inner {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	padding-inline: var(--rs-header-inset);
	align-items: center;
	min-height: auto;
}

body:not(.has-hero) .rs-header {
	position: relative;
	background: var(--rs-color-black);
}

body:not(.has-hero) .rs-header__inner {
	width: min(var(--rs-container), 100% - var(--rs-gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--rs-header-inset);
}

.rs-header.is-scrolled {
	position: fixed;
	top: 1rem;
	left: 50%;
	right: auto;
	width: min(92vw, calc(100% - 2rem));
	height: auto;
	padding: 0.65rem 0;
	background: var(--rs-color-navy);
	border-radius: clamp(16px, 2vw, 28px);
	transform: translateX(-50%);
	box-shadow: 0 12px 40px rgba(10, 24, 48, 0.28);
	z-index: 300;
}

.rs-header.is-scrolled .rs-header__inner {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	padding-inline: clamp(1rem, 2.5vw, 1.75rem);
	min-height: 0;
}

.rs-header.is-scrolled .rs-logo__img {
	height: 71px;
}

.rs-header__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: calc(var(--rs-header-height) - 1.75rem);
}

.rs-header__logo {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
}

.rs-logo__img {
	width: auto;
	height: 144px;
	object-fit: contain;
	transition: height 0.35s ease;
}

.rs-logo--header {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rs-color-white);
}

.rs-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	gap: clamp(1.25rem, 2.8vw, 2.75rem);
}

.rs-nav__item {
	position: relative;
	display: flex;
	align-items: center;
}

.rs-nav__item.has-children::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 0.85rem;
}

.rs-nav__link {
	font-family: var(--rs-font-sans);
	font-weight: 500;
	font-size: clamp(1rem, 1.15vw, 1.125rem);
	color: var(--rs-color-white);
	white-space: nowrap;
	transition: color var(--rs-transition), opacity var(--rs-transition);
}

.rs-nav__item:not(.has-children) .rs-nav__link:hover {
	opacity: 0.75;
}

.rs-nav__item.has-children:hover > .rs-nav__link,
.rs-nav__item.has-children:focus-within > .rs-nav__link,
.rs-nav__item.has-children.is-open > .rs-nav__link,
.rs-nav__link.is-active,
.rs-nav__item.is-active > .rs-nav__link {
	color: var(--rs-color-yellow);
	opacity: 1;
}

body:not(.has-hero) .rs-nav__link {
	color: var(--rs-color-white);
}

.rs-nav__submenu {
	position: absolute;
	top: calc(100% + 0.55rem);
	left: 50%;
	z-index: 400;
	display: flex;
	flex-direction: column;
	min-width: 10.5rem;
	padding: 0.9rem 1.85rem;
	background: #000;
	border-radius: 12px;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-50%) translateY(0.35rem);
	transition:
		opacity 0.22s ease,
		visibility 0.22s ease,
		transform 0.22s ease;
}

.rs-nav__item:hover > .rs-nav__submenu,
.rs-nav__item:focus-within > .rs-nav__submenu,
.rs-nav__item.is-open > .rs-nav__submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.rs-nav__sublink {
	display: block;
	padding: 0.45rem 0.25rem;
	font-family: var(--rs-font-sans);
	font-weight: 400;
	font-size: clamp(0.92rem, 1.05vw, 1.02rem);
	line-height: 1.35;
	color: var(--rs-color-white);
	text-align: center;
	white-space: nowrap;
	border-bottom: 1px solid rgba(255, 255, 255, 0.9);
	transition: opacity var(--rs-transition);
}

.rs-nav__sublink:last-child {
	border-bottom: none;
	padding-bottom: 0.15rem;
}

.rs-nav__sublink:first-child {
	padding-top: 0.15rem;
}

.rs-nav__sublink:hover,
.rs-nav__sublink.is-active {
	opacity: 0.72;
}

.rs-footer__links .rs-nav__item {
	display: contents;
}

.rs-footer__links .rs-nav__submenu {
	display: none;
}

.rs-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 4px;
}

.rs-nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--rs-color-white);
	transition: var(--rs-transition);
}

/* ── Hero ─────────────────────────────────────────────────── */

.has-hero .rs-main {
	padding-top: 0;
}

.rs-hero {
	position: relative;
	width: var(--rs-hero-width);
	height: var(--rs-hero-height);
	min-height: 0;
	max-height: none;
	margin: 2.5vh auto 0;
	border-radius: var(--rs-hero-radius);
	overflow: hidden;
	color: var(--rs-color-white);
}

.rs-hero__slides {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.rs-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.rs-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.rs-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center center;
	transform-origin: center center;
	will-change: transform;
}

.rs-hero__overlay {
	position: absolute;
	inset: 0;
	background: var(--rs-hero-overlay, rgba(0, 0, 0, 0.25));
	z-index: 1;
}

.rs-hero__content {
	position: absolute;
	z-index: 2;
	bottom: clamp(6rem, 13vh, 8.5rem);
	left: var(--rs-header-inset);
	right: var(--rs-header-inset);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	height: auto;
	padding: 0;
	pointer-events: none;
}

.rs-hero__slide.is-active .rs-hero__headline {
	animation: rs-hero-rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rs-hero__slide.is-active .rs-hero__subline {
	animation: rs-hero-rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

.rs-hero__slide.is-active .rs-hero__bg {
	animation: rs-hero-zoom 8s ease-out both;
}

@keyframes rs-hero-rise {
	from {
		opacity: 0;
		transform: translate3d(0, 1.5rem, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes rs-hero-zoom {
	from {
		transform: scale(1.06);
	}

	to {
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.rs-hero__slide.is-active .rs-hero__headline,
	.rs-hero__slide.is-active .rs-hero__subline,
	.rs-hero__slide.is-active .rs-hero__bg {
		animation: none;
	}
}

.rs-hero__headline {
	margin: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 2em;
	line-height: 0.88;
}

.rs-hero__line {
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(5.61rem, 14.2vw, 11.96rem);
	text-transform: lowercase;
	letter-spacing: -0.03em;
}

.rs-hero__line--white {
	color: var(--rs-color-white);
}

.rs-hero__line--yellow {
	color: var(--rs-color-yellow);
}

.rs-hero__subline {
	margin: 0.15rem 0 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: clamp(1.35rem, 2.8vw, 2.35rem);
	font-weight: 300;
	line-height: 1;
}

.rs-hero__sub-white {
	color: var(--rs-color-white);
	text-transform: lowercase;
	font-weight: 300;
}

.rs-hero__sub-highlight {
	display: inline-flex;
	align-items: center;
	background: var(--rs-color-yellow);
	padding: 0.08em 0.5em 0.02em;
	line-height: 1.15;
}

.rs-hero__sub-script {
	font-family: var(--rs-font-script);
	font-size: 1.05em;
	font-weight: 400;
	color: var(--rs-color-black);
	text-transform: lowercase;
}

.rs-hero__controls {
	position: absolute;
	bottom: clamp(4.75rem, 10vh, 6.75rem);
	right: var(--rs-header-inset);
	left: auto;
	z-index: 10;
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
}

.rs-hero__arrows {
	display: flex;
	gap: 0.75rem;
	pointer-events: auto;
}

.rs-hero__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 8px;
	color: var(--rs-color-white);
	transition: background var(--rs-transition), border-color var(--rs-transition);
}

.rs-hero__arrow svg {
	width: 24px;
	height: 24px;
}

.rs-hero__arrow:disabled {
	opacity: 0.45;
	cursor: default;
}

.rs-hero__arrow:not(:disabled):hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--rs-color-white);
}

.rs-hero__arrow:disabled:hover {
	background: transparent;
}

.rs-hero__progress {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	padding: 0 var(--rs-header-inset) 2.5rem;
}

.rs-hero__progress-track {
	height: 1px;
	background: rgba(255, 255, 255, 0.45);
	border-radius: 0;
	overflow: visible;
	position: relative;
}

.rs-hero__progress-fill {
	height: 3px;
	margin-top: -1px;
	background: var(--rs-color-yellow);
	border-radius: 0;
	transition: width 0.5s ease;
}

/* ── Page Hero ─────────────────────────────────────────────── */

.rs-page-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: var(--rs-hero-width);
	min-height: var(--rs-page-hero-min-height, 85vh);
	margin: 2.5vh auto 0;
	border-radius: var(--rs-hero-radius);
	overflow: hidden;
	color: var(--rs-color-white);
	isolation: isolate;
}

.rs-page-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--rs-color-navy);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.rs-page-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
}

.rs-page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--rs-page-hero-overlay, rgba(30, 60, 90, 0.7));
	pointer-events: none;
}

.rs-page-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: clamp(5rem, 12vh, 8rem) var(--rs-header-inset) clamp(1.75rem, 4vh, 2.75rem);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.85rem;
}

.rs-page-hero__title {
	margin: 0;
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(2.75rem, 6.5vw, 5.25rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--rs-page-hero-title-color, var(--rs-color-white));
}

.rs-page-hero__breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--rs-font-sans);
	font-weight: 400;
	font-size: clamp(0.95rem, 1.15vw, 1.125rem);
	line-height: 1.3;
	color: var(--rs-page-hero-crumb, var(--rs-color-white));
}

.rs-page-hero__crumb {
	color: inherit;
	transition: opacity var(--rs-transition);
}

.rs-page-hero__crumb:hover {
	opacity: 0.8;
}

.rs-page-hero__crumb--current {
	color: var(--rs-page-hero-accent, var(--rs-color-yellow));
	pointer-events: none;
}

.rs-page-hero__sep {
	opacity: 0.85;
}

.rs-page-hero__divider {
	width: 100%;
	height: 1px;
	margin-top: 0.35rem;
	background: var(--rs-page-hero-divider, rgba(255, 255, 255, 0.55));
}

/* ── About Intro ────────────────────────────────────────────── */

/* ── Scroll reveal ──────────────────────────────────────────── */

[data-rs-reveal] {
	opacity: 0;
	transform: translate3d(0, 1.75rem, 0);
	transition:
		opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--rs-reveal-delay, 0ms);
	will-change: opacity, transform;
}

[data-rs-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

[data-rs-reveal='left'] {
	transform: translate3d(-1.75rem, 0, 0);
}

[data-rs-reveal='right'] {
	transform: translate3d(1.75rem, 0, 0);
}

[data-rs-reveal='scale'] {
	transform: translate3d(0, 1.25rem, 0) scale(0.96);
}

[data-rs-reveal='scale'].is-visible {
	transform: translate3d(0, 0, 0) scale(1);
}

[data-rs-reveal='fade'] {
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	[data-rs-reveal],
	[data-rs-reveal].is-visible {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

.rs-about-intro {
	width: var(--rs-hero-width);
	min-height: 62vh;
	height: auto;
	margin: 2.5vh auto;
	border-radius: var(--rs-hero-radius);
	background: var(--rs-color-white);
	color: var(--rs-color-black);
	overflow: hidden;
}

.rs-about-intro__inner {
	display: grid;
	grid-template-columns: var(--rs-section-aside) minmax(0, 1fr);
	gap: var(--rs-section-gap);
	align-items: stretch;
	min-height: 62vh;
	height: 100%;
	padding: clamp(2rem, 4.5vh, 3.5rem) var(--rs-header-inset);
	box-sizing: border-box;
}

.rs-about-intro__aside {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	min-height: 100%;
	width: max-content;
	max-width: 100%;
	min-width: 0;
}

.rs-about-intro__label {
	margin: 0;
	max-width: 7ch;
	font-family: var(--rs-font-script);
	font-size: clamp(1.05rem, 1.35vw, 1.25rem);
	font-weight: 400;
	font-style: italic;
	text-transform: lowercase;
	color: var(--rs-color-black);
	line-height: 1.2;
}

.rs-about-intro__main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-width: 0;
	width: 100%;
	max-width: min(100%, var(--rs-section-content-width));
	margin-left: 0;
	padding-left: var(--rs-section-content-indent);
	padding-bottom: 1.5vh;
	box-sizing: border-box;
}

.rs-about-intro__text {
	margin: 0 0 2em;
	width: 100%;
	max-width: 100%;
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(1.94rem, 3.25vw, 3.31rem);
	line-height: 1.38;
	letter-spacing: -0.01em;
	overflow-wrap: anywhere;
	word-break: normal;
	hyphens: none;
}

.rs-about-intro__text-highlight {
	display: inline;
	padding: 0.05em 0.22em 0.02em;
	background: var(--rs-color-yellow);
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	font-size: 1.05em;
	line-height: 1.2;
	color: var(--rs-color-black);
	border-radius: 2px;
	vertical-align: baseline;
}

.rs-about-intro__description {
	margin: 0 0 2em;
	width: 100%;
	max-width: 42rem;
	font-family: var(--rs-font-sans);
	font-weight: 400;
	font-size: clamp(1rem, 1.25vw, 1.125rem);
	line-height: 1.65;
	letter-spacing: 0;
	color: var(--rs-color-black);
}

.rs-about-intro__text + .rs-about-intro__description {
	margin-top: -0.85em;
}

.rs-about-intro__description p {
	margin: 0 0 0.85em;
}

.rs-about-intro__description p:last-child {
	margin-bottom: 0;
}

/* ── About Photo ────────────────────────────────────────────── */

.rs-about-photo {
	width: var(--rs-hero-width);
	height: 62vh;
	min-height: 420px;
	margin: 2.5vh auto;
	display: flex;
	flex-direction: column;
	border-radius: var(--rs-hero-radius);
	background: var(--rs-about-photo-bg, #95b8a8);
	color: var(--rs-color-black);
	overflow: hidden;
}

.rs-about-photo--has-image {
	height: 200vh;
	min-height: 0;
}

.rs-about-photo__inner {
	display: grid;
	grid-template-columns: var(--rs-section-aside) minmax(0, 1fr);
	gap: var(--rs-section-gap);
	align-items: stretch;
	flex: 0 0 auto;
	width: 100%;
	padding: clamp(2rem, 4.5vh, 3.5rem) var(--rs-header-inset);
}

.rs-about-photo:not(.rs-about-photo--has-image) .rs-about-photo__inner {
	flex: 1 1 auto;
	height: 100%;
	min-height: 0;
}

.rs-about-photo--has-image .rs-about-photo__inner {
	flex: 0 0 42%;
	min-height: 0;
}

.rs-about-photo__aside {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	min-height: 100%;
	width: max-content;
	max-width: 100%;
}

.rs-about-photo__label {
	margin: 0;
	max-width: 10ch;
	font-family: var(--rs-font-script);
	font-size: clamp(1.05rem, 1.35vw, 1.25rem);
	font-weight: 400;
	font-style: italic;
	color: var(--rs-color-black);
	line-height: 1.2;
}

.rs-about-photo__dot {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rs-color-black);
	margin-bottom: clamp(0.5rem, 2vh, 1.25rem);
}

.rs-about-photo__main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: var(--rs-section-content-width);
	max-width: 100%;
	margin-left: var(--rs-section-content-indent);
	padding-bottom: 1.5vh;
}

.rs-about-photo__text {
	margin: 0 0 2em;
	width: 100%;
	max-width: none;
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(1.94rem, 3.25vw, 3.31rem);
	line-height: 1.38;
	letter-spacing: -0.01em;
}

.rs-about-photo__media {
	flex: 1 1 0;
	min-height: 0;
	margin: 0 var(--rs-header-inset) var(--rs-header-inset);
	border-radius: var(--rs-hero-radius);
	overflow: hidden;
	background: #e8e6e1;
	transform: scale(var(--rs-about-photo-scale, 0.68));
	transform-origin: center center;
	will-change: transform;
}

.rs-about-photo__image {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	display: block;
}

@media (prefers-reduced-motion: reduce) {
	.rs-about-photo__media {
		transform: none;
		will-change: auto;
	}
}

/* ── Shared CTA ─────────────────────────────────────────────── */

.rs-cta {
	display: inline-flex;
	align-items: stretch;
	width: auto;
	min-width: 0;
	height: 52px;
	border-radius: 999px;
	background: var(--rs-color-yellow);
	color: var(--rs-color-black);
	overflow: hidden;
	transition: background 0.35s ease, color 0.35s ease;
}

.rs-cta:hover {
	background: var(--rs-color-navy);
	color: var(--rs-color-yellow);
}

.rs-cta__text {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	padding: 0 1.25rem 0 1.5rem;
	font-family: var(--rs-font-script);
	font-size: 1.05rem;
	font-style: italic;
	font-weight: 400;
	white-space: nowrap;
}

.rs-cta__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 4px 4px 4px 0;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--rs-color-yellow-dark);
	color: var(--rs-color-black);
	transition: background 0.35s ease, color 0.35s ease, border-radius 0.35s ease;
}

.rs-cta:hover .rs-cta__icon {
	background: var(--rs-color-navy-dark);
	color: var(--rs-color-yellow);
	border-radius: 10px;
}

.rs-cta__icon svg {
	width: 18px;
	height: 18px;
}

/* ── Feature Panel ──────────────────────────────────────────── */

.rs-feature-panel {
	width: var(--rs-hero-width);
	min-height: 48vh;
	margin: 2.5vh auto;
	border-radius: var(--rs-hero-radius);
	background: var(--rs-feature-bg, #93b5a6);
	color: var(--rs-color-black);
	overflow: hidden;
}

.rs-feature-panel__inner {
	display: grid;
	grid-template-columns: var(--rs-section-aside) minmax(0, 1fr);
	gap: var(--rs-section-gap);
	align-items: center;
	min-height: 48vh;
	padding: clamp(2.5rem, 6vh, 4.5rem) var(--rs-header-inset);
}

.rs-feature-panel__aside {
	display: block;
}

.rs-feature-panel__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: var(--rs-section-content-width);
	max-width: 100%;
	margin-left: var(--rs-section-content-indent);
}

.rs-feature-panel__heading {
	margin: 0 0 1rem;
	width: 100%;
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(2rem, 3.5vw, 3.25rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.rs-feature-panel__heading-highlight {
	display: inline;
	padding: 0.05em 0.22em 0.02em;
	background: var(--rs-color-yellow);
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	font-size: 1.05em;
	line-height: 1.2;
	color: var(--rs-color-black);
	border-radius: 2px;
	vertical-align: baseline;
}

.rs-feature-panel__text {
	margin: 0 0 2em;
	width: 100%;
	max-width: none;
	font-family: var(--rs-font-sans);
	font-weight: 300;
	font-size: clamp(1rem, 1.35vw, 1.2rem);
	line-height: 1.7;
}

.rs-feature-panel__text p {
	margin: 0 0 1em;
}

.rs-feature-panel__text p:last-child {
	margin-bottom: 0;
}

/* ── Services Carousel ──────────────────────────────────────── */

.rs-services {
	--rs-services-gap: clamp(0.85rem, 1.5vw, 1.25rem);
	--rs-services-chrome: 12rem;
	--rs-services-card-max-h: calc(90vh - var(--rs-services-chrome));
	display: flex;
	flex-direction: column;
	width: var(--rs-hero-width);
	max-height: 90vh;
	margin: 2.5vh auto;
	padding: clamp(1.5rem, 3vh, 2.75rem) 0 clamp(1.5rem, 3vh, 2.5rem);
	border-radius: var(--rs-hero-radius);
	background: var(--rs-services-bg, #ffffff);
	color: var(--rs-color-black);
	overflow: hidden;
}

.rs-services--has-heading {
	--rs-services-chrome: 20rem;
	padding-top: clamp(2.25rem, 4.5vh, 3.75rem);
	padding-bottom: clamp(2.25rem, 4.5vh, 3.75rem);
}

.rs-services__header {
	flex: 0 0 auto;
	padding-inline: var(--rs-header-inset);
	margin-bottom: clamp(1.25rem, 2.5vh, 2rem);
}

.rs-services__heading {
	margin: 0;
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(2rem, 3.5vw, 3.25rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.rs-services__viewport {
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
	padding-inline: var(--rs-header-inset);
}

.rs-services__track {
	display: flex;
	gap: var(--rs-services-gap);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.rs-services__card {
	flex: 0 0 auto;
	width: min(
		calc((100% - (var(--rs-services-gap) * 1.35)) / 2.35),
		calc(var(--rs-services-card-max-h) * 3 / 4)
	);
	min-width: 0;
}

.rs-services__card-link {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	height: auto;
	max-height: var(--rs-services-card-max-h);
	border-radius: clamp(14px, 1.5vw, 22px);
	overflow: hidden;
	color: inherit;
}

.rs-services__image {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	display: block;
	transition: transform 0.55s ease;
}

.rs-services__image--placeholder {
	background: linear-gradient(135deg, #d9e2e8, #b7c5ce);
}

.rs-services__card-link:hover .rs-services__image {
	transform: scale(1.04);
}

.rs-services__label {
	position: absolute;
	left: 1.275rem;
	bottom: 1.275rem;
	z-index: 2;
	display: inline-block;
	max-width: calc(100% - 2.55rem);
	padding: 0.55rem 0.9rem 0.45rem;
	background: var(--rs-color-yellow);
	color: var(--rs-color-black);
	font-family: var(--rs-font-script);
	font-size: clamp(1.26rem, 1.62vw, 1.62rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.2;
	border-radius: 4px;
	transition: background 0.35s ease, color 0.35s ease;
}

.rs-services__card-link:hover .rs-services__label {
	background: var(--rs-color-navy);
	color: var(--rs-color-yellow);
}

.rs-services__controls {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 1.25rem;
	margin-top: 1.5rem;
	padding-inline: var(--rs-header-inset);
}

.rs-services__arrows {
	display: flex;
	gap: 0.55rem;
}

.rs-services__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--rs-color-black);
	border-radius: 8px;
	color: var(--rs-color-black);
	background: transparent;
	transition: background 0.25s ease, opacity 0.25s ease;
}

.rs-services__arrow svg {
	width: 20px;
	height: 20px;
}

.rs-services__arrow:hover:not(:disabled) {
	background: rgba(0, 0, 0, 0.06);
}

.rs-services__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.rs-services__dots {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.rs-services__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 50%;
	background: var(--rs-color-black);
	border: 1.5px solid var(--rs-color-black);
	opacity: 1;
	transition: background 0.25s ease, transform 0.25s ease;
}

.rs-services__dot.is-active {
	background: transparent;
	transform: scale(1.15);
}

/* ── Sticky Cards ─────────────────────────────────────────── */

.rs-sticky-cards {
	--rs-sticky-h-sm: 350px;
	--rs-sticky-h-md: 450px;
	--rs-sticky-h-lg: 575px;
	--rs-sticky-gap: clamp(1rem, 2vw, 1.75rem);
	--rs-sticky-radius: clamp(12px, 1.4vw, 18px);
	width: var(--rs-hero-width);
	margin: 2.5vh auto;
	padding: clamp(3.5rem, 9vh, 6.5rem) 0 clamp(0.5rem, 1vh, 0.875rem);
	border-radius: var(--rs-hero-radius);
	background: var(--rs-sticky-bg, #76b8c9);
	color: var(--rs-color-black);
}

.rs-sticky-cards__inner {
	padding-inline: var(--rs-header-inset);
}

.rs-sticky-cards__header {
	margin-bottom: clamp(2rem, 4vh, 3.25rem);
	max-width: 52rem;
}

.rs-sticky-cards__heading {
	margin: 0;
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--rs-color-black);
}

.rs-sticky-cards__heading-line {
	display: block;
}

.rs-sticky-cards__heading-line + .rs-sticky-cards__heading-line {
	margin-top: 0.35em;
}

.rs-sticky-cards__heading-line:first-child {
	font-size: 1.2em;
}

.rs-sticky-cards__heading-text {
	display: inline;
}

.rs-sticky-cards__heading-highlight {
	display: inline;
	padding: 0.05em 0.2em 0.02em;
	margin-left: 0.15em;
	background: var(--rs-color-yellow);
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	font-size: 1.05em;
	line-height: 1.2;
	border-radius: 2px;
	vertical-align: baseline;
}

.rs-sticky-cards__heading-line .rs-sticky-cards__heading-text + .rs-sticky-cards__heading-highlight {
	margin-left: 0.15em;
}

.rs-sticky-cards__heading-line .rs-sticky-cards__heading-highlight:first-child {
	margin-left: 0;
}

.rs-sticky-cards__row + .rs-sticky-cards__row {
	margin-top: clamp(0.5rem, 1vh, 0.8rem);
}

.rs-sticky-cards__track {
	/* Extra scroll room so taller cards can shrink while sticky */
	min-height: calc(var(--rs-sticky-h-lg) + 14rem);
}

.rs-sticky-cards__sticky {
	position: sticky;
	top: clamp(5.5rem, 12vh, 7.5rem);
	z-index: 1;
}

.rs-sticky-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--rs-sticky-gap);
	align-items: start;
}

.rs-sticky-cards__card {
	min-width: 0;
}

.rs-sticky-cards__card--sm {
	--card-media-h: var(--rs-sticky-h-sm);
}

.rs-sticky-cards__card--md {
	--card-media-h: var(--rs-sticky-h-md);
}

.rs-sticky-cards__card--lg {
	--card-media-h: var(--rs-sticky-h-lg);
}

.rs-sticky-cards__media {
	display: block;
	width: 100%;
	height: var(--card-media-h);
	border-radius: var(--rs-sticky-radius);
	overflow: hidden;
	color: inherit;
}

@media (min-width: 1025px) {
	.rs-sticky-cards__media {
		will-change: height;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rs-sticky-cards__track {
		min-height: 0 !important;
		height: auto !important;
	}

	.rs-sticky-cards__sticky {
		position: static;
		min-height: 0 !important;
	}

	.rs-sticky-cards {
		--rs-sticky-h-md: var(--rs-sticky-h-sm);
		--rs-sticky-h-lg: var(--rs-sticky-h-sm);
	}

	.rs-sticky-cards__media {
		will-change: auto;
	}

	a.rs-sticky-cards__media:hover .rs-sticky-cards__image {
		transform: none;
	}
}

.rs-sticky-cards__image {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	display: block;
	transition: transform 0.55s ease;
}

.rs-sticky-cards__image--placeholder {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(0, 0, 0, 0.12));
}

a.rs-sticky-cards__media:hover .rs-sticky-cards__image {
	transform: scale(1.04);
}

.rs-sticky-cards__title {
	margin: 0.85rem 0 0.4rem;
	font-size: clamp(1.35rem, 1.8vw, 1.75rem);
	line-height: 1.2;
}

.rs-sticky-cards__title-mark {
	display: inline;
	padding: 0.12em 0.28em 0.08em;
	background: var(--rs-color-yellow);
	color: var(--rs-color-black);
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	border-radius: 2px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.rs-sticky-cards__desc {
	margin: 0;
	max-width: 22rem;
	font-family: var(--rs-font-sans);
	font-weight: 400;
	font-size: clamp(1.05rem, 1.32vw, 1.2rem);
	line-height: 1.55;
	color: var(--rs-color-black);
}

/* ── Plan Your Trip ───────────────────────────────────────── */

.rs-plan-trip {
	--rs-plan-gap: clamp(1.15rem, 1.8vw, 1.5rem);
	--rs-plan-radius: clamp(12px, 1.3vw, 16px);
	width: var(--rs-hero-width);
	height: 90vh;
	min-height: 560px;
	margin: 2.5vh auto;
	border-radius: var(--rs-hero-radius);
	background: var(--rs-color-white);
	color: var(--rs-color-black);
	overflow: hidden;
}

.rs-plan-trip__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	padding: clamp(2rem, 4.5vh, 3.5rem) var(--rs-header-inset) clamp(1.75rem, 3.5vh, 2.75rem);
}

.rs-plan-trip__header {
	flex-shrink: 0;
	margin-bottom: clamp(1.5rem, 3.5vh, 2.5rem);
}

.rs-plan-trip__heading {
	margin: 0;
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(2.405rem, 3.77vw, 3.25rem);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--rs-color-black);
}

.rs-plan-trip__heading-line {
	display: block;
}

.rs-plan-trip__heading-line--secondary {
	margin-top: 0.28em;
	font-size: 0.72em;
	font-weight: 400;
	letter-spacing: -0.01em;
}

.rs-plan-trip__heading-text {
	display: inline;
}

.rs-plan-trip__heading-highlight {
	display: inline;
	padding: 0.08em 0.22em 0.06em;
	margin-left: 0.2em;
	background: var(--rs-color-yellow);
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	font-size: 1.08em;
	line-height: 1.2;
	border-radius: 2px;
	vertical-align: baseline;
}

.rs-plan-trip__heading-line .rs-plan-trip__heading-text + .rs-plan-trip__heading-highlight {
	margin-left: 0.2em;
}

.rs-plan-trip__heading-line .rs-plan-trip__heading-highlight:first-child {
	margin-left: 0;
}

.rs-plan-trip__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--rs-plan-gap);
	flex: 1 1 auto;
	min-height: 0;
	align-items: stretch;
}

.rs-plan-trip__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	min-height: 0;
	height: 100%;
}

.rs-plan-trip__media {
	position: relative;
	display: block;
	width: 100%;
	flex: 1 1 auto;
	min-height: 180px;
	border-radius: var(--rs-plan-radius);
	overflow: hidden;
}

.rs-plan-trip__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.rs-plan-trip__image--placeholder {
	background: linear-gradient(145deg, #e8eef2 0%, #c5d4dc 100%);
}

.rs-plan-trip__title {
	flex-shrink: 0;
	margin: 1.15rem 0 0.65rem;
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	font-size: clamp(1.56rem, 2.015vw, 1.95rem);
	line-height: 1.25;
	color: var(--rs-color-black);
}

.rs-plan-trip__desc {
	flex-shrink: 0;
	margin: 0 0 1.35rem;
	font-family: var(--rs-font-sans);
	font-weight: 300;
	font-size: clamp(0.8125rem, 0.95vw, 0.9rem);
	line-height: 1.55;
	color: var(--rs-color-black);
}

.rs-plan-trip__cta {
	flex-shrink: 0;
	margin-top: auto;
}

/* ── Book Your Stay ───────────────────────────────────────── */

.rs-book-stay {
	--rs-book-stay-gap: clamp(1rem, 1.6vw, 1.35rem);
	--rs-book-stay-radius: clamp(14px, 1.5vw, 20px);
	width: var(--rs-hero-width);
	height: 90vh;
	min-height: 560px;
	margin: 2.5vh auto;
	border-radius: var(--rs-hero-radius);
	background: var(--rs-book-stay-bg, #f3e9c7);
	color: var(--rs-color-black);
	overflow: hidden;
}

.rs-book-stay__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	padding: clamp(2rem, 4.5vh, 3.5rem) var(--rs-header-inset) clamp(1.75rem, 3.5vh, 2.75rem);
}

.rs-book-stay__header {
	flex-shrink: 0;
	margin-bottom: clamp(1.5rem, 3.5vh, 2.5rem);
}

.rs-book-stay__heading {
	margin: 0;
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(2rem, 3.8vw, 3.35rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--rs-color-black);
}

.rs-book-stay__heading-line {
	display: block;
}

.rs-book-stay__heading-line + .rs-book-stay__heading-line {
	margin-top: 0.2em;
}

.rs-book-stay__heading-text {
	display: inline;
}

.rs-book-stay__heading-highlight {
	display: inline;
	padding: 0.05em 0.22em 0.02em;
	margin-left: 0.15em;
	background: var(--rs-color-yellow);
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	font-size: 1.05em;
	line-height: 1.2;
	border-radius: 2px;
	vertical-align: baseline;
}

.rs-book-stay__heading-line .rs-book-stay__heading-text + .rs-book-stay__heading-highlight {
	margin-left: 0.15em;
}

.rs-book-stay__heading-line .rs-book-stay__heading-highlight:first-child {
	margin-left: 0;
}

.rs-book-stay__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--rs-book-stay-gap);
	flex: 1 1 auto;
	min-height: 0;
}

.rs-page-cards {
	height: auto;
	min-height: 0;
}

.rs-page-cards .rs-book-stay__inner {
	height: auto;
}

.rs-page-cards .rs-book-stay__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	flex: none;
}

.rs-page-cards .rs-book-stay__media {
	height: 50vh;
	aspect-ratio: auto;
	min-height: 220px;
}

.rs-book-stay__card {
	min-width: 0;
	min-height: 0;
	height: 100%;
}

.rs-book-stay__media {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 280px;
	border-radius: var(--rs-book-stay-radius);
	overflow: hidden;
	color: inherit;
}

.rs-book-stay__image {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	display: block;
	transition: transform 0.55s ease;
}

.rs-book-stay__image--placeholder {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(0, 0, 0, 0.1));
}

a.rs-book-stay__media:hover .rs-book-stay__image {
	transform: scale(1.04);
}

.rs-book-stay__label {
	position: absolute;
	left: clamp(0.85rem, 1.5vw, 1.25rem);
	bottom: clamp(0.85rem, 1.5vw, 1.25rem);
	z-index: 1;
	padding: 0.12em 0.32em 0.08em;
	background: var(--rs-color-yellow);
	color: var(--rs-color-black);
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	font-size: clamp(1.15rem, 1.6vw, 1.55rem);
	line-height: 1.2;
	border-radius: 2px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

@media (prefers-reduced-motion: reduce) {
	a.rs-book-stay__media:hover .rs-book-stay__image {
		transform: none;
	}
}

/* ── Plan Your Event ──────────────────────────────────────── */

.rs-plan-event {
	--rs-plan-event-media-radius: clamp(20px, 2vw, 28px);
	width: var(--rs-hero-width);
	height: 90vh;
	min-height: 520px;
	margin: 2.5vh auto;
	border-radius: var(--rs-hero-radius);
	background: var(--rs-plan-event-bg, #735c67);
	color: var(--rs-color-white);
	overflow: hidden;
}

.rs-plan-event__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: stretch;
	height: 100%;
	padding: clamp(1.5rem, 3vh, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
}

.rs-plan-event__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(1rem, 3vh, 2.5rem) clamp(1rem, 3vw, 2.5rem) clamp(1rem, 3vh, 2.5rem) clamp(1.5rem, 4vw, 3.5rem);
	min-width: 0;
}

.rs-plan-event__heading {
	margin: 0 0 clamp(1.25rem, 2.5vh, 1.75rem);
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(2.82rem, 5.04vw, 4.5rem);
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--rs-color-white);
}

.rs-plan-event__heading-text {
	display: inline;
}

.rs-plan-event__heading-highlight {
	display: inline-block;
	margin-left: 0.2em;
	padding: 0.06em 0.28em 0.08em;
	background: var(--rs-color-yellow);
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	font-size: 0.92em;
	line-height: 1.15;
	color: var(--rs-color-black);
	border-radius: 2px;
	vertical-align: baseline;
}

.rs-plan-event__text {
	margin: 0 0 clamp(1.75rem, 3.5vh, 2.5rem);
	max-width: 34rem;
	font-family: var(--rs-font-sans);
	font-weight: 300;
	font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
	line-height: 1.65;
	color: var(--rs-color-white);
}

.rs-plan-event__cta {
	margin-top: 0.25rem;
}

.rs-plan-event__media {
	display: flex;
	align-items: stretch;
	min-width: 0;
	min-height: 0;
	height: 100%;
}

.rs-plan-event__image {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	display: block;
	border-radius: var(--rs-plan-event-media-radius);
}

.rs-plan-event__image--placeholder {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(0, 0, 0, 0.18) 100%);
}

/* ── Get in Touch ─────────────────────────────────────────── */

.rs-get-in-touch {
	position: relative;
	width: var(--rs-hero-width);
	min-height: 42vh;
	margin: 2.5vh auto;
	border-radius: var(--rs-hero-radius);
	background: var(--rs-color-white);
	color: var(--rs-color-black);
	overflow: hidden;
}

.rs-get-in-touch::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: clamp(5px, 0.45vw, 8px);
	background: var(--rs-color-yellow);
	pointer-events: none;
}

.rs-get-in-touch__inner {
	display: flex;
	align-items: center;
	min-height: 42vh;
	padding: clamp(3rem, 7vh, 5rem) var(--rs-header-inset);
}

.rs-get-in-touch__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: var(--rs-section-content-width);
}

.rs-get-in-touch__heading {
	margin: 0 0 clamp(1.5rem, 3.5vh, 2.5rem);
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--rs-color-black);
}

.rs-get-in-touch__heading-line {
	display: block;
}

.rs-get-in-touch__heading-line + .rs-get-in-touch__heading-line {
	margin-top: 0.08em;
}

.rs-get-in-touch__heading-text {
	display: inline;
}

.rs-get-in-touch__heading-highlight {
	display: inline;
	padding: 0.05em 0.22em 0.02em;
	margin-left: 0.15em;
	background: var(--rs-color-yellow);
	font-family: var(--rs-font-script);
	font-weight: 400;
	font-style: italic;
	font-size: 1.05em;
	line-height: 1.2;
	border-radius: 2px;
	vertical-align: baseline;
}

.rs-get-in-touch__heading-line .rs-get-in-touch__heading-text + .rs-get-in-touch__heading-highlight {
	margin-left: 0.15em;
}

.rs-get-in-touch__heading-line .rs-get-in-touch__heading-highlight:first-child {
	margin-left: 0;
}

.rs-get-in-touch__text {
	margin: 0;
	width: 100%;
	max-width: 38rem;
	font-family: var(--rs-font-sans);
	font-weight: 100;
	font-size: clamp(0.8125rem, 1vw, 0.9375rem);
	line-height: 1.55;
	color: var(--rs-color-black);
}

/* ── Contact Form ──────────────────────────────────────────── */

.rs-contact-form {
	width: var(--rs-hero-width);
	margin: 2.5vh auto;
	border-radius: var(--rs-hero-radius);
	background: var(--rs-contact-form-bg, #62b3c6);
	color: var(--rs-color-black);
	overflow: hidden;
}

.rs-contact-form__inner {
	display: grid;
	grid-template-columns: minmax(10rem, 0.28fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 2.75rem);
	align-items: stretch;
	padding: clamp(2.25rem, 4.5vh, 3.25rem) clamp(1.75rem, 3.5vw, 3rem);
}

.rs-contact-form__info {
	padding-top: 0.35rem;
}

.rs-contact-form__line {
	margin: 0;
	font-family: var(--rs-font-sans);
	font-weight: 700;
	font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
	line-height: 1.55;
	letter-spacing: 0.01em;
}

.rs-contact-form__line + .rs-contact-form__line {
	margin-top: 0.15em;
}

.rs-contact-form__line a {
	color: inherit;
	text-decoration: none;
}

.rs-contact-form__line a:hover {
	text-decoration: underline;
}

.rs-contact-form__phones {
	margin-top: 1.35rem;
}

.rs-contact-form__phones .rs-contact-form__line + .rs-contact-form__line {
	margin-top: 0.1em;
}

.rs-contact-form__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.25rem;
	align-items: stretch;
	min-width: 0;
}

.rs-contact-form--has-map .rs-contact-form__main {
	grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.95fr);
	gap: clamp(1rem, 2vw, 1.5rem);
}

.rs-contact-form__form {
	min-width: 0;
}

.rs-contact-form__map {
	position: relative;
	min-height: 280px;
	height: 100%;
	border-radius: 18px;
	overflow: hidden;
	background: #2b5994;
}

.rs-contact-form__map .rs-map__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
}

.rs-contact-form__notice {
	margin: 0;
	padding: 1.25rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.55);
	font-weight: 400;
	font-size: 0.9375rem;
}

.rs-contact-form .wpcf7 {
	margin: 0;
}

.rs-contact-form .wpcf7-form {
	margin: 0;
}

.rs-contact-form .wpcf7-form > p {
	margin: 0;
}

.rs-contact-form .rs-cf7-fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.rs-contact-form:not(.rs-contact-form--has-map) .rs-cf7-fields {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rs-contact-form .rs-cf7-message {
	margin-top: 0.75rem;
}

.rs-contact-form .rs-cf7-consent {
	margin-top: 0.9rem;
}

.rs-contact-form .rs-cf7-submit {
	margin-top: 1rem;
}

.rs-contact-form .rs-cf7-field,
.rs-contact-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.rs-contact-form input.wpcf7-form-control:not([type="checkbox"]):not([type="submit"]),
.rs-contact-form textarea.wpcf7-form-control {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0.85rem 1rem;
	border: none;
	border-radius: 14px;
	background: var(--rs-color-white);
	color: var(--rs-color-black);
	font-family: var(--rs-font-sans);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.4;
	box-shadow: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.rs-contact-form input.wpcf7-form-control:not([type="checkbox"]):not([type="submit"]):focus,
.rs-contact-form textarea.wpcf7-form-control:focus {
	outline: 2px solid rgba(0, 0, 0, 0.18);
	outline-offset: 1px;
}

.rs-contact-form input.wpcf7-form-control::placeholder,
.rs-contact-form textarea.wpcf7-form-control::placeholder {
	color: var(--rs-color-black);
	opacity: 0.85;
}

.rs-contact-form textarea.wpcf7-form-control {
	min-height: 5.5rem;
	height: 5.5rem;
	max-height: 8rem;
	resize: vertical;
}

.rs-contact-form .wpcf7-acceptance {
	margin: 0;
}

.rs-contact-form .wpcf7-list-item {
	margin: 0;
}

.rs-contact-form .wpcf7-list-item label {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-family: var(--rs-font-sans);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.45;
	cursor: pointer;
}

.rs-contact-form .wpcf7-list-item input[type="checkbox"] {
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	margin: 0.15rem 0 0;
	accent-color: var(--rs-color-navy);
	cursor: pointer;
}

.rs-contact-form .wpcf7-list-item a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rs-contact-form .rs-cf7-submit .rs-cta {
	border: none;
	cursor: pointer;
}

.rs-contact-form .wpcf7-spinner {
	margin-left: 0.75rem;
	vertical-align: middle;
}

.rs-contact-form .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	border: none;
	background: rgba(255, 255, 255, 0.65);
	font-size: 0.875rem;
}

.rs-contact-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	font-weight: 400;
}

/* ── Map ───────────────────────────────────────────────────── */

.rs-map {
	position: relative;
	width: var(--rs-hero-width);
	min-height: var(--rs-map-min-height, 52vh);
	height: var(--rs-map-min-height, 52vh);
	margin: 2.5vh auto;
	border-radius: var(--rs-hero-radius);
	background: #2b5994;
	overflow: hidden;
}

.rs-map__canvas {
	width: 100%;
	height: 100%;
	min-height: inherit;
	border: 0;
	z-index: 0;
}

.rs-map .leaflet-container,
.rs-contact-form__map .leaflet-container {
	width: 100%;
	height: 100%;
	font: inherit;
	background: #d6d6d6;
}

.rs-map .leaflet-control-attribution,
.rs-contact-form__map .leaflet-control-attribution {
	font-size: 0.65rem;
	background: rgba(255, 255, 255, 0.75);
}

/* ── Footer ───────────────────────────────────────────────── */

.rs-footer {
	background: var(--rs-color-white);
	color: var(--rs-color-black);
}

.rs-footer__top {
	padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.rs-footer__grid {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	gap: clamp(2rem, 5vw, 4rem);
}

.rs-footer__heading {
	font-family: var(--rs-font-script);
	font-size: clamp(1.45rem, 2.2vw, 1.75rem);
	font-weight: 400;
	font-style: italic;
	margin: 0 0 0.65rem;
	color: var(--rs-color-black);
}

.rs-footer__col--brand .rs-footer__heading {
	margin-bottom: 0.5rem;
}

.rs-footer__text {
	font-family: var(--rs-font-sans);
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.65;
}

.rs-footer__text p {
	margin: 0;
}

.rs-footer__text p + p {
	margin-top: 0.15rem;
}

.rs-footer__col--meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.35rem;
}

.rs-footer__links {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.rs-footer__link,
.rs-footer__links .rs-nav__link {
	display: block;
	font-family: var(--rs-font-sans);
	font-weight: 300;
	font-size: 1rem;
	color: var(--rs-color-black);
	transition: opacity var(--rs-transition);
}

.rs-footer__link:hover,
.rs-footer__links .rs-nav__link:hover {
	opacity: 0.6;
}

.rs-footer__follow .rs-footer__heading {
	margin-bottom: 0.75rem;
}

.rs-footer__social {
	display: flex;
	gap: 0.55rem;
}

.rs-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--rs-color-yellow);
	border-radius: 8px;
	color: var(--rs-color-white);
	transition: transform var(--rs-transition), opacity var(--rs-transition), background var(--rs-transition);
}

.rs-social-btn:hover {
	transform: translateY(-2px);
	background: var(--rs-color-navy);
	opacity: 1;
}

.rs-social-btn svg {
	width: 18px;
	height: 18px;
}

.rs-footer__bottom {
	border-top: 1px solid var(--rs-color-black);
	padding: 1.1rem 0 1.6rem;
}

.rs-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
}

.rs-footer__copyright {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.45rem;
	font-size: 0.875rem;
	font-weight: 300;
	color: var(--rs-color-black);
}

.rs-footer__softweb {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
}

.rs-footer__softweb:hover {
	opacity: 0.75;
}

.rs-footer__softweb-logo {
	display: block;
	height: 14px;
	width: auto;
	transform: translateY(-2px);
}

.rs-back-to-top {
	position: fixed;
	right: clamp(1rem, 2.5vw, 1.75rem);
	bottom: clamp(1rem, 2.5vw, 1.75rem);
	z-index: 250;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--rs-color-black);
	color: var(--rs-color-white);
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s ease;
}

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

.rs-back-to-top svg {
	width: 20px;
	height: 20px;
}

.rs-back-to-top:hover {
	opacity: 0.85;
	background: var(--rs-color-navy);
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.rs-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	/* Tablet: equal heights, no sticky scroll tracks */
	.rs-sticky-cards {
		--rs-sticky-h-sm: 240px;
		--rs-sticky-h-md: 240px;
		--rs-sticky-h-lg: 240px;
		--rs-sticky-gap: 1rem;
		padding: clamp(2.75rem, 6vh, 4rem) 0 clamp(0.5rem, 1vh, 0.75rem);
	}

	.rs-sticky-cards__header {
		margin-bottom: clamp(1.5rem, 3vh, 2.25rem);
		max-width: none;
	}

	.rs-sticky-cards__heading {
		font-size: clamp(1.85rem, 3.4vw, 2.75rem);
	}

	.rs-plan-trip {
		height: auto;
		min-height: 0;
	}

	.rs-plan-trip__heading {
		font-size: clamp(2.21rem, 3.9vw, 2.795rem);
	}

	.rs-plan-trip__media {
		flex: none;
		aspect-ratio: 3 / 4;
		min-height: 0;
	}

	.rs-plan-event__inner {
		gap: 1.25rem;
		padding: 1.25rem;
	}

	.rs-plan-event__content {
		padding: 1.25rem 0.75rem 1.25rem 1.25rem;
	}

	.rs-plan-event__heading {
		font-size: clamp(2.4rem, 4.32vw, 3.42rem);
	}

	.rs-plan-trip__title {
		font-size: clamp(1.495rem, 2.6vw, 1.755rem);
	}

	.rs-book-stay {
		height: auto;
		min-height: 0;
	}

	.rs-book-stay__heading {
		font-size: clamp(1.85rem, 3.4vw, 2.75rem);
	}

	.rs-book-stay__media {
		min-height: 320px;
		aspect-ratio: 4 / 5;
		height: auto;
	}

	.rs-page-cards .rs-book-stay__media {
		height: 50vh;
		aspect-ratio: auto;
		min-height: 220px;
	}

	.rs-get-in-touch {
		min-height: 0;
	}

	.rs-get-in-touch__heading {
		font-size: clamp(1.85rem, 3.4vw, 2.75rem);
	}

	.rs-contact-form__inner {
		grid-template-columns: minmax(9rem, 0.3fr) minmax(0, 1fr);
		gap: 1.5rem;
	}

	.rs-contact-form--has-map .rs-contact-form__main {
		grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.85fr);
	}

	.rs-sticky-cards__track {
		min-height: 0 !important;
		height: auto !important;
	}

	.rs-sticky-cards__sticky {
		position: static;
		min-height: 0 !important;
	}

	.rs-sticky-cards__card--sm,
	.rs-sticky-cards__card--md,
	.rs-sticky-cards__card--lg {
		--card-media-h: var(--rs-sticky-h-sm);
	}

	.rs-sticky-cards__title {
		font-size: clamp(1.2rem, 2vw, 1.45rem);
	}

	.rs-sticky-cards__desc {
		max-width: none;
		font-size: 1.08rem;
	}
}

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

	.rs-nav {
		position: fixed;
		top: var(--rs-header-height);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem var(--rs-gutter);
		background: rgba(0, 0, 0, 0.92);
		transform: translateY(-120%);
		opacity: 0;
		visibility: hidden;
		transition: transform var(--rs-transition), opacity var(--rs-transition), visibility var(--rs-transition);
		gap: 0.35rem;
		max-height: calc(100vh - var(--rs-header-height) - 1rem);
		overflow-y: auto;
	}

	.rs-header.is-scrolled .rs-nav {
		top: calc(1rem + 72px);
		left: 4vw;
		right: 4vw;
		width: auto;
		border-radius: 0 0 16px 16px;
		background: var(--rs-color-navy);
	}

	.rs-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.rs-nav__item {
		flex-direction: column;
		align-items: stretch;
	}

	.rs-nav__item.has-children::after {
		display: none;
	}

	.rs-nav__link {
		font-size: 1.125rem;
		padding: 0.45rem 0;
	}

	.rs-nav__submenu {
		position: static;
		left: auto;
		top: auto;
		transform: none;
		min-width: 0;
		width: 100%;
		margin: 0.15rem 0 0.55rem;
		padding: 0.65rem 1rem;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
		border-radius: 10px;
	}

	.rs-nav__item.is-open > .rs-nav__submenu,
	.rs-nav__item:focus-within > .rs-nav__submenu {
		display: flex;
	}

	.rs-nav__sublink {
		text-align: left;
		font-size: 1rem;
	}

	.rs-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.rs-footer__col--meta {
		gap: 1.25rem;
	}

	.rs-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.rs-hero__controls {
		bottom: 2rem;
	}

	.rs-page-hero__content {
		padding-top: clamp(6rem, 18vh, 9rem);
		padding-bottom: 1.5rem;
		gap: 0.65rem;
	}

	.rs-page-hero__title {
		font-size: clamp(2.25rem, 10vw, 3.25rem);
	}

	.rs-about-intro {
		height: auto;
		min-height: 0;
		padding-block: 3rem;
	}

	.rs-about-intro__inner {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		padding-block: 0;
		height: auto;
		min-height: 0;
	}

	.rs-about-intro__aside {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		min-height: auto;
		width: 100%;
		max-width: none;
	}

	.rs-about-intro__label {
		max-width: none;
	}

	.rs-about-intro__main {
		width: 100%;
		max-width: none;
		margin-left: 0;
		padding-left: 0;
		padding-bottom: 0;
	}

	.rs-about-photo {
		height: auto;
		min-height: 0;
		padding-block: 3rem;
	}

	.rs-about-photo--has-image {
		height: auto;
		padding-bottom: var(--rs-header-inset);
	}

	.rs-about-photo__inner,
	.rs-about-photo:not(.rs-about-photo--has-image) .rs-about-photo__inner,
	.rs-about-photo--has-image .rs-about-photo__inner {
		flex: none;
		height: auto;
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 1.75rem;
		padding-block: 0;
	}

	.rs-about-photo__aside {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		min-height: auto;
		width: 100%;
		max-width: none;
	}

	.rs-about-photo__label {
		max-width: none;
	}

	.rs-about-photo__dot {
		margin-bottom: 0;
	}

	.rs-about-photo__main {
		width: 100%;
		max-width: none;
		margin-left: 0;
		padding-bottom: 0;
	}

	.rs-about-photo__media {
		flex: none;
		aspect-ratio: 4 / 5;
		max-height: 70vh;
		min-height: 280px;
		margin-top: 2rem;
		transform-origin: center center;
	}

	.rs-feature-panel {
		min-height: 0;
	}

	.rs-feature-panel__inner {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		min-height: 0;
		padding-block: 3rem;
	}

	.rs-feature-panel__content {
		width: 100%;
		max-width: none;
		margin-left: 0;
	}

	.rs-services__card {
		width: min(
			calc((100% - var(--rs-services-gap)) / 1.35),
			calc(var(--rs-services-card-max-h) * 3 / 4)
		);
	}

	.rs-sticky-cards {
		--rs-sticky-h-sm: 220px;
		--rs-sticky-h-md: 220px;
		--rs-sticky-h-lg: 220px;
		--rs-sticky-gap: 1.5rem;
		width: min(var(--rs-hero-width), calc(100% - 1.5rem));
		padding: 2.75rem 0 0.625rem;
		margin-block: 1.5rem;
	}

	.rs-sticky-cards__inner {
		padding-inline: clamp(1rem, 4vw, 1.5rem);
	}

	.rs-sticky-cards__header {
		margin-bottom: 1.75rem;
	}

	.rs-sticky-cards__heading {
		font-size: clamp(1.65rem, 7vw, 2.15rem);
	}

	.rs-sticky-cards__heading-line:first-child {
		font-size: 1.12em;
	}

	.rs-plan-trip {
		width: min(var(--rs-hero-width), calc(100% - 1.5rem));
		height: auto;
		min-height: 0;
		margin-block: 1.5rem;
	}

	.rs-plan-trip__inner {
		padding: 2.5rem clamp(1rem, 4vw, 1.5rem) 2.25rem;
	}

	.rs-plan-trip__header {
		margin-bottom: 1.5rem;
	}

	.rs-plan-trip__heading {
		font-size: clamp(2.08rem, 8.45vw, 2.6rem);
	}

	.rs-plan-trip__heading-line--secondary {
		font-size: 0.78em;
	}

	.rs-plan-trip__grid {
		grid-template-columns: 1fr;
		gap: 2.25rem;
		flex: none;
	}

	.rs-plan-trip__card {
		height: auto;
	}

	.rs-plan-trip__media {
		flex: none;
		aspect-ratio: 4 / 5;
		max-height: 420px;
		min-height: 0;
	}

	.rs-plan-trip__title {
		margin-top: 1rem;
		font-size: 1.755rem;
	}

	.rs-plan-trip__desc {
		font-size: 0.9rem;
		margin-bottom: 1.25rem;
	}

	.rs-plan-event {
		width: min(var(--rs-hero-width), calc(100% - 1.5rem));
		height: auto;
		min-height: 0;
		margin-block: 1.5rem;
	}

	.rs-plan-event__inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.25rem;
	}

	.rs-plan-event__content {
		padding: 1.25rem 0.5rem 0.5rem;
	}

	.rs-plan-event__heading {
		font-size: clamp(2.4rem, 9.6vw, 3.3rem);
	}

	.rs-plan-event__text {
		max-width: none;
		font-size: 0.9375rem;
		margin-bottom: 1.75rem;
	}

	.rs-plan-event__media {
		height: auto;
		aspect-ratio: 4 / 5;
		max-height: 420px;
	}

	.rs-book-stay {
		width: min(var(--rs-hero-width), calc(100% - 1.5rem));
		height: auto;
		min-height: 0;
		margin-block: 1.5rem;
	}

	.rs-book-stay__inner {
		padding: 2.5rem clamp(1rem, 4vw, 1.5rem) 1.75rem;
	}

	.rs-book-stay__header {
		margin-bottom: 1.5rem;
	}

	.rs-book-stay__heading {
		font-size: clamp(1.65rem, 7vw, 2.15rem);
	}

	.rs-book-stay__grid {
		grid-template-columns: 1fr;
		gap: 1.15rem;
	}

	.rs-book-stay__media {
		min-height: 0;
		aspect-ratio: 4 / 3;
		max-height: 360px;
		height: auto;
	}

	.rs-page-cards .rs-book-stay__media {
		height: 50vh;
		aspect-ratio: auto;
		max-height: none;
		min-height: 200px;
	}

	.rs-book-stay__label {
		font-size: clamp(1.15rem, 4.5vw, 1.4rem);
	}

	.rs-get-in-touch {
		min-height: 0;
		margin-block: 1.5rem;
	}

	.rs-get-in-touch__inner {
		min-height: 0;
		padding: clamp(2.5rem, 8vh, 3.5rem) clamp(1.25rem, 5vw, 2rem);
	}

	.rs-get-in-touch__content {
		max-width: none;
	}

	.rs-get-in-touch__heading {
		font-size: clamp(1.75rem, 8vw, 2.35rem);
		margin-bottom: 1.5rem;
	}

	.rs-get-in-touch__text {
		max-width: none;
		font-size: 0.875rem;
	}

	.rs-contact-form {
		margin-block: 1.5rem;
	}

	.rs-contact-form__inner {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		padding: clamp(1.75rem, 5vw, 2.25rem);
	}

	.rs-contact-form__phones {
		margin-top: 1rem;
	}

	.rs-contact-form--has-map .rs-contact-form__main {
		grid-template-columns: 1fr;
	}

	.rs-contact-form__map {
		min-height: 240px;
		aspect-ratio: 16 / 10;
		height: auto;
	}

	.rs-contact-form:not(.rs-contact-form--has-map) .rs-cf7-fields,
	.rs-contact-form .rs-cf7-fields {
		grid-template-columns: 1fr;
	}

	.rs-map {
		height: 48vh;
		min-height: 280px;
		margin-block: 1.5rem;
	}

	.rs-sticky-cards__track {
		min-height: 0 !important;
		height: auto !important;
	}

	.rs-sticky-cards__sticky {
		position: static;
		min-height: 0 !important;
	}

	.rs-sticky-cards__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.rs-sticky-cards__row + .rs-sticky-cards__row {
		margin-top: 0.75rem;
	}

	.rs-sticky-cards__media {
		height: auto;
		aspect-ratio: 4 / 3;
		max-height: 320px;
	}

	.rs-sticky-cards__title {
		margin-top: 0.75rem;
		font-size: clamp(1.25rem, 5vw, 1.5rem);
	}

	.rs-sticky-cards__desc {
		max-width: none;
		font-size: 1.125rem;
	}
}
