/*
 * Rocksteady Life — component styles that theme.json can't express.
 * Colours/fonts come from theme.json presets (--wp--preset--*), so retune
 * those there, not here. Breakpoint: 1000px (matches the prototype).
 */

/* ── Page frame: footer sits at the bottom on short pages ─────────────── */
.wp-site-blocks {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: clip;
}
.wp-site-blocks > * { margin-block: 0; }
.wp-site-blocks > main { flex: 1; }

.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0;
	position: absolute !important; word-wrap: normal !important;
}

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--wp--preset--color--red-stone); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--wp--preset--color--gold-stone) 40%, transparent); }

/* ── Shared bits ──────────────────────────────────────────────────────── */
.rs-wordmark {
	font-family: var(--wp--preset--font-family--heading);
	font-style: italic;
	line-height: 1;
	white-space: nowrap;
}
.rs-wordmark__life {
	font-style: normal;
	letter-spacing: .5em;
	text-transform: uppercase;
}

/* Pill button, as in the prototype's header/booking buttons. */
.rs-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 600; font-size: 14px; line-height: 1.2;
	color: var(--wp--preset--color--red-ink);
	background: transparent;
	border: 1px solid var(--wp--preset--color--red-stone);
	border-radius: 999px;
	padding: 9.2px 18px;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}
.rs-btn:hover, .rs-btn:focus-visible {
	background: var(--wp--preset--color--red-bg);
	color: var(--wp--preset--color--red-ink);
}

/* ── Header ───────────────────────────────────────────────────────────── */
.rs-header { position: relative; z-index: 5; }

.rs-header__bar {
	display: flex; align-items: center; gap: 36.8px;
	max-width: 1280px; margin: 0 auto; box-sizing: border-box;
	padding: 16px var(--wp--preset--spacing--gutter) 14px;
}

.rs-brand {
	display: flex; align-items: center; gap: 10px;
	margin-right: auto;
	color: var(--wp--preset--color--ink);
	text-decoration: none;
}
.rs-brand:hover { color: var(--wp--preset--color--ink); }
.rs-brand__mark { flex: none; }
.rs-brand .rs-wordmark { font-size: clamp(24px, 4vw, 30px); }
.rs-brand .rs-wordmark__life { font-size: 14px; }

.rs-nav {
	position: relative;
	display: flex; gap: 27.6px;
	padding-top: 16px;
}
.rs-nav__link {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 21px;
	line-height: 1.3;
	color: var(--wp--preset--color--ink);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
}
.rs-nav__link:hover { color: var(--wp--preset--color--red-ink); }
.rs-nav__link.is-current {
	color: var(--wp--preset--color--red-ink);
	border-bottom-color: var(--wp--preset--color--red-stone);
}

/* The cardinal: absolutely placed over the nav; JS sets `left`. */
.rs-nav__bird {
	position: absolute; top: -10px; left: 0;
	width: 30px; height: 22px;
	pointer-events: none;
	opacity: 0;
	transition: left .45s cubic-bezier(.34, 1.7, .5, 1), opacity .2s;
}
.rs-nav__bird.is-visible { opacity: 1; }
.rs-nav__bird svg { display: block; }
@media (prefers-reduced-motion: reduce) {
	.rs-nav__bird { transition: opacity .2s; }
}

.rs-header__book { flex: none; padding-inline: 18px; }

/* Mobile toggle: red ring with three bars that fold into an ×. */
.rs-menu-toggle {
	display: none;
	width: 48px; height: 48px; padding: 0;
	border-radius: 50%;
	border: 1.5px solid var(--wp--preset--color--red-stone);
	background: transparent;
	cursor: pointer;
	flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.rs-menu-toggle__bar {
	display: block; width: 20px; height: 2px; border-radius: 2px;
	background: var(--wp--preset--color--red-ink);
	transition: transform .3s, opacity .2s;
}
.rs-menu-toggle[aria-expanded="true"] .rs-menu-toggle__bar:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.rs-menu-toggle[aria-expanded="true"] .rs-menu-toggle__bar:nth-of-type(3) { opacity: 0; }
.rs-menu-toggle[aria-expanded="true"] .rs-menu-toggle__bar:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.rs-mobile-menu {
	position: relative; z-index: 4;
	display: flex; flex-direction: column;
	background: var(--wp--preset--color--red-bg);
	padding: 8px var(--wp--preset--spacing--gutter) 28px;
	border-bottom: 1px solid var(--wp--custom--divider);
}
/* `display:flex` above would otherwise beat the browser's [hidden] rule. */
.rs-mobile-menu[hidden] { display: none; }
.rs-mobile-menu nav { display: flex; flex-direction: column; }
.rs-mobile-menu__link {
	display: flex; align-items: center; justify-content: space-between;
	min-height: 56px;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 30px;
	color: var(--wp--preset--color--ink);
	text-decoration: none;
	border-bottom: 1px solid rgba(156, 44, 18, .18);
}
.rs-mobile-menu__link.is-current { color: var(--wp--preset--color--red-ink); }
.rs-mobile-menu__mark { font-size: 18px; color: var(--wp--preset--color--red-stone); }
.rs-mobile-menu__book {
	margin-top: 20px; min-height: 48px; font-size: 16px;
	background: var(--wp--preset--color--paper);
}

@media (max-width: 999.98px) {
	.rs-nav, .rs-header__book { display: none; }
	.rs-menu-toggle { display: flex; }
}
@media (min-width: 1000px) {
	.rs-mobile-menu { display: none !important; }
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.rs-footer {
	position: relative;
	margin-top: 40px; /* the 40px wave rises into this gap */
	background: var(--wp--preset--color--night);
	color: var(--wp--preset--color--night-text);
}
.rs-footer__wave {
	position: absolute; top: -39px; left: 0;
	display: block; width: 100%; height: 40px;
	fill: var(--wp--preset--color--night);
}
.rs-footer__inner {
	max-width: 1280px; margin: 0 auto; box-sizing: border-box;
	padding: 40px var(--wp--preset--spacing--gutter) 44px;
	display: flex; flex-wrap: wrap; align-items: center;
	gap: 18.4px 36.8px;
	font-size: 14px;
}
.rs-footer .rs-wordmark { font-size: 26px; margin-right: auto; }
.rs-footer .rs-wordmark__life { font-size: 13px; }
.rs-footer address { font-style: normal; }
.rs-footer a { color: var(--wp--preset--color--night-link); }
.rs-footer a:hover { color: var(--wp--preset--color--white); }
.rs-footer :focus-visible { outline-color: var(--wp--preset--color--night-link); }

/* ── Colour families (Services, FAQs, bands) ──────────────────────────── */
.rs-c-teal  { --c-bg: var(--wp--preset--color--teal-bg);  --c-stone: var(--wp--preset--color--teal-stone);  --c-ink: var(--wp--preset--color--teal-ink);  --c-stone-ink: var(--wp--preset--color--teal-ink); }
.rs-c-sand  { --c-bg: var(--wp--preset--color--sand-bg);  --c-stone: var(--wp--preset--color--sand-stone);  --c-ink: var(--wp--preset--color--sand-ink);  --c-stone-ink: var(--wp--preset--color--sand-ink); }
.rs-c-gold  { --c-bg: var(--wp--preset--color--gold-bg);  --c-stone: var(--wp--preset--color--gold-stone);  --c-ink: var(--wp--preset--color--gold-ink);  --c-stone-ink: var(--wp--preset--color--gold-ink); }
.rs-c-mauve { --c-bg: var(--wp--preset--color--mauve-bg); --c-stone: var(--wp--preset--color--mauve-stone); --c-ink: var(--wp--preset--color--mauve-ink); --c-stone-ink: var(--wp--preset--color--mauve-ink); }
.rs-c-plum  { --c-bg: var(--wp--preset--color--plum-bg);  --c-stone: var(--wp--preset--color--plum-stone);  --c-ink: var(--wp--preset--color--plum-ink);  --c-stone-ink: var(--wp--preset--color--paper); }
.rs-c-red   { --c-bg: var(--wp--preset--color--red-bg);   --c-stone: var(--wp--preset--color--red-stone);   --c-ink: var(--wp--preset--color--red-ink);   --c-stone-ink: var(--wp--preset--color--white); }

/* ── Shared section pieces ────────────────────────────────────────────── */
.rs-section {
	max-width: 1280px; margin-inline: auto; box-sizing: border-box;
	padding-inline: var(--wp--preset--spacing--gutter);
}
/* Our sections lay themselves out; cancel the editor's flow margins inside them. */
.rs-home > *,
.rs-home :where(.rs-hero, .rs-hero__text, .rs-hero__media, .rs-facts, .rs-facts__grid, .rs-fact,
	.rs-section, .rs-night, .rs-night__inner, .rs-night__text, .rs-visit__card, .rs-visit__text) > * {
	margin-block: 0;
}

.rs-kicker {
	margin: 0;
	font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
}
.rs-display {
	margin: 0;
	font-size: clamp(40px, 7vw, 56px); font-weight: 400; line-height: 1;
}
.rs-squiggle::after {
	content: ""; display: block; height: 14px; margin-top: 4px;
	background: no-repeat left center / contain;
}
.rs-squiggle--red::after  { width: 260px; max-width: 100%; background-image: url(../img/squiggle-red.svg); }
.rs-squiggle--teal::after { width: 200px; max-width: 100%; background-image: url(../img/squiggle-teal.svg); margin-top: 6px; }

.rs-actions { display: flex; flex-wrap: wrap; gap: 13.8px; }

/* Buttons: pill outlines. Red is the default (theme.json); these are the variants. */
.wp-block-button__link {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 48px; box-sizing: border-box; font-size: 15px;
}
.wp-block-button.is-style-teal .wp-block-button__link { border-color: var(--wp--preset--color--teal-ink); color: var(--wp--preset--color--teal-ink); }
.wp-block-button.is-style-teal .wp-block-button__link:hover { background: var(--wp--preset--color--teal-bg); color: var(--wp--preset--color--teal-ink); }
.wp-block-button.is-style-sand .wp-block-button__link, .rs-btn--sand { border-color: var(--wp--preset--color--sand-ink); color: var(--wp--preset--color--sand-ink); }
.wp-block-button.is-style-sand .wp-block-button__link:hover, .rs-btn--sand:hover { background: rgba(255, 255, 255, .55); color: var(--wp--preset--color--sand-ink); }
.wp-block-button.is-style-paper .wp-block-button__link { background: var(--wp--preset--color--paper); }
.wp-block-button.is-style-paper .wp-block-button__link:hover { background: var(--wp--preset--color--red-bg); }
.wp-block-button.is-style-night .wp-block-button__link { border-color: var(--wp--preset--color--gold-stone); color: var(--wp--preset--color--night-link); padding: 10px 22px; min-height: 44px; }
.wp-block-button.is-style-night .wp-block-button__link:hover { background: rgba(225, 173, 102, .16); color: var(--wp--preset--color--night-link); }

/* ── Home: hero ───────────────────────────────────────────────────────── */
.rs-hero {
	max-width: 1280px; margin: 0 auto; box-sizing: border-box;
	padding: clamp(20px, 4vw, 40px) var(--wp--preset--spacing--gutter) clamp(64px, 8vw, 72px);
	display: grid; align-items: center;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
	gap: clamp(48px, 6vw, 72px);
}
.rs-hero__text { display: flex; flex-direction: column; gap: 18.4px; }
.rs-hero .rs-kicker { color: var(--wp--preset--color--teal-ink); }
.rs-hero__title {
	margin: 0;
	font-size: clamp(54px, 11vw, 96px); line-height: .95; font-weight: 400; letter-spacing: -.01em;
}
.rs-hero__title em { color: var(--wp--preset--color--red-stone); }
.rs-hero__title::after {
	content: ""; display: block; width: 220px; height: 18px; margin: 12px 0 4px 4px;
	background: url(../img/squiggle-hero.svg) no-repeat left center / contain;
}
.rs-hero__mission {
	margin: 0; max-width: 580px;
	font-size: 17px; line-height: 1.75; text-align: justify; hyphens: auto;
}
.rs-hero .rs-actions { margin-top: 9.2px; }

.rs-hero__media { position: relative; height: clamp(360px, 75vw, 540px); }
.rs-hero__photo {
	position: absolute; margin: 0;
	inset: 0 8px clamp(40px, 8vw, 60px) clamp(28px, 5vw, 40px);
}
.rs-hero__photo img {
	display: block; width: 100%; height: 100%; object-fit: cover; box-sizing: border-box;
	filter: sepia(.22) saturate(.82) contrast(1.05);
	border: 6px solid #eae9e9; outline: 1px solid var(--wp--custom--divider);
}
/* Two strips of washi tape holding the photo up. */
.rs-hero__photo::before, .rs-hero__photo::after {
	content: ""; position: absolute; z-index: 1; height: 24px; pointer-events: none;
}
.rs-hero__photo::before { top: -12px; left: 28px; width: 90px; background: rgba(124, 195, 189, .65); transform: rotate(-6deg); }
.rs-hero__photo::after  { top: -10px; right: 30px; width: 80px; background: rgba(233, 196, 173, .8); transform: rotate(5deg); }
.rs-hero__badge {
	position: absolute; z-index: 2; margin: 0;
	left: clamp(-30px, -2vw, -8px); bottom: -10px;
	width: clamp(140px, 32vw, 230px); aspect-ratio: 1;
	border-radius: 50%; background: var(--wp--preset--color--paper);
	box-shadow: var(--wp--custom--shadow--md);
	display: flex; align-items: center; justify-content: center;
}
.rs-hero__badge img { width: 82%; height: 82%; }

/* ── Home: three-point band ───────────────────────────────────────────── */
.rs-facts { position: relative; background: #cfe9e6; color: #16403e; }
.rs-facts::before, .rs-facts::after {
	content: ""; position: absolute; left: 0; width: 100%; height: 40px;
	background: no-repeat 0 0 / 100% 100%; pointer-events: none;
}
.rs-facts::before { top: -39px; background-image: url(../img/wave-mint-top.svg); }
.rs-facts::after  { bottom: -39px; background-image: url(../img/wave-mint-bottom.svg); }
.rs-facts__grid {
	max-width: 1280px; margin: 0 auto; box-sizing: border-box;
	padding: 44px var(--wp--preset--spacing--gutter);
	display: grid; gap: 28px 48px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.rs-fact { position: relative; display: flex; flex-direction: column; gap: 4px; padding-left: 56px; }
.rs-fact::before {
	content: ""; position: absolute; left: 0; top: 12px;
	width: 40px; height: 14px; border-radius: 50%; background: #1f5e5b;
}
.rs-fact:nth-child(3n+2)::before { background: #c8401c; }
.rs-fact:nth-child(3n+3)::before { background: #5a3438; }
.rs-fact__title { margin: 0; font-family: var(--wp--preset--font-family--heading); font-size: clamp(26px, 4vw, 30px); line-height: 1.1; }
.rs-fact__text { margin: 0; font-size: 14px; line-height: 1.55; }

/* ── Home: current services ───────────────────────────────────────────── */
.rs-home-services { padding-block: clamp(88px, 10vw, 112px) clamp(72px, 9vw, 96px); }
.rs-home-services .rs-display { margin-bottom: 40px; }

.rs-services-grid {
	display: grid; gap: clamp(20px, 3vw, 28px);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.rs-service-card {
	position: relative;
	display: flex; flex-direction: column; gap: 12px;
	padding: 30px 28px 26px; border-radius: 18px;
	background: var(--c-bg);
	transition: transform .3s cubic-bezier(.34, 1.5, .5, 1), box-shadow .3s;
}
.rs-service-card:hover, .rs-service-card:focus-within { transform: translateY(-6px); box-shadow: var(--wp--custom--shadow--md); }
.rs-stone {
	display: flex; align-items: center; justify-content: center;
	width: 64px; height: 26px; border-radius: 50%;
	background: var(--c-stone); color: var(--c-stone-ink);
	font-family: var(--wp--preset--font-family--heading); font-size: 15px; font-variant-numeric: tabular-nums;
}
.rs-service-card__title { margin: 0; font-size: 30px; font-weight: 400; line-height: 1.1; color: var(--c-ink); }
.rs-service-card__link { color: inherit; text-decoration: none; }
.rs-service-card__link:hover { color: inherit; }
.rs-service-card__link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; } /* whole card clickable */
.rs-service-card__link:focus-visible { outline: none; }
.rs-service-card:has(.rs-service-card__link:focus-visible) { outline: 2px solid var(--c-ink); outline-offset: 3px; }
.rs-service-card__blurb { margin: 0; flex: 1; font-size: 15px; line-height: 1.6; }
.rs-service-card__more { font-size: 14px; color: var(--c-ink); }

/* ── Questions / FAQ accordion ────────────────────────────────────────── */
.rs-questions {
	max-width: 1080px;
	padding-block: clamp(72px, 9vw, 104px) clamp(56px, 7vw, 80px);
	display: grid; align-items: start; gap: clamp(28px, 5vw, 64px);
	grid-template-columns: 1fr;
}
@media (min-width: 760px) {
	.rs-questions { grid-template-columns: minmax(200px, 1fr) minmax(0, 2fr); }
}
.rs-faqs { display: flex; flex-direction: column; border-top: 1px solid var(--wp--custom--divider); min-width: 0; }
.rs-faq { border-bottom: 1px solid var(--wp--custom--divider); }
.rs-faq__q {
	list-style: none; cursor: pointer;
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	min-height: 64px; padding: 14px 4px; box-sizing: border-box;
	font-family: var(--wp--preset--font-family--heading); font-size: clamp(22px, 3.4vw, 26px); line-height: 1.2;
}
.rs-faq__q::-webkit-details-marker { display: none; }
.rs-faq__q:hover { color: var(--wp--preset--color--red-ink); }
.rs-faq__stone {
	flex: none; width: 32px; height: 14px; border-radius: 50%;
	background: #7cc3bd; transition: transform .3s;
}
.rs-faq:nth-child(6n+2) .rs-faq__stone { background: #e0a98b; }
.rs-faq:nth-child(6n+3) .rs-faq__stone { background: #e1ad66; }
.rs-faq:nth-child(6n+4) .rs-faq__stone { background: #5a3438; }
.rs-faq:nth-child(6n+5) .rs-faq__stone { background: #c8401c; }
.rs-faq:nth-child(6n+6) .rs-faq__stone { background: #b98a92; }
.rs-faq[open] .rs-faq__stone { transform: scaleX(1.35); }
.rs-faq__a { padding: 0 4px 22px; max-width: 640px; font-size: 16px; line-height: 1.7; }
.rs-faq__a > :first-child { margin-top: 0; }
.rs-faq__a > :last-child { margin-bottom: 0; }
.rs-faq__a.is-placeholder { font-style: italic; }

/* ── Home: Deathwalker night sky ──────────────────────────────────────── */
.rs-night {
	position: relative; overflow: hidden;
	background-color: #3b2229; color: var(--wp--preset--color--paper);
	background-image:
		radial-gradient(circle 1.5px at 18.3% 2.7%, rgba(225,173,102,0.48) 98%, transparent 100%),
		radial-gradient(circle 1.5px at 74.0% 7.4%, rgba(225,173,102,0.85) 98%, transparent 100%),
		radial-gradient(circle 1.5px at 56.4% 36.4%, rgba(225,173,102,0.67) 98%, transparent 100%),
		radial-gradient(circle 2.5px at 45.5% 33.5%, rgba(225,173,102,0.37) 98%, transparent 100%),
		radial-gradient(circle 2.0px at 27.2% 94.1%, rgba(225,173,102,0.41) 98%, transparent 100%),
		radial-gradient(circle 2.5px at 82.3% 53.8%, rgba(225,173,102,0.51) 98%, transparent 100%),
		radial-gradient(circle 2.0px at 75.3% 56.9%, rgba(225,173,102,0.93) 98%, transparent 100%),
		radial-gradient(circle 1.0px at 50.4% 56.7%, rgba(225,173,102,0.61) 98%, transparent 100%),
		radial-gradient(circle 2.5px at 52.3% 57.5%, rgba(225,173,102,0.35) 98%, transparent 100%),
		radial-gradient(circle 1.0px at 52.2% 56.8%, rgba(225,173,102,0.65) 98%, transparent 100%),
		radial-gradient(circle 1.5px at 2.0% 37.8%, rgba(225,173,102,0.7) 98%, transparent 100%),
		radial-gradient(circle 2.0px at 59.2% 91.6%, rgba(225,173,102,0.79) 98%, transparent 100%),
		radial-gradient(circle 2.0px at 61.1% 81.2%, rgba(225,173,102,0.73) 98%, transparent 100%),
		radial-gradient(circle 1.0px at 40.1% 19.8%, rgba(225,173,102,0.36) 98%, transparent 100%),
		radial-gradient(circle 1.0px at 84.9% 74.8%, rgba(225,173,102,0.6) 98%, transparent 100%),
		radial-gradient(circle 1.5px at 34.1% 66.6%, rgba(225,173,102,0.56) 98%, transparent 100%),
		radial-gradient(circle 1.5px at 42.2% 95.7%, rgba(225,173,102,0.5) 98%, transparent 100%),
		radial-gradient(circle 1.5px at 23.8% 45.6%, rgba(225,173,102,0.63) 98%, transparent 100%),
		radial-gradient(circle 1.0px at 98.7% 92.6%, rgba(225,173,102,0.55) 98%, transparent 100%),
		radial-gradient(circle 1.0px at 71.0% 50.1%, rgba(225,173,102,0.89) 98%, transparent 100%),
		radial-gradient(circle 1.0px at 86.6% 52.5%, rgba(225,173,102,0.84) 98%, transparent 100%),
		radial-gradient(circle 2.0px at 85.2% 49.8%, rgba(225,173,102,0.61) 98%, transparent 100%),
		radial-gradient(circle 2.0px at 4.3% 10.2%, rgba(225,173,102,0.92) 98%, transparent 100%),
		radial-gradient(circle 1.5px at 62.8% 8.4%, rgba(225,173,102,0.61) 98%, transparent 100%),
		radial-gradient(circle 1.5px at 93.4% 41.1%, rgba(225,173,102,0.82) 98%, transparent 100%),
		radial-gradient(circle 1.0px at 22.8% 87.8%, rgba(225,173,102,0.62) 98%, transparent 100%);
}
.rs-night__inner {
	position: relative; max-width: 1280px; margin: 0 auto; box-sizing: border-box;
	padding: clamp(72px, 10vw, 110px) var(--wp--preset--spacing--gutter);
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: clamp(28px, 4vw, 48px);
}
.rs-night__art { flex: none; width: min(300px, 62vw); aspect-ratio: 1; margin: 0; }
.rs-night__art img { width: 100%; height: 100%; }
.rs-night__text { flex: 1 1 380px; max-width: 600px; display: flex; flex-direction: column; gap: 18.4px; }
.rs-night .rs-kicker { letter-spacing: .16em; color: var(--wp--preset--color--gold-stone); }
.rs-night__title { margin: 0; font-size: clamp(52px, 11vw, 80px); font-weight: 400; font-style: italic; line-height: 1; color: inherit; }
.rs-night__body {
	margin: 0; max-width: 560px;
	font-size: clamp(16px, 2.2vw, 18px); line-height: 1.75; font-style: italic; opacity: .8;
	text-align: justify; hyphens: auto;
}
.rs-night a:not(.wp-block-button__link) { color: var(--wp--preset--color--night-link); }

/* ── Home: visit + map ────────────────────────────────────────────────── */
.rs-visit { padding-block: clamp(24px, 4vw, 40px) clamp(88px, 10vw, 120px); }
.rs-visit__card {
	display: grid; border-radius: 22px; overflow: hidden;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	background: var(--wp--preset--color--sand-bg);
}
.rs-visit__text { padding: clamp(28px, 5vw, 48px); display: flex; flex-direction: column; gap: 18.4px; }
.rs-visit .rs-kicker { color: var(--wp--preset--color--sand-ink); }
.rs-visit__title { margin: 0; font-size: clamp(38px, 6vw, 52px); font-weight: 400; line-height: 1.05; }
.rs-visit__link { margin: 0; font-size: 15px; }
.rs-visit__link a { color: var(--wp--preset--color--sand-ink); }
.rs-visit__link + .rs-visit__link { margin-top: -9px; }

.rs-contact { display: flex; flex-direction: column; gap: 18.4px; }
.rs-contact__address { font-style: normal; font-size: 18px; line-height: 1.6; }
.rs-contact__note { margin: 0; font-size: 15px; line-height: 1.6; }
.rs-contact__lines { margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 15px; }
.rs-contact__lines a { color: var(--wp--preset--color--ink); }
.rs-contact__directions { align-self: flex-start; min-height: 48px; padding: 12px 22px; font-size: 15px; box-sizing: border-box; }

.rs-map { position: relative; min-height: 360px; margin: 0; background: #e9dfd6; }
.rs-map iframe {
	position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
	filter: grayscale(.55) sepia(.18) contrast(.95);
}
.rs-map__pin {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -120%);
	pointer-events: none; filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .3));
}
.rs-map__larger {
	position: absolute; right: 10px; bottom: 10px;
	padding: 3px 8px; border-radius: 4px; font-size: 12px;
	background: rgba(247, 241, 234, .92); color: var(--wp--preset--color--ink);
}

@media (prefers-reduced-motion: reduce) {
	.rs-service-card, .rs-faq__stone { transition: none; }
	.rs-service-card:hover, .rs-service-card:focus-within { transform: none; }
}

/* ── Placeholders: copy still in [square brackets] ────────────────────── */
.is-placeholder { font-style: italic; color: var(--wp--preset--color--mauve-ink); }

/* ── Inner-page header band ───────────────────────────────────────────── */
.rs-band { position: relative; margin: 0 0 40px; background: var(--c-bg); } /* the 40px wave fills this gap */
.rs-band::after { /* wavy bottom edge in the band colour */
	content: ""; position: absolute; left: 0; bottom: -39px; width: 100%; height: 40px;
	background: var(--c-bg);
	-webkit-mask: url(../img/wave-mint-bottom.svg) no-repeat 0 0 / 100% 100%;
	mask: url(../img/wave-mint-bottom.svg) no-repeat 0 0 / 100% 100%;
}
.rs-band__inner {
	max-width: 1180px; margin: 0 auto; box-sizing: border-box;
	padding: clamp(32px, 6vw, 56px) var(--wp--preset--spacing--gutter) 44px;
	display: flex; align-items: flex-end; justify-content: space-between; gap: 27.6px;
}
.rs-band__text { display: flex; flex-direction: column; gap: 9.2px; max-width: 680px; }
.rs-band__kicker { color: var(--c-ink); }
.rs-band__title { margin: 0; font-size: clamp(46px, 10vw, 80px); line-height: 1; font-weight: 400; }
.rs-band__lede { margin: 0; font-size: 17px; line-height: 1.7; }
.rs-band__mark {
	flex: none; width: clamp(64px, 14vw, 130px); height: auto; transform: rotate(6deg);
}

/* ── Body copy on inner pages ─────────────────────────────────────────── */
.rs-page-body { padding-inline: var(--wp--preset--spacing--gutter); padding-bottom: clamp(64px, 9vw, 96px); }
.rs-prose { font-size: 17px; line-height: 1.75; }
.rs-prose h2 { font-size: clamp(30px, 5vw, 38px); font-weight: 400; margin: 1.6em 0 .4em; }
.rs-prose h3 { font-size: 24px; font-weight: 400; margin: 1.4em 0 .3em; }
.rs-prose > :first-child { margin-top: 0; }
.rs-prose p { margin: 0 0 1em; }
.rs-prose .alignwide.rs-resources { max-width: 1180px; }

/* ── Service page ─────────────────────────────────────────────────────── */
.rs-service {
	max-width: 1080px; margin: 0 auto; box-sizing: border-box;
	padding: clamp(8px, 2vw, 16px) var(--wp--preset--spacing--gutter) clamp(64px, 9vw, 96px);
	display: grid; align-items: start; gap: clamp(36px, 6vw, 72px);
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.rs-service { grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr); }
}
.rs-service > *, .rs-service__body > * { margin-block: 0; }
.rs-service__body { display: flex; flex-direction: column; gap: 36.8px; min-width: 0; }
.rs-service .rs-prose p:not(.is-placeholder) { text-align: justify; hyphens: auto; }

.rs-booking {
	position: sticky; top: 24px;
	display: flex; flex-direction: column; gap: 18.4px;
	padding: 28px; border-radius: 18px; background: var(--c-bg);
}
.rs-booking__title { margin: 0; font-family: var(--wp--preset--font-family--heading); font-size: 26px; line-height: 1.15; }
.rs-booking__facts { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 15px; }
.rs-booking__facts dt { color: var(--wp--preset--color--ink); opacity: .75; }
.rs-booking__facts dd { margin: 0; }
.rs-booking__facts a { color: var(--wp--preset--color--sand-ink); }
.rs-booking__cta { min-height: 48px; font-size: 15px; background: var(--wp--preset--color--paper); }
.rs-booking__others {
	display: flex; flex-direction: column; gap: 6px;
	padding-top: 13.8px; border-top: 1px solid rgba(0, 0, 0, .1);
}
.rs-booking__others-label { margin: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.rs-booking__others a {
	font-family: var(--wp--preset--font-family--heading); font-size: 19px;
	color: var(--wp--preset--color--ink); text-decoration: none;
}
.rs-booking__others a:hover { color: var(--wp--preset--color--red-ink); }
@media (max-width: 899.98px) { .rs-booking { position: static; } }

.rs-svc-faqs h2 { margin: 0 0 13.8px; font-size: clamp(30px, 5vw, 38px); font-weight: 400; }
.rs-svc-faqs__list { border-top: 1px solid var(--wp--custom--divider); }
.rs-svc-faq { padding: 16px 0; border-bottom: 1px solid var(--wp--custom--divider); display: flex; flex-direction: column; gap: 6px; }
.rs-svc-faq h3 { margin: 0; font-size: 22px; font-weight: 400; }
.rs-svc-faq__a { font-size: 15px; line-height: 1.6; }
.rs-svc-faq__a > * { margin: 0; }

/* ── Resources ────────────────────────────────────────────────────────── */
.rs-resources { display: flex; flex-direction: column; gap: 28px; margin-inline: auto; }
.rs-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.rs-chip {
	display: inline-flex; align-items: center; min-height: 44px; box-sizing: border-box;
	padding: 10px 16px; border-radius: 999px;
	border: 1.5px solid var(--wp--custom--divider); background: transparent;
	font-size: 14px; color: var(--wp--preset--color--ink); text-decoration: none;
	transition: transform .2s;
}
.rs-chip:hover { transform: translateY(-2px); color: var(--wp--preset--color--ink); }
.rs-chip.is-active { border-color: var(--c-stone, var(--wp--preset--color--ink)); background: var(--c-bg, var(--wp--preset--color--white)); }
.rs-chips__count { margin-left: auto; font-size: 14px; opacity: .8; font-variant-numeric: tabular-nums; }
.rs-resources__grid {
	display: grid; gap: 20px;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
}
.rs-resource {
	display: flex; flex-direction: column; gap: 12px;
	padding: 24px 26px; border-radius: 18px;
	background: var(--c-bg); color: var(--wp--preset--color--ink); text-decoration: none;
	transition: transform .3s cubic-bezier(.34, 1.5, .5, 1);
}
.rs-resource:hover, .rs-resource:focus-visible { transform: translateY(-4px) rotate(-.5deg); color: var(--wp--preset--color--ink); }
.rs-resource__meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-ink); }
.rs-resource__meta span:last-child { font-size: 14px; letter-spacing: 0; text-transform: none; }
.rs-resource__title { font-family: var(--wp--preset--font-family--heading); font-size: clamp(24px, 4vw, 28px); line-height: 1.15; }
.rs-back { padding-top: 0; }

@media (prefers-reduced-motion: reduce) {
	.rs-chip, .rs-resource { transition: none; }
	.rs-chip:hover, .rs-resource:hover, .rs-resource:focus-visible { transform: none; }
}

/* ══ Step 4: About, How to get here, The office, Pricing ═════════════════ */

/* Designed pages break out of the 760px text column. */
.rs-page-body > :is(.rs-about, .rs-directions, .rs-office) { max-width: 1180px; }
.rs-page-body > .rs-pricing { max-width: 1080px; }
/* These containers lay themselves out with gap; cancel the editor's flow margins. */
.rs-page-body :is(.rs-about, .rs-about__portrait, .rs-about__main, .rs-about__creds, .rs-panel,
	.rs-directions, .rs-directions__top, .rs-directions__where, .rs-directions__cards, .rs-info, .rs-inside,
	.rs-office, .rs-pricing, .rs-pricing__intro, .rs-pricing__lead, .rs-price-card, .rs-package,
	.rs-sessions, .rs-sessions__grid, .rs-session, .rs-info-grid) > * { margin-block: 0; }

.rs-section-title { margin: 0; font-size: clamp(38px, 6vw, 52px); font-weight: 400; line-height: 1.05; }
.rs-section-lede { margin: 0; max-width: 720px; font-size: 17px; line-height: 1.7; }
.rs-actions--center { justify-content: center; }

/* Night panel (About, Directions, Pricing) */
.rs-panel--night {
	display: flex; flex-direction: column; gap: 13.8px;
	padding: clamp(24px, 5vw, 36px) clamp(22px, 5vw, 40px); border-radius: 18px;
	background: #3b2229; color: var(--wp--preset--color--paper);
}
.rs-panel__title { margin: 0; font-size: 40px; font-weight: 400; font-style: italic; color: inherit; }
.rs-panel--night p { margin: 0; font-size: 17px; line-height: 1.75; text-align: justify; hyphens: auto; }
.rs-panel--night a:not(.wp-block-button__link):not(.rs-btn) { color: var(--wp--preset--color--night-link); }
.rs-panel--night .rs-kicker { letter-spacing: .16em; color: var(--wp--preset--color--gold-stone); }
.rs-btn--night { border-color: var(--wp--preset--color--gold-stone); color: var(--wp--preset--color--night-link); min-height: 48px; padding: 12px 22px; font-size: 15px; box-sizing: border-box; }
.rs-btn--night:hover, .rs-btn--night:focus-visible { background: rgba(225, 173, 102, .16); color: var(--wp--preset--color--night-link); }

/* Info cards with a stone beside the title (Directions, Pricing) */
.rs-info { display: flex; flex-direction: column; gap: 10px; padding: clamp(22px, 4vw, 30px); border-radius: 18px; background: var(--c-bg); }
.rs-info__title { display: flex; align-items: center; gap: 12px; margin: 0; font-size: 30px; font-weight: 400; }
.rs-info__title::before { content: ""; flex: none; width: 34px; height: 13px; border-radius: 50%; background: var(--c-stone); }
.rs-info p { margin: 0; font-size: 16px; line-height: 1.7; }
.rs-info__em { font-weight: 600; color: var(--wp--preset--color--gold-ink); }
.rs-info__link a { color: var(--c-ink); font-size: 15px; }

/* ── About ── */
.rs-about {
	padding-top: clamp(0px, 3vw, 40px);
	display: grid; align-items: start; gap: clamp(40px, 6vw, 72px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}
.rs-about__portrait {
	position: sticky; top: 24px; justify-self: center;
	width: 100%; max-width: 440px;
	display: flex; flex-direction: column; gap: 13.8px;
}
@media (max-width: 760px) { .rs-about__portrait { position: static; } }
.rs-about__photo { position: relative; aspect-ratio: 4 / 5; margin: 0; }
.rs-about__photo img {
	display: block; width: 100%; height: 100%; object-fit: cover; box-sizing: border-box;
	filter: sepia(.22) saturate(.82) contrast(1.05);
	border: 6px solid #eae9e9; outline: 1px solid var(--wp--custom--divider);
}
.rs-about__photo::before {
	content: ""; position: absolute; z-index: 1; top: -12px; left: 50%; margin-left: -45px;
	width: 90px; height: 24px; background: rgba(207, 233, 230, .85); transform: rotate(-3deg);
}
.rs-about__caption { margin: 0; text-align: center; font-family: var(--wp--preset--font-family--heading); font-size: 20px; font-style: italic; }
.rs-about__main { display: flex; flex-direction: column; gap: 36.8px; min-width: 0; }
.rs-about__bio p { text-align: justify; hyphens: auto; }
.rs-passions { margin: 0 0 1em; padding-left: 1.2em; }
.rs-passions li { margin-bottom: .25em; }
.rs-passions li::marker { color: var(--wp--preset--color--red-stone); }
.rs-about__bio .rs-about__credo {
	font-style: italic; text-align: left;
	border-left: 2px solid var(--wp--preset--color--red-stone); padding-left: 18.4px;
}
.rs-about__bio .rs-about__chart { font-size: 14px; line-height: 1.7; text-align: left; opacity: .8; }
.rs-about__creds { display: flex; flex-direction: column; gap: 14px; }
.rs-about__h { margin: 0; font-size: clamp(30px, 5vw, 36px); font-weight: 400; }
.rs-creds { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.rs-creds li {
	--c-bg: var(--wp--preset--color--teal-bg); --c-stone: var(--wp--preset--color--teal-stone);
	display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px;
	padding: 14px 18px; border-radius: 14px; background: var(--c-bg); font-size: 16px;
}
.rs-creds li::before { content: ""; flex: none; width: 30px; height: 12px; border-radius: 50%; background: var(--c-stone); }
.rs-creds li em { margin-left: auto; font-size: 14px; opacity: .8; }
.rs-creds li:nth-child(6n+2) { --c-bg: var(--wp--preset--color--sand-bg);  --c-stone: var(--wp--preset--color--sand-stone); }
.rs-creds li:nth-child(6n+3) { --c-bg: var(--wp--preset--color--mauve-bg); --c-stone: var(--wp--preset--color--mauve-stone); }
.rs-creds li:nth-child(6n+4) { --c-bg: var(--wp--preset--color--gold-bg);  --c-stone: var(--wp--preset--color--gold-stone); }
.rs-creds li:nth-child(6n+5) { --c-bg: var(--wp--preset--color--plum-bg);  --c-stone: var(--wp--preset--color--plum-stone); }
.rs-creds li:nth-child(6n+6) { --c-bg: var(--wp--preset--color--red-bg);   --c-stone: var(--wp--preset--color--red-stone); }
.rs-about .rs-actions { align-self: flex-start; }

/* ── How to get here ── */
.rs-directions { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 80px); padding-top: clamp(8px, 2vw, 16px); }
.rs-directions__top {
	display: grid; align-items: start; gap: clamp(28px, 4vw, 48px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}
.rs-directions__where { display: flex; flex-direction: column; gap: 18.4px; }
.rs-map--card { aspect-ratio: 4 / 3; min-height: 0; border-radius: 18px; overflow: hidden; }
.rs-contact--address { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 13.8px; }
.rs-contact--address .rs-contact__address { font-size: 18px; line-height: 1.55; }
.rs-contact--address .rs-contact__directions { align-self: center; }
.rs-contact--address .rs-contact__directions:hover { background: var(--wp--preset--color--sand-bg); }
.rs-directions__cards { display: flex; flex-direction: column; gap: 18px; }
.rs-inside { display: flex; flex-direction: column; gap: 27.6px; }
.rs-inside .rs-section-title + .rs-section-lede { margin-top: -19px; }

/* Wayfinding: square photos in a numbered grid, caption underneath (not overlaid). */
.wp-block-gallery.rs-wayfinding {
	display: grid !important; gap: clamp(16px, 2.5vw, 24px);
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
	counter-reset: step;
}
.wp-block-gallery.rs-wayfinding.has-nested-images figure.wp-block-image {
	position: relative; width: auto !important; margin: 0 !important;
	display: flex; flex-direction: column; gap: 10px; counter-increment: step;
}
.wp-block-gallery.rs-wayfinding.has-nested-images figure.wp-block-image::before { content: none; }
.wp-block-gallery.rs-wayfinding.has-nested-images figure.wp-block-image img {
	aspect-ratio: 1; width: 100%; height: auto; object-fit: cover; border-radius: 14px; background: #e9dfd6;
}
.wp-block-gallery.rs-wayfinding.has-nested-images figure.wp-block-image::after {
	content: counter(step); position: absolute; left: 10px; top: 10px;
	display: flex; align-items: center; justify-content: center;
	min-width: 34px; height: 34px; padding: 0 8px; box-sizing: border-box; border-radius: 999px;
	background: var(--wp--preset--color--paper); color: var(--wp--preset--color--ink);
	font-family: var(--wp--preset--font-family--heading); font-size: 18px; font-variant-numeric: tabular-nums;
}
.wp-block-gallery.rs-wayfinding.has-nested-images figure.wp-block-image:last-child::after { background: var(--wp--preset--color--red-stone); color: var(--wp--preset--color--white); }
.wp-block-gallery.rs-wayfinding.has-nested-images figure.wp-block-image figcaption {
	position: static; margin: 0; padding: 0; max-height: none; overflow: visible;
	background: none; color: var(--wp--preset--color--ink); text-shadow: none;
	font-size: 15px; line-height: 1.45; text-align: left;
}

.rs-lost { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 27.6px; padding: clamp(28px, 5vw, 44px); border-radius: 22px; }
.rs-lost__bird { flex: none; width: 64px; margin: 0; }
.rs-lost__bird img { width: 100%; height: auto; }
.rs-panel--night .rs-lost__text { flex: 1 1 360px; margin: 0; font-size: clamp(17px, 2.4vw, 20px); line-height: 1.6; text-align: left; }
.rs-panel--night .rs-lost__link { font-size: 15px; }

/* ── The office: masonry photo wall + viewer ── */
.rs-office { display: flex; flex-direction: column; gap: 36.8px; padding-top: clamp(8px, 2vw, 16px); }
.wp-block-gallery.rs-office-gallery { display: block !important; columns: 3 260px; column-gap: clamp(14px, 2vw, 20px); }
/*
 * No transforms on these photos. Chrome/Safari paint transformed items in a
 * multi-column layout at the wrong offset, so photos at the top of the 2nd
 * and 3rd columns vanish on hover (tried layer-promotion workarounds; they
 * made it worse). Hover is a shadow only, which doesn't create a layer.
 */
.wp-block-gallery.rs-office-gallery.has-nested-images figure.wp-block-image {
	display: block; width: 100% !important; margin: 0 0 clamp(14px, 2vw, 20px) !important;
	break-inside: avoid; border-radius: 16px; overflow: hidden; background: #e9dfd6;
	transition: box-shadow .3s;
}
.wp-block-gallery.rs-office-gallery.has-nested-images figure.wp-block-image:hover { box-shadow: var(--wp--custom--shadow--lg); }
.wp-block-gallery.rs-office-gallery.has-nested-images figure.wp-block-image img { display: block; width: 100%; height: auto; cursor: zoom-in; }

.rs-viewer { width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh; margin: 0; padding: clamp(12px, 3vw, 32px); box-sizing: border-box; border: 0; background: transparent; color: var(--wp--preset--color--paper); }
.rs-viewer[open] { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.rs-viewer::backdrop { background: rgba(32, 22, 26, .92); }
.rs-viewer__img { max-width: 100%; max-height: calc(100vh - 140px); object-fit: contain; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.rs-viewer__nav { display: flex; align-items: center; gap: 18px; }
.rs-viewer__count { min-width: 70px; text-align: center; font-family: var(--wp--preset--font-family--heading); font-size: 20px; font-variant-numeric: tabular-nums; }
.rs-viewer button {
	width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 20px;
	background: transparent; border: 1.5px solid var(--wp--preset--color--gold-stone); color: var(--wp--preset--color--night-link);
}
.rs-viewer .rs-viewer__close { position: absolute; top: 16px; right: 16px; font-size: 22px; border-color: rgba(247, 241, 234, .5); color: var(--wp--preset--color--paper); }

/* ── Pricing ── */
.rs-pricing { display: flex; flex-direction: column; gap: clamp(40px, 6vw, 64px); padding-top: clamp(8px, 2vw, 16px); }
.rs-pricing .rs-section-title { font-size: clamp(36px, 6vw, 48px); }
.rs-pricing__intro {
	display: grid; align-items: start; gap: clamp(28px, 4vw, 48px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}
.rs-pricing__lead { display: flex; flex-direction: column; gap: 18px; }
.rs-status {
	align-self: flex-start; display: flex; align-items: center; gap: 10px;
	margin: 0; padding: 8px 16px; border-radius: 999px;
	background: var(--wp--preset--color--teal-bg); color: var(--wp--preset--color--teal-ink); font-size: 14px;
}
.rs-status::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: currentColor; }
.rs-pricing__lead .rs-section-lede { line-height: 1.75; }

.rs-rates { margin: 0; overflow: visible; }
.rs-rates table { width: 100%; border-collapse: collapse; }
.rs-rates td { border: 0; padding: 0; vertical-align: baseline; }
.rs-rates td:last-child { padding-left: 12px; text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }

.rs-price-card { display: flex; flex-direction: column; gap: 14px; padding: clamp(24px, 4vw, 34px); border-radius: 20px; background: var(--wp--preset--color--sand-bg); }
.rs-rates--lead { padding-bottom: 14px; border-bottom: 1px solid rgba(138, 63, 40, .25); }
.rs-rates--lead td:first-child { font-family: var(--wp--preset--font-family--heading); font-size: 26px; }
.rs-rates--lead td:last-child { font-family: var(--wp--preset--font-family--heading); font-size: 40px; color: var(--wp--preset--color--sand-ink); }
.rs-price-card .rs-kicker { font-size: 12px; color: var(--wp--preset--color--sand-ink); }
.rs-rates--list td { padding-block: 5px; font-size: 17px; }
.rs-package { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: 6px; padding: 14px 16px; border-radius: 14px; background: var(--wp--preset--color--paper); }
.rs-package__title { margin: 0; font-family: var(--wp--preset--font-family--heading); font-size: 22px; }
.rs-package__deal { margin: 0; font-size: 16px; }
.rs-package__save { color: var(--wp--preset--color--sand-ink); }

.rs-sessions { display: flex; flex-direction: column; gap: 20px; }
.rs-sessions .rs-section-title { font-size: clamp(30px, 5vw, 38px); }
.rs-sessions__grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.rs-session { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px; border-radius: 16px; background: #fffdf9; border: 1.5px solid var(--wp--custom--divider); }
.rs-session__title { margin: 0; font-size: 24px; font-weight: 400; line-height: 1.15; }
.rs-session .rs-rates td { padding-block: 8px 2px; border-top: 1px dotted var(--wp--custom--divider); font-size: 15px; vertical-align: top; }
.rs-session .rs-rates td:last-child { color: var(--wp--preset--color--sand-ink); }

.rs-info-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.rs-info-grid .rs-info__title { font-size: 28px; }

.rs-note { gap: 14px; padding: clamp(28px, 5vw, 48px); border-radius: 22px; }
.rs-panel--night .rs-note__text { max-width: 760px; font-size: clamp(17px, 2.3vw, 19px); line-height: 1.75; text-align: left; }

@media (prefers-reduced-motion: reduce) {
	.wp-block-gallery.rs-office-gallery.has-nested-images figure.wp-block-image { transition: none; }
}
