/*! Rise & Flow Enhancements v2.5.0 | Faceted Media */

:root {
	--rf-plum: #5e4d51;
	--rf-plum-deep: #47393d;
	--rf-rose: #b79696;
	--rf-rose-deep: #9c7b7b;
	--rf-blush: #f3ebe8;
	--rf-sand: #efe4df;
	--rf-ink: #3b3537;
	--rf-muted: #7a7072;
	--rf-radius: 20px;
	--rf-ease: cubic-bezier(.16, 1, .3, 1);
	--rf-shadow: 0 16px 36px -20px rgba(71, 57, 61, .55);
	--rf-shadow-lift: 0 26px 48px -22px rgba(71, 57, 61, .6);
	--rf-btn-shadow: 0 10px 22px -12px rgba(71, 57, 61, .7);
	--rf-serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
	--rf-marquee-bg: var(--rf-sand);
	--rf-marquee-tilt: -1.2deg;
}

/* =========================================================
   1. Float-in motion
   ========================================================= */

html.rf-anim .rf-float {
	transition:
		opacity 1.2s cubic-bezier(.33, 0, .2, 1),
		translate 1.5s var(--rf-ease),
		scale 1.5s var(--rf-ease);
	transition-delay: var(--rf-delay, 0ms);
}
html.rf-anim .rf-float:not(.is-in) {
	opacity: 0;
	translate: 0 48px;
}
html.rf-anim .rf-float--soft:not(.is-in) {
	translate: 0 30px;
	scale: .95;
}
@media (max-width: 767px) {
	html.rf-anim .rf-float:not(.is-in) { translate: 0 30px; }
}

/* Keep first-screen content invisible from the very first paint until the script sets it floating
   (html.rf-ready). Without this, anything visible at load would flash, vanish, then float in. */
html.rf-anim:not(.rf-ready) :is(
	.section-title-area > :not(.section-desc), .section-desc > *, .custom-section-content > *,
	.feature-item, .service-item, .list-article, .grid-article, .client-col, .address-box,
	.section-contact .col-sm-6, .logos img, .team-member, .testimonial, .counter_item,
	.rf-event, .rf-events__empty, .rf-events__more, .rf-home-marquee, .rf-gallery__tile, .rf-ig__cta,
	.rf-evpage__intro, .rf-evpage__title, .rf-faq__item, .rf-ig__latest,
	#content .entry-content > *, #secondary .widget, #footer-widgets .footer-widget, [data-rf-float]
):not(#hero *, .site-header *, .owl-carousel *, #slider *, .rf-no-float, .rf-no-float *,
	.single-post .entry-content > p, .single-post .entry-content > ul, .single-post .entry-content > ol, .single-post .entry-content > blockquote) {
	opacity: 0;
}

/* OnePress ships its own WOW.js slide-ins. Ours replace them so nothing animates twice. */
html.rf-anim .wow {
	visibility: visible !important;
	animation: none !important;
}

@media print {
	html.rf-anim .rf-float,
	html.rf-anim:not(.rf-ready) * { opacity: 1 !important; translate: none !important; scale: none !important; }
}

/* =========================================================
   2. Events
   ========================================================= */

.rf-events { position: relative; }

.rf-events__bar {
	display: none;
	justify-content: flex-end;
	gap: 10px;
	margin: -8px 0 14px;
}
.rf-events.is-scrollable .rf-events__bar { display: flex; }
/* Phones swipe; the peeking next card is the cue, so arrows step aside. */
@media (max-width: 600px) {
	.rf-events.is-scrollable .rf-events__bar { display: none; }
}

.rf-events__arrow {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(94, 77, 81, .3);
	border-radius: 50%;
	background: #fff;
	color: var(--rf-plum);
	cursor: pointer;
	box-shadow: 0 8px 18px -12px rgba(71, 57, 61, .6);
	transition: background .3s, color .3s, border-color .3s, opacity .3s, transform .35s var(--rf-ease);
}
.rf-events__arrow svg { width: 18px; height: 18px; }
.rf-events__arrow:hover:not(:disabled) {
	background: var(--rf-plum);
	border-color: var(--rf-plum);
	color: #fff;
	transform: translateY(-2px);
}
.rf-events__arrow:disabled { opacity: .35; cursor: default; box-shadow: none; }
.rf-events__arrow:focus-visible { outline: 2px solid var(--rf-rose); outline-offset: 3px; }

.rf-events__track {
	display: flex;
	gap: 28px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 6px;
	padding: 12px 6px 40px;
	margin: 0 -6px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.rf-events__track::-webkit-scrollbar { display: none; }
/* Centers the row when it fits, scrolls normally when it doesn't. */
.rf-events__track > :first-child { margin-left: auto; }
.rf-events__track > :last-child { margin-right: auto; }
.rf-events__track:focus-visible { outline: 2px solid var(--rf-rose); outline-offset: 2px; border-radius: 14px; }

.rf-event {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 0 0 min(82vw, 340px);
	scroll-snap-align: start;
	overflow: hidden;
	border-radius: var(--rf-radius);
	background: #fff;
	box-shadow: var(--rf-shadow);
	transition: transform .5s var(--rf-ease), box-shadow .5s var(--rf-ease);
}
.rf-event:hover { transform: translateY(-6px); box-shadow: var(--rf-shadow-lift); }
@media (min-width: 992px) {
	.rf-event { flex-basis: calc((100% - 56px) / 3); max-width: 360px; }
}

.rf-event__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--rf-blush);
}
.rf-event__media img,
.rf-event__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--rf-ease);
}
.rf-event:hover .rf-event__media img { transform: scale(1.04); }
.rf-event__ph {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(90% 60% at 50% 100%, rgba(255, 255, 255, .35), transparent 70%),
		linear-gradient(160deg, #e3cfca 0%, var(--rf-rose) 48%, var(--rf-plum) 100%);
}
/* Brand half-sun on events without a graphic */
.rf-event__ph::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 22%;
	width: 46%;
	aspect-ratio: 2 / 1;
	translate: -50% 0;
	border-radius: 999px 999px 0 0;
	background:
		linear-gradient(transparent 58%, rgba(94, 77, 81, .55) 58% 62%, transparent 62% 76%, rgba(94, 77, 81, .55) 76% 80%, transparent 80%),
		rgba(255, 255, 255, .78);
}

.rf-event__date {
	position: absolute;
	top: 14px;
	left: 14px;
	min-width: 60px;
	padding: 9px 10px 8px;
	border-radius: 16px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 10px 22px -12px rgba(0, 0, 0, .45);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	text-align: center;
	line-height: 1;
	color: var(--rf-plum);
}
.rf-event__mon {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--rf-rose-deep);
}
.rf-event__day { display: block; margin-top: 3px; font-size: 28px; font-weight: 600; }
.rf-serif .rf-event__day { font-family: var(--rf-serif); font-size: 34px; font-weight: 600; margin-top: 0; }

.rf-event__tag {
	position: absolute;
	top: 16px;
	right: 14px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--rf-plum);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.rf-event__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 20px 22px 22px;
}
.rf-event__when {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--rf-rose-deep);
}
.rf-event__title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: lowercase; /* matches the site's lowercase headings, whatever case the calendar uses */
	color: var(--rf-plum);
}
.rf-event__title a { color: inherit; text-decoration: none; }
.rf-event__title a:hover { color: var(--rf-rose-deep); }
.rf-event__where { display: flex; align-items: center; gap: 6px; margin: 0; font-size: 14px; color: var(--rf-muted); }
.rf-pin { flex-shrink: 0; width: 15px; height: 15px; color: var(--rf-rose-deep); }
.rf-event__excerpt { margin: 2px 0 0; font-size: 15px; line-height: 1.6; color: var(--rf-ink); }
.rf-event__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
}
.rf-event__price { font-size: 15px; font-weight: 600; color: var(--rf-plum); }

/* Past events: quiet grid, proof she is out in the community */
.rf-events--past .rf-events__track {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 22px;
	overflow: visible;
	scroll-snap-type: none;
	padding: 6px 0 10px;
	margin: 0;
}
.rf-events--past .rf-events__track > * { margin: 0; }
.rf-events--past .rf-event { flex: 0 1 220px; min-width: 150px; background: transparent; box-shadow: none; border-radius: 0; overflow: visible; }
@media (max-width: 480px) { .rf-events--past .rf-event { flex-basis: calc(50% - 11px); min-width: 0; } }
.rf-events--past .rf-event:hover { transform: none; box-shadow: none; }
.rf-events--past .rf-event__media { border-radius: 16px; }
.rf-events--past .rf-event__media img { filter: saturate(.8); }
.rf-events--past .rf-event__body { padding: 12px 2px 0; gap: 4px; }
.rf-events--past .rf-event__title { font-size: 16px; }
.rf-events--past .rf-event__when { font-size: 11px; }

.rf-events__empty {
	max-width: 620px;
	margin: 0 auto;
	padding: 42px 30px;
	border-radius: var(--rf-radius);
	background: var(--rf-blush);
	text-align: center;
}
.rf-events__empty p { margin: 0 0 20px; font-size: 17px; line-height: 1.6; color: var(--rf-plum); }

.rf-home-events {
	background: linear-gradient(180deg, #fff 0%, var(--rf-blush) 100%);
}
.rf-events__more { margin: 6px 0 0; text-align: center; }
.rf-link {
	position: relative;
	display: inline-flex;
	gap: 8px;
	padding-bottom: 3px;
	color: var(--rf-plum) !important;
	font-weight: 600;
	letter-spacing: .06em;
	text-decoration: none !important;
	background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
	transition: background-size .5s var(--rf-ease);
}
.rf-link span { transition: translate .4s var(--rf-ease); }
.rf-link:hover { background-size: 40% 1px; }
.rf-link:hover span { translate: 5px 0; }

/* Single event page */
.rf-event-details {
	display: grid;
	gap: 10px;
	margin: 0 0 30px;
	padding: 24px 26px;
	border-radius: var(--rf-radius);
	background: var(--rf-blush);
}
.rf-event-details p { margin: 0; }
.rf-event-details strong {
	display: inline-block;
	min-width: 64px;
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--rf-rose-deep);
}
.rf-event-details .rf-btn { margin-top: 6px; }
.single-rf_event .entry-meta,
.single-rf_event .entry-footer { display: none; }

/* =========================================================
   3. Buttons (events + polish)
   ========================================================= */

.rf-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	vertical-align: middle;
	padding: 12px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--rf-plum);
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none !important;
	box-shadow: var(--rf-btn-shadow);
	transition: background-color .35s, transform .4s var(--rf-ease), box-shadow .4s var(--rf-ease);
}
.rf-btn:hover,
.rf-btn:focus-visible {
	background: var(--rf-plum-deep);
	transform: translateY(-3px);
	box-shadow: 0 18px 30px -14px rgba(71, 57, 61, .8);
}
.rf-btn:active { transform: translateY(-1px); box-shadow: 0 8px 16px -10px rgba(71, 57, 61, .8); }
@media (max-width: 480px) {
	.rf-btn { max-width: 100%; justify-content: center; text-align: left; font-size: 12px; letter-spacing: .05em; padding: 12px 18px; }
}



/* =========================================================
   4. Modern polish for the OnePress theme (toggle in settings)
   ========================================================= */

/* Every button on the site: soft resting shadow, lifts a little with a deeper shadow on hover */
.rf-polish .btn {
	vertical-align: middle;
	padding-left: 30px;
	padding-right: 30px;
}
.rf-polish :is(.btn, .wp-block-button__link, .wpforms-submit, input[type="submit"]) {
	border-radius: 999px;
	box-shadow: 0 8px 18px -12px rgba(71, 57, 61, .55);
	transition: background-color .35s, color .35s, border-color .35s, transform .45s var(--rf-ease), box-shadow .45s var(--rf-ease);
}
.rf-polish :is(.btn, .wp-block-button__link, .wpforms-submit, input[type="submit"]):hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 30px -14px rgba(71, 57, 61, .75);
}
.rf-polish :is(.btn, .wp-block-button__link, .wpforms-submit, input[type="submit"]):active {
	transform: translateY(-1px);
	box-shadow: 0 8px 16px -10px rgba(71, 57, 61, .7);
}

.rf-polish .btn-theme-primary { box-shadow: var(--rf-btn-shadow); }
.rf-polish .btn-theme-primary:hover { box-shadow: 0 20px 32px -14px rgba(71, 57, 61, .85); }

.rf-polish .btn-secondary-outline:hover {
	background: #fff;
	border-color: #fff;
	color: var(--rf-plum) !important;
	box-shadow: 0 14px 26px -14px rgba(0, 0, 0, .5);
}

/* The hero's Book Appointment button breathes, slowly, like a calm exhale */
.rf-polish #hero .btn-theme-primary { animation: rf-breathe 4.5s ease-in-out infinite; }
.rf-polish #hero .btn-theme-primary:hover { animation: none; }
@keyframes rf-breathe {
	0%, 100% { box-shadow: var(--rf-btn-shadow), 0 0 0 0 rgba(183, 150, 150, .6); }
	55% { box-shadow: var(--rf-btn-shadow), 0 0 0 14px rgba(183, 150, 150, 0); }
}

/* Logo rises into place on load (translate only, so page speed is not affected) */
.rf-polish #hero .hero-large-text img { animation: rf-rise 1.8s var(--rf-ease) both; }
@keyframes rf-rise {
	from { translate: 0 22px; }
	to { translate: 0 0; }
}

/* Hand-drawn squiggle under section titles, draws itself in */
.rf-polish .section-title-area .section-title::after {
	content: "";
	display: block;
	width: 96px;
	height: 14px;
	margin: 14px auto 0;
	border: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 14'%3E%3Cpath d='M3 8c10-6.5 20-6.5 30 0s20 6.5 30 0 20-6.5 30 0' fill='none' stroke='%23b79696' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
	clip-path: inset(0 0 0 0);
	transition: clip-path 1.4s var(--rf-ease) .25s;
}
html.rf-anim .rf-polish .section-title-area .section-title:not(.rf-drawn)::after { clip-path: inset(0 100% 0 0); }

/* Cards and blog thumbnails get softer corners and a gentle lift */
.rf-polish .feature-item .feature-media img { border-radius: 16px; }
.rf-polish .list-article .list-article-thumb {
	overflow: hidden;
	border-radius: 16px;
}
.rf-polish .feature-item,
.rf-polish .list-article .list-article-thumb img {
	transition: transform .6s var(--rf-ease);
}
.rf-polish .feature-item:hover { transform: translateY(-6px); }
.rf-polish .list-article:hover .list-article-thumb img { transform: scale(1.05); }

/* =========================================================
   5. Word ribbon (marquee)
   ========================================================= */

.rf-home-marquee { padding: 34px 0; overflow: hidden; background: transparent; }

.rf-marquee {
	position: relative;
	overflow: hidden;
	width: 104%;
	margin-left: -2%;
	padding: 18px 0;
	background: var(--rf-marquee-bg);
	color: var(--rf-plum);
	rotate: var(--rf-marquee-tilt);
	box-shadow: 0 18px 40px -30px rgba(71, 57, 61, .6);
}
.rf-marquee__track {
	display: flex;
	width: max-content;
	animation: rf-drift var(--rf-marquee-speed, 55s) linear infinite;
}
.rf-marquee:hover .rf-marquee__track { animation-play-state: paused; }
.rf-marquee__run {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 34px;
	padding-right: 34px;
	white-space: nowrap;
}
.rf-marquee__word {
	font-size: clamp(26px, 3.6vw, 48px);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: .01em;
}
.rf-serif .rf-marquee__word { font-family: var(--rf-serif); font-style: italic; }
.rf-marquee__word--alt {
	font-family: inherit !important;
	font-style: normal !important;
	font-size: clamp(12px, 1.1vw, 15px);
	font-weight: 700;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--rf-rose-deep);
}
.rf-marquee__sun { flex-shrink: 0; width: 34px; height: 21px; color: var(--rf-rose); }
.rf-marquee__sun path + path { stroke: var(--rf-marquee-bg); }

@keyframes rf-drift {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}

.rf-marquee .screen-reader-text,
.rf-event .screen-reader-text,
.rf-btn .screen-reader-text,
.rf-gallery .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* =========================================================
   6. Reduced motion: everything still, nothing hidden
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	.rf-marquee__track { animation: none; width: auto; }
	.rf-marquee__run { flex-wrap: wrap; justify-content: center; white-space: normal; row-gap: 10px; width: 100%; padding: 0 20px; }
	.rf-marquee__run + .rf-marquee__run { display: none; }
	.rf-polish #hero .btn-theme-primary,
	.rf-polish #hero .hero-large-text img { animation: none; }
	.rf-event,
	.rf-btn,
	.rf-polish .btn,
	.rf-polish .feature-item,
	.rf-event__media img,
	.rf-polish .list-article .list-article-thumb img { transition: none; }
	.rf-event:hover,
	.rf-polish .feature-item:hover,
	.rf-polish .btn:hover,
	.rf-btn:hover { transform: none; }
	.rf-event:hover .rf-event__media img,
	.rf-polish .list-article:hover .list-article-thumb img { transform: none; }
}

/* =========================================================
   7. Events row closing card (Instagram)
   ========================================================= */

.rf-event--cta {
	background:
		radial-gradient(120% 70% at 50% 110%, rgba(183, 150, 150, .55), transparent 60%),
		linear-gradient(165deg, #6c5a5e 0%, var(--rf-plum) 45%, var(--rf-plum-deep) 100%);
	color: #fff;
}
.rf-event__cta {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 44px 30px;
	text-align: center;
}
.rf-event__cta-sun { width: 64px; height: 38px; color: #e8d6d1; }
.rf-event__cta-sun path + path { stroke: var(--rf-plum); }
.rf-event__cta-kicker {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #e3cfca;
}
.rf-event__cta-title {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: none;
	color: #fff;
}
.rf-serif .rf-event__cta-title { font-family: var(--rf-serif); font-style: italic; font-size: 29px; }
.rf-btn--light { background: #fff; color: var(--rf-plum) !important; }
.rf-btn--light:hover,
.rf-btn--light:focus-visible { background: var(--rf-blush); }
.rf-btn .rf-ig-icon { width: 17px; height: 17px; flex-shrink: 0; }

/* =========================================================
   8. Photo gallery + Instagram
   ========================================================= */

.rf-home-ig { background: #fbf8f6; }
.rf-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin: 0 auto;
	max-width: 1140px;
}
.rf-gallery > * { flex: 0 0 calc((100% - 80px) / 6); }
.rf-gallery--wave { padding-bottom: 30px; } /* room for the wave offset */
.rf-gallery--wave .rf-gallery__tile:nth-child(even) { transform: translateY(30px); }
.rf-gallery__tile {
	position: relative;
	display: block;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border-radius: 18px;
	background: var(--rf-blush);
	box-shadow: var(--rf-shadow);
}
.rf-gallery__tile img,
.rf-gallery__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--rf-ease);
}
.rf-gallery__ig {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(71, 57, 61, .45);
	color: #fff;
	opacity: 0;
	transition: opacity .45s var(--rf-ease);
}
.rf-gallery__ig .rf-ig-icon { width: 34px; height: 34px; }
.rf-gallery__tile:hover img,
.rf-gallery__tile:focus-visible img { transform: scale(1.06); }
.rf-gallery__tile:hover .rf-gallery__ig,
.rf-gallery__tile:focus-visible .rf-gallery__ig { opacity: 1; }
@media (max-width: 767px) {
	.rf-gallery { gap: 30px 10px; }
	.rf-gallery > * { flex-basis: calc((100% - 20px) / 3); }
	.rf-gallery__tile { border-radius: 12px; }
	.rf-gallery--wave .rf-gallery__tile:nth-child(even) { transform: none; }
	.rf-gallery--wave .rf-gallery__tile:nth-child(3n+2) { transform: translateY(18px); }
}
.rf-ig__cta { margin: 34px 0 0; text-align: center; }

/* =========================================================
   9. Spinning circle badge
   ========================================================= */

.rf-circle-anchor { position: relative; z-index: 20; height: 0; }
.rf-circle-anchor .rf-circle {
	position: absolute;
	right: max(20px, 7vw);
	top: 0;
	/* --rf-drift / --rf-sway / --rf-tilt are set by the scroll float in rise-flow.js */
	translate: var(--rf-sway, 0px) calc(-58% + var(--rf-drift, 0px));
	rotate: var(--rf-tilt, 0deg);
}
/* a slow idle bob on top of the scroll drift (added by the float script) */
.rf-circle-anchor.rf-floaty { animation: rf-bob 6s ease-in-out infinite; }
/* docked: follows the visitor down the page in the bottom-right corner (the breathe orb has the left) */
.rf-circle-anchor.rf-docked { animation: none; }
.rf-circle-anchor.rf-docked .rf-circle {
	position: fixed;
	top: auto;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	width: 104px;
	height: 104px;
	translate: none;
	rotate: 0deg;
	animation: rf-dock .7s var(--rf-ease) both;
}
.rf-circle-anchor.rf-docked.rf-floaty .rf-circle { animation: rf-dock .7s var(--rf-ease) both, rf-bob-t 6s ease-in-out .7s infinite; }
.rf-circle-anchor.rf-docked .rf-circle__orb { width: 30px; height: 30px; }
@keyframes rf-dock {
	from { opacity: 0; scale: .4; }
	to { opacity: 1; scale: 1; }
}
@keyframes rf-bob-t {
	0%, 100% { translate: 0 0; }
	50% { translate: 0 -5px; }
}
@media (max-width: 767px) {
	.rf-circle-anchor.rf-docked .rf-circle { right: 14px; bottom: 14px; width: 80px; height: 80px; }
	.rf-circle-anchor.rf-docked .rf-circle__orb { width: 24px; height: 24px; }
}
@media (prefers-reduced-motion: reduce) {
	.rf-circle-anchor.rf-docked .rf-circle { animation: none; }
}
.rf-circle {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 156px;
	height: 156px;
	overflow: hidden; /* the spinning square ring would poke past the screen edge on phones */
	border-radius: 50%;
	background: var(--rf-blush);
	color: var(--rf-plum);
	text-decoration: none !important;
	box-shadow: 0 20px 44px -20px rgba(71, 57, 61, .65), inset 0 0 0 1px rgba(94, 77, 81, .08);
	transition: transform .6s var(--rf-ease), box-shadow .6s var(--rf-ease);
}
.rf-circle:hover,
.rf-circle:focus-visible { transform: scale(1.07) rotate(-4deg); box-shadow: 0 26px 50px -20px rgba(71, 57, 61, .75); }
.rf-circle:focus-visible { outline: 2px solid var(--rf-rose); outline-offset: 4px; }
.rf-circle__ring {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	animation: rf-spin 28s linear infinite;
}
.rf-circle__ring text {
	fill: currentColor;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}
.rf-circle__sun { width: 48px; height: 29px; color: var(--rf-rose); }
.rf-circle__sun path + path { stroke: var(--rf-blush); }
@keyframes rf-spin { to { transform: rotate(360deg); } }
@media (max-width: 767px) {
	.rf-circle { width: 112px; height: 112px; }
	.rf-circle-anchor .rf-circle { right: 16px; }
	.rf-circle__sun { width: 36px; height: 22px; }
}

/* =========================================================
   10. Events & Workshops page ([rf_events_page])
   ========================================================= */

.rf-evpage__intro {
	max-width: 680px;
	margin: 0 auto 10px;
	text-align: center;
	font-size: 19px;
	line-height: 1.6;
	color: var(--rf-plum);
}
.rf-serif .rf-evpage__intro { font-family: var(--rf-serif); font-style: italic; font-size: 24px; }
.rf-evpage__title {
	margin: 56px 0 26px;
	text-align: center;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: .04em;
	text-transform: lowercase;
}
.rf-evpage__title::after {
	content: "";
	display: block;
	width: 84px;
	height: 12px;
	margin: 12px auto 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 14'%3E%3Cpath d='M3 8c10-6.5 20-6.5 30 0s20 6.5 30 0 20-6.5 30 0' fill='none' stroke='%23b79696' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (prefers-reduced-motion: reduce) {
	.rf-circle__ring { animation: none; }
	.rf-circle,
	.rf-gallery__tile img { transition: none; }
	.rf-circle:hover { transform: none; }
	.rf-gallery__tile:hover img { transform: none; }
}

/* =========================================================
   11. Live Instagram posts (Smash Balloon) inside the community section
   ========================================================= */

.rf-ig__latest {
	margin: 60px 0 22px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--rf-rose-deep);
}
.rf-ig__feed #sb_instagram { padding-bottom: 0 !important; }
.rf-ig__feed #sb_instagram .sbi_photo_wrap,
.rf-ig__feed #sb_instagram .sbi_photo { overflow: hidden; border-radius: 16px; }
.rf-ig__feed #sb_instagram .sbi_item { transition: transform .6s var(--rf-ease); }
.rf-ig__feed #sb_instagram .sbi_item:hover { transform: translateY(-4px); }
.rf-ig__feed #sb_instagram .sbi_photo img { transition: transform 1.2s var(--rf-ease); }
.rf-ig__feed #sb_instagram .sbi_item:hover .sbi_photo img { transform: scale(1.05); }

/* =========================================================
   12. FAQ
   ========================================================= */

.rf-home-faq { background: #fff; }
.rf-faq { max-width: 800px; margin: 0 auto; interpolate-size: allow-keywords; }
.rf-faq__item { border-bottom: 1px solid rgba(94, 77, 81, .18); }
.rf-faq__item:first-child { border-top: 1px solid rgba(94, 77, 81, .18); }
.rf-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 4px;
	list-style: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--rf-plum);
	transition: color .3s;
}
.rf-faq__q::-webkit-details-marker { display: none; }
.rf-faq__q::marker { content: ""; }
.rf-serif .rf-faq__q { font-family: var(--rf-serif); font-size: 24px; }
.rf-faq__q:hover { color: var(--rf-rose-deep); }
.rf-faq__q:focus-visible { outline: 2px solid var(--rf-rose); outline-offset: 4px; border-radius: 8px; }
.rf-faq__icon {
	position: relative;
	flex: 0 0 32px;
	height: 32px;
	border: 1px solid rgba(94, 77, 81, .3);
	border-radius: 50%;
	color: var(--rf-plum);
	transition: background-color .35s, border-color .35s, color .35s, transform .5s var(--rf-ease);
}
.rf-faq__icon::before,
.rf-faq__icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 1.6px;
	background: currentColor;
	translate: -50% -50%;
	transition: rotate .5s var(--rf-ease);
}
.rf-faq__icon::after { rotate: 90deg; }
.rf-faq__item[open] .rf-faq__icon { background: var(--rf-plum); border-color: var(--rf-plum); color: #fff; transform: rotate(180deg); }
.rf-faq__item[open] .rf-faq__icon::after { rotate: 0deg; }
.rf-faq__a { padding: 0 52px 26px 4px; font-size: 16px; line-height: 1.75; color: var(--rf-ink); }
.rf-faq__a p { margin: 0; }
.rf-faq__item[open] .rf-faq__a { animation: rf-faq-open .6s var(--rf-ease); }
@keyframes rf-faq-open {
	from { opacity: 0; translate: 0 -8px; }
	to { opacity: 1; translate: 0 0; }
}
/* Smooth open/close height in browsers that support it */
.rf-faq__item::details-content {
	height: 0;
	overflow: clip;
	transition: height .55s var(--rf-ease), content-visibility .55s allow-discrete;
}
.rf-faq__item[open]::details-content { height: auto; }
@media (max-width: 600px) {
	.rf-faq__q { font-size: 16px; padding: 18px 2px; }
	.rf-serif .rf-faq__q { font-size: 21px; }
	.rf-faq__a { padding-right: 8px; }
}
@media (prefers-reduced-motion: reduce) {
	.rf-faq__item[open] .rf-faq__a { animation: none; }
	.rf-faq__item::details-content { transition: none; }
	.rf-faq__icon, .rf-faq__icon::after { transition: none; }
}

/* =========================================================
   13. Inner pages: title squiggle + ribbon above the footer
   ========================================================= */

.rf-polish .page-header .entry-title::after {
	content: "";
	display: block;
	width: 96px;
	height: 14px;
	margin: 16px auto 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 14'%3E%3Cpath d='M3 8c10-6.5 20-6.5 30 0s20 6.5 30 0 20-6.5 30 0' fill='none' stroke='%23e8d6d1' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
	clip-path: inset(0 0 0 0);
	transition: clip-path 1.6s var(--rf-ease) .4s;
}
.rf-polish .page-header:not(.page--cover) .entry-title::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 14'%3E%3Cpath d='M3 8c10-6.5 20-6.5 30 0s20 6.5 30 0 20-6.5 30 0' fill='none' stroke='%23b79696' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
html.rf-anim .rf-polish .page-header .entry-title:not(.rf-drawn)::after { clip-path: inset(0 100% 0 0); }
.rf-polish .page-header .entry-title { animation: rf-rise 1.6s var(--rf-ease) both; }
.rf-page-marquee { padding: 46px 0 40px; }
@media (prefers-reduced-motion: reduce) {
	.rf-polish .page-header .entry-title { animation: none; }
}

/* =========================================================
   14. Counseling services circles: clearly clickable
   ========================================================= */

/* The whole card is the link (title link stretched over it) */
.rf-polish #features .feature-item { position: relative; cursor: pointer; }
.rf-polish #features .feature-item h4 a::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.rf-polish #features .feature-item h4 a:focus-visible { outline: none; }
.rf-polish #features .feature-item:has(h4 a:focus-visible) { outline: 2px solid var(--rf-rose); outline-offset: 8px; border-radius: 18px; }

/* Chevron pointed down read as "scroll", so it now points toward the page and nudges on hover */
.rf-polish #features .fa-stack { position: relative; transition: transform .6s var(--rf-ease); }
.rf-polish #features .icon-background-default { transition: color .45s var(--rf-ease); }
.rf-polish #features .feature-icon.fa-chevron-down { rotate: -90deg; transition: translate .45s var(--rf-ease); }
.rf-polish #features .fa-stack::after {
	content: "";
	position: absolute;
	inset: 4%;
	border: 2px solid var(--rf-rose);
	border-radius: 50%;
	opacity: 0;
	transform: scale(.92);
	transition: opacity .5s var(--rf-ease), transform .7s var(--rf-ease);
	pointer-events: none;
}
.rf-polish #features .feature-item:hover .fa-stack { transform: translateY(-4px); }
.rf-polish #features .feature-item:hover .icon-background-default { color: var(--rf-rose); }
.rf-polish #features .feature-item:hover .feature-icon.fa-chevron-down { translate: 5px 0; }
.rf-polish #features .feature-item:hover .fa-stack::after { opacity: .8; transform: scale(1.14); }

/* "learn more" cue under each description */
.rf-polish #features .feature-item-content::after {
	content: "learn more \2192";
	display: inline-block;
	margin-top: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--rf-rose-deep);
	transition: translate .45s var(--rf-ease), color .3s;
}
.rf-polish #features .feature-item:hover .feature-item-content::after { translate: 6px 0; color: var(--rf-plum); }
.rf-polish #features .feature-item:hover { transform: none; } /* the circle lifts instead of the whole card */

@media (prefers-reduced-motion: reduce) {
	.rf-polish #features .fa-stack,
	.rf-polish #features .feature-icon,
	.rf-polish #features .fa-stack::after,
	.rf-polish #features .feature-item-content::after { transition: none; }
}

/* =========================================================
   15. Title accent under section and page titles. Pick one in Events > Settings:
       squiggle (default): draws itself in, then breathes softly
       eclipse: the soft glowing top curve of a ring
       glow: a barely-there blush glow that grows as the section reaches mid-screen
   ========================================================= */

/* squiggle */
.rf-polish .section-title-area .section-title::after,
.rf-polish .page-header .entry-title::after,
.rf-evpage__title::after {
	width: 96px;
	height: 14px;
	margin: 14px auto 0;
	border-radius: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 14'%3E%3Cpath d='M0 7c5.3-6 10.7-6 16 0s10.7 6 16 0 10.7-6 16 0 10.7 6 16 0 10.7-6 16 0 10.7 6 16 0' fill='none' stroke='%23b79696' stroke-width='2.4'/%3E%3C/svg%3E") 0 50% / 96px 14px no-repeat;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
	filter: none;
	scale: 1;
	opacity: 1;
	transform-origin: 50% 50%;
	clip-path: inset(0 0 0 0);
	transition: clip-path 1.4s var(--rf-ease) .25s;
	animation: rf-breath 6s ease-in-out 1.6s infinite;
}
.rf-polish .page-header.page--cover .entry-title::after,
.rf-polish .section-inverse .section-title::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 14'%3E%3Cpath d='M0 7c5.3-6 10.7-6 16 0s10.7 6 16 0 10.7-6 16 0 10.7 6 16 0 10.7-6 16 0 10.7 6 16 0' fill='none' stroke='%23efdcd6' stroke-width='2.4'/%3E%3C/svg%3E"); }
html.rf-anim .rf-polish .section-title-area .section-title:not(.rf-drawn)::after,
html.rf-anim .rf-polish .page-header .entry-title:not(.rf-drawn)::after { clip-path: inset(0 100% 0 0); }
@keyframes rf-breath {
	0%, 100% { transform: scale(.94, .86); opacity: .78; }
	45%, 55% { transform: scale(1.04, 1.08); opacity: 1; }
}

/* eclipse */
.rf-accent-eclipse .section-title-area .section-title::after,
.rf-accent-eclipse .page-header .entry-title::after,
.rf-accent-eclipse .rf-evpage__title::after {
	width: 78px;
	height: 26px;
	background: radial-gradient(ellipse 50% 100% at 50% 100%, transparent 58%, rgba(214, 177, 170, .55) 66%, rgba(205, 165, 158, .9) 71%, rgba(214, 177, 170, .35) 78%, transparent 90%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
	filter: blur(.8px);
	transform-origin: 50% 100%;
	clip-path: none;
	scale: calc(.78 + var(--rf-orb, 1) * .22);
	opacity: calc(.2 + var(--rf-orb, 1) * .6);
	transition: scale .5s ease-out, opacity .5s ease-out;
	animation: rf-orb-soft 7s ease-in-out infinite;
}
.rf-accent-eclipse .page-header.page--cover .entry-title::after,
.rf-accent-eclipse .section-inverse .section-title::after {
	background: radial-gradient(ellipse 50% 100% at 50% 100%, transparent 58%, rgba(250, 236, 231, .5) 66%, rgba(255, 244, 240, .9) 71%, rgba(250, 236, 231, .3) 78%, transparent 90%);
}

/* glow */
.rf-accent-glow .section-title-area .section-title::after,
.rf-accent-glow .page-header .entry-title::after,
.rf-accent-glow .rf-evpage__title::after {
	width: 40px;
	height: 40px;
	margin-top: 8px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(226, 190, 183, .95) 0%, rgba(232, 202, 196, .5) 34%, rgba(236, 208, 201, 0) 70%);
	-webkit-mask-image: none;
	mask-image: none;
	filter: blur(3px);
	clip-path: none;
	scale: calc(.6 + var(--rf-orb, 1) * .45);
	opacity: calc(.12 + var(--rf-orb, 1) * .43);
	transition: scale .5s ease-out, opacity .5s ease-out;
	animation: rf-orb-soft 7s ease-in-out infinite;
}
.rf-accent-glow .page-header.page--cover .entry-title::after,
.rf-accent-glow .section-inverse .section-title::after {
	background: radial-gradient(circle, rgba(255, 244, 240, .9) 0%, rgba(246, 230, 225, .45) 34%, rgba(246, 230, 225, 0) 70%);
}
html.rf-anim .rf-polish:is(.rf-accent-eclipse, .rf-accent-glow) .section-title-area .section-title:not(.rf-drawn)::after,
html.rf-anim .rf-polish:is(.rf-accent-eclipse, .rf-accent-glow) .page-header .entry-title:not(.rf-drawn)::after { clip-path: none; }

@keyframes rf-orb-soft {
	0%, 100% { transform: scale(.96); }
	50% { transform: scale(1.04); }
}

/* none */
.rf-accent-none .section-title-area .section-title::after,
.rf-accent-none .page-header .entry-title::after,
.rf-accent-none .rf-evpage__title::after { display: none; }

html.rf-anim :is(.section-title-area .section-title, .page-header .entry-title, .rf-evpage__title) { --rf-orb: 0; }
/* "learn more" arrow as a drawn arrow (the text arrow looked like a dash in Raleway) */
.rf-polish #features .feature-item-content::after {
	content: "learn more";
	padding-right: 20px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M1 5h13M10 1l4 4-4 4' fill='none' stroke='%239c7b7b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right center / 14px 9px no-repeat;
}

@media (prefers-reduced-motion: reduce) {
	.rf-polish .section-title-area .section-title::after,
	.rf-polish .page-header .entry-title::after,
	.rf-evpage__title::after { animation: none; transform: none; opacity: 1; scale: 1; transition: none; }
}

@media (prefers-reduced-motion: reduce) {
	.rf-polish :is(.btn, .wp-block-button__link, .wpforms-submit, input[type="submit"]),
	.rf-polish :is(.btn, .wp-block-button__link, .wpforms-submit, input[type="submit"]):hover { transition: none; transform: none; }
}

/* =========================================================
   16. Homepage hero: headline, bubble, next gathering, slow zoom
   ========================================================= */

.rf-hero-head { position: relative; display: inline-block; max-width: 920px; margin: 4px auto 30px; }
.rf-hero-title {
	margin: 0;
	color: #fff;
	font-size: clamp(30px, 4.6vw, 60px);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: .01em;
	text-transform: lowercase;
	text-shadow: 0 2px 26px rgba(0, 0, 0, .28);
}
/* Same voice as the site's own headings: Raleway at its thinnest, lowercase.
   The theme's "h1 span { font-weight: bold }" was making every word bold, hence the .rf-w rule. */
#hero .rf-hero-title,
.rf-serif #hero .rf-hero-title {
	font-family: inherit;
	font-style: normal;
	font-weight: 100;
	font-size: clamp(32px, 8.4vw, 44px);
	line-height: 1.12;
	letter-spacing: .03em;
	text-transform: lowercase;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .14);
	font-synthesis: none;
}
#hero .rf-hero-title .rf-w { font-weight: inherit; }
@media (min-width: 768px) {
	#hero .rf-hero-title,
	.rf-serif #hero .rf-hero-title { font-size: clamp(44px, 5.4vw, 76px); line-height: 1.06; }
}
.rf-hero-title .rf-w { display: inline-block; animation: rf-word 1.1s var(--rf-ease) both; animation-delay: calc(400ms + var(--i) * 110ms); }
@keyframes rf-word {
	from { opacity: 0; translate: 0 .5em; filter: blur(5px); }
	to { opacity: 1; translate: 0 0; filter: blur(0); }
}

/* With a headline under it, the logo steps down a size so the buttons stay above the fold */
.rf-hero-titled #hero .hero-large-text { margin-bottom: 12px; }
.rf-hero-titled #hero .hero-large-text img { width: auto; max-width: min(380px, 62vw); height: auto; }

/* the little tilted tag beside the headline */
.rf-hero-bubble {
	position: absolute;
	top: -10px;
	right: 0;
	translate: 45% -60%;
	rotate: 7deg;
	display: inline-block;
	padding: 8px 15px 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .95);
	color: var(--rf-plum) !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
	box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .5);
	animation: rf-pop .9s var(--rf-ease) 1.3s both, rf-bob 5s ease-in-out 2.4s infinite;
	transition: background-color .3s, color .3s;
}
.rf-hero-bubble:hover { background: var(--rf-blush); }
@keyframes rf-pop {
	from { opacity: 0; scale: .55; }
	to { opacity: 1; scale: 1; }
}
@keyframes rf-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}
@media (max-width: 900px) {
	.rf-hero-head { display: block; }
	.rf-hero-bubble { position: static; translate: none; rotate: -3deg; margin-top: 14px; }
}

/* Left-aligned hero (desktop): logo, bubble, headline, buttons and next gathering in one calm
   column over the darker side of the photo, so her daughter stays in view on the right. */
@media (min-width: 992px) {
	.rf-hero-left.rf-hero-titled #hero .hero__content { text-align: left; max-width: 800px; margin-left: 0; padding-top: 56px; }
	.rf-hero-left.rf-hero-titled #hero .hero-large-text { margin: 0 0 26px; line-height: 0; }
	/* the logo file has wide transparent margins; these trim them so its left edge lines up with the headline */
	.rf-hero-left.rf-hero-titled #hero .hero-large-text img {
		--lw: 270px;
		display: block;
		width: var(--lw) !important;
		max-width: none !important;
		height: auto;
		margin: calc(var(--lw) * -.2528) 0 calc(var(--lw) * -.1076) calc(var(--lw) * -.1411) !important;
	}
	.rf-hero-left .rf-hero-head { display: flex; flex-direction: column; align-items: flex-start; max-width: none; margin: 0 0 36px; }
	.rf-hero-left .rf-hero-bubble { position: static; translate: none; rotate: -4deg; order: -1; margin: 0 0 20px -2px; }
	.rf-hero-left #hero .rf-hero-title { max-width: 11em; }
	.rf-hero-left #hero .hero__content > .btn:first-of-type { margin-left: 0; }
	.rf-hero-left .rf-hero-next-wrap { text-align: left; margin-top: 28px; }
}

/* next gathering, straight from the calendar */
.rf-hero-next-wrap { margin-top: 24px; }
.rf-hero-next {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 10px;
	max-width: 100%;
	padding: 10px 18px 10px 14px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 999px;
	background: rgba(40, 32, 30, .38);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: #fff !important;
	font-size: 13px;
	letter-spacing: .03em;
	text-decoration: none !important;
	animation: rf-word 1s var(--rf-ease) 1.8s both;
	transition: background-color .35s, transform .45s var(--rf-ease), box-shadow .45s var(--rf-ease);
}
.rf-hero-next:hover { background: rgba(40, 32, 30, .58); transform: translateY(-3px); box-shadow: 0 16px 28px -16px rgba(0, 0, 0, .6); }
.rf-hero-next__dot { flex: 0 0 8px; height: 8px; border-radius: 50%; background: #efd9d3; animation: rf-ping 2.6s ease-out infinite; }
@keyframes rf-ping {
	0% { box-shadow: 0 0 0 0 rgba(239, 217, 211, .75); }
	80%, 100% { box-shadow: 0 0 0 10px rgba(239, 217, 211, 0); }
}
.rf-hero-next__label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #f3e3de; }
.rf-hero-next__date { font-weight: 700; }
.rf-hero-next__title { font-weight: 500; text-transform: lowercase; }
.rf-hero-next__arrow { width: 15px; height: 10px; transition: translate .4s var(--rf-ease); }
.rf-hero-next:hover .rf-hero-next__arrow { translate: 4px 0; }

/* slow zoom on the hero photo (parallax layer or slideshow image) */
.rf-hero-zoom #parallax-hero > .jarallax-container > *,
.rf-hero-zoom #hero .backstretch img {
	transform-origin: 50% 40%;
	animation: rf-kenburns 26s ease-in-out infinite alternate;
}
@keyframes rf-kenburns {
	from { scale: 1; }
	to { scale: 1.08; }
}

/* "featured in" section: same breathing room as every other section */
.rf-polish section.section-clients,
.rf-polish #clients {
	padding-top: 4.375rem !important;
	padding-bottom: 4.375rem !important;
}
.rf-polish .section-clients .section-title-area { margin-bottom: 36px; }

@media (prefers-reduced-motion: reduce) {
	.rf-hero-title .rf-w,
	.rf-hero-bubble,
	.rf-hero-next,
	.rf-hero-next__dot,
	.rf-hero-zoom #parallax-hero > .jarallax-container > *,
	.rf-hero-zoom #hero .backstretch img { animation: none; }
}

/* Ribbon placed right under the hero: leave room for the circle badge that overhangs the hero's edge */
.rf-circle-anchor + .rf-home-marquee { padding-top: 84px; }
@media (max-width: 767px) { .rf-circle-anchor + .rf-home-marquee { padding-top: 64px; } }

/* =========================================================
   17. Floaters and sunburst: ambient light drifting behind a few homepage sections
   ========================================================= */

.rf-ambient :is(.rf-home-events, .rf-home-ig, .rf-home-faq) { position: relative; isolation: isolate; overflow: hidden; }
.rf-ambient :is(.rf-home-events, .rf-home-ig, .rf-home-faq)::before,
.rf-ambient :is(.rf-home-events, .rf-home-ig, .rf-home-faq)::after {
	content: "";
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	pointer-events: none;
}
/* gatherings: a blush glow top-left and a rose glow bottom-right, drifting past each other */
.rf-ambient .rf-home-events::before {
	width: 620px; height: 620px; left: -200px; top: -180px;
	background: radial-gradient(circle, rgba(236, 208, 201, .6) 0%, rgba(236, 208, 201, 0) 68%);
	animation: rf-drift-a 28s ease-in-out infinite alternate;
}
.rf-ambient .rf-home-events::after {
	width: 480px; height: 480px; right: -140px; bottom: -160px;
	background: radial-gradient(circle, rgba(183, 150, 150, .3) 0%, rgba(183, 150, 150, 0) 70%);
	animation: rf-drift-b 34s ease-in-out infinite alternate;
}
/* community: a faint vintage sunburst turning slowly behind the heading, plus one warm glow */
.rf-ambient .rf-home-ig::before {
	width: 1000px; height: 1000px; left: 50%; top: -500px; margin-left: -500px;
	background: repeating-conic-gradient(from 0deg, rgba(183, 150, 150, .17) 0deg 4deg, rgba(183, 150, 150, 0) 4deg 12deg);
	-webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .5) 28%, transparent 60%);
	mask-image: radial-gradient(circle, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .5) 28%, transparent 60%);
	animation: rf-turn 180s linear infinite;
}
.rf-ambient .rf-home-ig::after {
	width: 540px; height: 540px; right: -180px; top: 30%;
	background: radial-gradient(circle, rgba(236, 208, 201, .5) 0%, rgba(236, 208, 201, 0) 70%);
	animation: rf-drift-b 30s ease-in-out infinite alternate;
}
/* FAQ: mirror of the gatherings glows */
.rf-ambient .rf-home-faq::before {
	width: 560px; height: 560px; right: -180px; top: -140px;
	background: radial-gradient(circle, rgba(236, 208, 201, .55) 0%, rgba(236, 208, 201, 0) 68%);
	animation: rf-drift-b 30s ease-in-out infinite alternate;
}
.rf-ambient .rf-home-faq::after {
	width: 460px; height: 460px; left: -160px; bottom: -120px;
	background: radial-gradient(circle, rgba(183, 150, 150, .24) 0%, rgba(183, 150, 150, 0) 70%);
	animation: rf-drift-a 36s ease-in-out infinite alternate;
}
@keyframes rf-drift-a {
	from { transform: translate(0, 0) scale(1); }
	to { transform: translate(70px, 50px) scale(1.15); }
}
@keyframes rf-drift-b {
	from { transform: translate(0, 0) scale(1.1); }
	to { transform: translate(-60px, -40px) scale(.95); }
}
@keyframes rf-turn { to { transform: rotate(360deg); } }
@media (max-width: 767px) {
	.rf-ambient .rf-home-ig::before { width: 700px; height: 700px; top: -350px; margin-left: -350px; }
}
@media (prefers-reduced-motion: reduce) {
	.rf-ambient :is(.rf-home-events, .rf-home-ig, .rf-home-faq)::before,
	.rf-ambient :is(.rf-home-events, .rf-home-ig, .rf-home-faq)::after { animation: none; }
}

/* Mini orbs replace the half-sun in the ribbon and circle badge, so the sun only appears in her logo */
.rf-marquee__orb,
.rf-circle__orb {
	flex-shrink: 0;
	display: inline-block;
	border-radius: 50%;
	background: radial-gradient(circle at 42% 38%, #fcf3f0 0%, #ecd3cd 26%, rgba(196, 160, 156, .9) 48%, rgba(183, 150, 150, .35) 64%, rgba(183, 150, 150, 0) 74%);
	filter: blur(.6px);
}
.rf-marquee__orb { width: 26px; height: 26px; }
.rf-circle__orb { width: 44px; height: 44px; animation: rf-orb-breathe 6s ease-in-out infinite; }
@media (max-width: 767px) { .rf-circle__orb { width: 32px; height: 32px; } }
@media (prefers-reduced-motion: reduce) { .rf-circle__orb { animation: none; } }

/* =========================================================
   18. Breathe with me
   ========================================================= */

.rf-breathe-btn {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 900;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 16px 7px 7px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: var(--rf-plum);
	font: 700 12px/1 Raleway, "Helvetica Neue", Arial, sans-serif;
	letter-spacing: .16em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 14px 30px -16px rgba(71, 57, 61, .6);
	opacity: 0;
	translate: 0 16px;
	pointer-events: none;
	transition: opacity .5s var(--rf-ease), translate .6s var(--rf-ease), box-shadow .4s, transform .45s var(--rf-ease);
}
.rf-breathe-btn.is-shown { opacity: 1; translate: 0 0; pointer-events: auto; }
.rf-breathe-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -16px rgba(71, 57, 61, .7); }
.rf-breathe-btn:focus-visible { outline: 2px solid var(--rf-rose); outline-offset: 3px; }
.rf-breathe-btn__orb {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: radial-gradient(circle at 42% 38%, #fcf3f0 0%, #ecd3cd 26%, rgba(196, 160, 156, .95) 50%, rgba(183, 150, 150, .4) 66%, rgba(183, 150, 150, 0) 76%);
	animation: rf-orb-breathe 6s ease-in-out infinite;
}
@media (max-width: 600px) {
	.rf-breathe-btn { left: 12px; bottom: 12px; padding: 6px; }
	.rf-breathe-btn__label { display: none; }
}

html.rf-breathe-lock, html.rf-breathe-lock body { overflow: hidden; }
.rf-breathe {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: 24px;
	background: radial-gradient(120% 90% at 50% 40%, rgba(94, 77, 81, .82), rgba(47, 38, 40, .92));
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s var(--rf-ease), visibility 0s linear .6s;
}
.rf-breathe.is-open { opacity: 1; visibility: visible; transition: opacity .6s var(--rf-ease); }
.rf-breathe__inner { position: relative; width: min(460px, 100%); text-align: center; color: #fff; }
.rf-breathe__close {
	position: absolute;
	top: -8px;
	right: 0;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}
.rf-breathe__close:hover, .rf-breathe__close:focus-visible { background: rgba(255, 255, 255, .12); outline: none; }
.rf-breathe__kicker { margin: 0 0 18px; font: 700 12px/1.2 Raleway, Arial, sans-serif; letter-spacing: .24em; text-transform: uppercase; color: #efdcd6; }
.rf-breathe__stage { position: relative; width: 260px; height: 260px; margin: 0 auto 26px; }
.rf-breathe__orb,
.rf-breathe__halo {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	transform: scale(.5);
	transition-property: transform, opacity;
	transition-timing-function: ease-in-out;
	transition-duration: 1.2s;
}
.rf-breathe__orb {
	background: radial-gradient(circle at 42% 36%, #fff 0%, #f6e4df 22%, #e3c2bb 46%, rgba(196, 160, 156, .75) 62%, rgba(183, 150, 150, 0) 72%);
	filter: blur(1px);
}
.rf-breathe__halo { border: 1px solid rgba(239, 220, 214, .45); opacity: .3; }
.rf-breathe[data-phase="in"] .rf-breathe__orb,
.rf-breathe[data-phase="hold"] .rf-breathe__orb { transform: scale(1); }
.rf-breathe[data-phase="in"] .rf-breathe__halo,
.rf-breathe[data-phase="hold"] .rf-breathe__halo { transform: scale(1.18); opacity: .9; }
.rf-breathe[data-phase="out"] .rf-breathe__orb { transform: scale(.5); }
.rf-breathe[data-phase="out"] .rf-breathe__halo { transform: scale(.6); opacity: .3; }
.rf-breathe__phase { margin: 0 0 8px; font: 200 34px/1.2 Raleway, Arial, sans-serif; letter-spacing: 3px; text-transform: lowercase; }
.rf-breathe__hint { margin: 0; font: 400 13px/1.5 Raleway, Arial, sans-serif; letter-spacing: .06em; color: rgba(255, 255, 255, .7); }
.rf-breathe__cta {
	display: inline-block;
	margin-top: 26px;
	padding-bottom: 3px;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	color: #fff !important;
	font: 600 14px/1.4 Raleway, Arial, sans-serif;
	letter-spacing: .06em;
	text-decoration: none !important;
	opacity: 0;
	transition: opacity 1.2s var(--rf-ease);
}
.rf-breathe.show-cta .rf-breathe__cta { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
	.rf-breathe__orb, .rf-breathe__halo { transform: none !important; }
	.rf-breathe[data-phase="out"] .rf-breathe__orb { opacity: .55; }
	.rf-breathe-btn__orb { animation: none; }
}

/* =========================================================
   19. Highlighter swipe on key phrases
   ========================================================= */

.rf-mark {
	padding: 0 .14em;
	border-radius: .4em .25em .45em .2em;
	background: linear-gradient(100deg, rgba(236, 208, 201, 0) .5%, rgba(236, 208, 201, .95) 2.5%, rgba(229, 193, 186, .75) 50%, rgba(236, 208, 201, .55) 94%, rgba(236, 208, 201, 0) 99%) 0 82% / 0% 62% no-repeat;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	transition: background-size 1.4s cubic-bezier(.65, 0, .35, 1) .25s;
}
.rf-mark.is-marked { background-size: 100% 62%; }
.section-inverse .rf-mark { background-image: linear-gradient(100deg, rgba(183, 150, 150, 0) .5%, rgba(183, 150, 150, .75) 2.5%, rgba(183, 150, 150, .55) 94%, rgba(183, 150, 150, 0) 99%); }



/* On-site photo links: a soft "meet michelle" label on hover instead of the Instagram icon */
.rf-gallery__ig--text { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; text-align: center; padding: 0 8px; }
.rf-btn .rf-btn__arrow { width: 15px; height: 10px; transition: translate .4s var(--rf-ease); }
.rf-btn:hover .rf-btn__arrow { translate: 4px 0; }

/* =========================================================
   20. Two paths: classes & events, or counseling
   ========================================================= */

.rf-paths {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 18px 28px;
	max-width: 980px;
	margin: 34px auto 0;
}
.rf-path {
	flex: 0 1 380px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px 26px 22px 28px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 24px;
	background: rgba(255, 255, 255, .05);
	color: #fff !important;
	text-align: left;
	text-decoration: none !important;
	transition: background-color .4s, border-color .4s, transform .5s var(--rf-ease), box-shadow .5s var(--rf-ease);
}
.rf-path:hover,
.rf-path:focus-visible { background: rgba(255, 255, 255, .11); border-color: rgba(239, 217, 211, .7); transform: translateY(-4px); box-shadow: 0 22px 40px -24px rgba(0, 0, 0, .7); }
.rf-path:focus-visible { outline: 2px solid var(--rf-blush); outline-offset: 4px; }
.rf-path__kicker { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #efd9d3; }
.rf-path__title { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 22px; font-weight: 200; line-height: 1.3; letter-spacing: .02em; text-transform: lowercase; }
.rf-path__arrow { flex: 0 0 18px; width: 18px; height: 12px; transition: translate .4s var(--rf-ease); }
.rf-path:hover .rf-path__arrow { translate: 5px 0; }
/* on light sections the cards switch to plum */
section:not(.section-inverse) .rf-path { border-color: rgba(94, 77, 81, .25); background: rgba(94, 77, 81, .04); color: var(--rf-plum) !important; }
section:not(.section-inverse) .rf-path__kicker { color: var(--rf-rose); }
@media (max-width: 767px) {
	.rf-paths { flex-direction: column; margin-top: 24px; }
	.rf-path { flex-basis: auto; }
	.rf-path__title { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
	.rf-path, .rf-path__arrow { transition: none; }
	.rf-path:hover { transform: none; }
}

/* =========================================================
   21. Meet Michelle page: Instagram (featured reels, photo strip, follow sticker)
   ========================================================= */

.rf-igpage {
	position: relative;
	max-width: 1140px;
	margin: 96px auto 48px;
	padding: 68px clamp(18px, 3.4vw, 44px) 0;
	border-radius: 40px;
	background:
		radial-gradient(60% 40% at 15% 0%, rgba(239, 217, 211, .9), transparent 70%),
		radial-gradient(50% 35% at 90% 100%, rgba(183, 150, 150, .22), transparent 70%),
		linear-gradient(180deg, #f6eeec 0%, #fbf8f7 100%);
	color: var(--rf-plum);
	overflow: hidden;
}
.rf-igpage__head { max-width: 700px; margin: 0 auto; text-align: center; }
.rf-igpage__kicker { margin: 0 0 8px; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--rf-rose); }
.rf-igpage__title { margin: 0; font-size: clamp(30px, 4vw, 44px); font-weight: 200; line-height: 1.15; letter-spacing: .02em; text-transform: lowercase; color: var(--rf-plum); }
.rf-igpage__title::after {
	content: "";
	display: block;
	width: 84px;
	height: 12px;
	margin: 14px auto 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 14'%3E%3Cpath d='M3 8c10-6.5 20-6.5 30 0s20 6.5 30 0 20-6.5 30 0' fill='none' stroke='%23b79696' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.rf-igpage__intro { margin: 18px auto 0; max-width: 560px; font-size: 18px; line-height: 1.6; }
.rf-serif .rf-igpage__intro { font-family: var(--rf-serif); font-style: italic; font-size: 23px; line-height: 1.45; }
.rf-igpage__cta { margin: 26px 0 0; }

/* the spinning "follow along" sticker */
.rf-igpage .rf-igpage__sticker { display: grid; width: 104px; height: 104px; margin: 0 auto 18px; rotate: 8deg; }
@media (min-width: 1200px) {
	.rf-igpage .rf-igpage__sticker { position: absolute; top: 34px; right: 40px; width: 132px; height: 132px; margin: 0; }
}
.rf-igpage__sticker .rf-circle__ring text { font-size: 16px; }

/* featured reels: three tilted cards, like photos pinned to a board */
.rf-reels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	align-items: start;
	margin: 52px 0 0;
}
.rf-reels[data-count="1"] { grid-template-columns: minmax(0, 420px); justify-content: center; }
.rf-reels[data-count="2"] { grid-template-columns: repeat(2, minmax(0, 400px)); justify-content: center; }
.rf-reel { margin: 0; transition: rotate .6s var(--rf-ease); }
.rf-reel:nth-child(3n+1) { rotate: -1.6deg; }
.rf-reel:nth-child(3n+2) { rotate: 1.2deg; margin-top: 34px; }
.rf-reel:nth-child(3n) { rotate: -.7deg; margin-top: 10px; }
.rf-reel:hover { rotate: 0deg; }
.rf-reel__label { margin: 0 0 12px; text-align: center; font-size: 15px; font-weight: 600; letter-spacing: .04em; text-transform: lowercase; color: var(--rf-plum); }
.rf-serif .rf-reel__label { font-family: var(--rf-serif); font-style: italic; font-weight: 500; font-size: 24px; letter-spacing: 0; }
.rf-reel__frame {
	padding: 10px;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 30px 60px -34px rgba(71, 57, 61, .55), 0 2px 8px -4px rgba(71, 57, 61, .12);
	transition: transform .6s var(--rf-ease), box-shadow .6s var(--rf-ease);
}
.rf-reel:hover .rf-reel__frame { transform: translateY(-6px); box-shadow: 0 40px 70px -34px rgba(71, 57, 61, .6), 0 2px 8px -4px rgba(71, 57, 61, .12); }
/* before Instagram's script swaps in the player (or if it is blocked) */
.rf-reel__embed.instagram-media {
	display: grid;
	place-items: center;
	min-height: 440px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 16px !important;
	background: linear-gradient(160deg, #efe1de, #f8f1ef) !important;
	box-shadow: none !important;
}
.rf-reel__fallback { display: inline-flex; align-items: center; gap: 10px; color: var(--rf-plum) !important; font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; text-decoration: none !important; }
.rf-reel__fallback .rf-ig-icon { width: 30px; height: 30px; }
/* Instagram's player */
.rf-reel iframe.instagram-media {
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 16px !important;
	box-shadow: none !important;
}

/* story-style reel card (used until Instagram embeds are allowed on her account) */
.rf-reel__card {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 9 / 16;
	max-height: 560px;
	width: 100%;
	overflow: hidden;
	border-radius: 16px;
	background:
		radial-gradient(120% 60% at 50% 115%, rgba(239, 217, 211, .55), transparent 60%),
		repeating-conic-gradient(from 0deg at 50% 118%, rgba(255, 255, 255, .07) 0deg 6deg, transparent 6deg 14deg),
		linear-gradient(165deg, #8f7478 0%, #5e4d51 55%, #47393d 100%);
	color: #fff !important;
	text-decoration: none !important;
}
.rf-reel:nth-child(3n+2) .rf-reel__card { background: radial-gradient(120% 60% at 50% 115%, rgba(239, 217, 211, .6), transparent 60%), repeating-conic-gradient(from 0deg at 50% 118%, rgba(255, 255, 255, .08) 0deg 6deg, transparent 6deg 14deg), linear-gradient(165deg, #c4a3a1 0%, #9b7b7d 55%, #6e5a5d 100%); }
.rf-reel:nth-child(3n) .rf-reel__card { background: radial-gradient(120% 60% at 50% 115%, rgba(239, 217, 211, .5), transparent 60%), repeating-conic-gradient(from 0deg at 50% 118%, rgba(255, 255, 255, .07) 0deg 6deg, transparent 6deg 14deg), linear-gradient(165deg, #7a6a5f 0%, #504e49 60%, #3d3a36 100%); }
.rf-reel__chip { position: absolute; top: 16px; left: 16px; padding: 5px 11px; border-radius: 999px; background: rgba(255, 255, 255, .18); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.rf-reel__play { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: rgba(255, 255, 255, .95); color: var(--rf-plum); box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .55); transition: scale .5s var(--rf-ease); }
.rf-reel__play svg { width: 30px; height: 30px; margin-left: 4px; }
.rf-reel__card:hover .rf-reel__play,
.rf-reel__card:focus-visible .rf-reel__play { scale: 1.1; }
.rf-reel__watch { position: absolute; left: 0; right: 0; top: calc(50% + 52px); text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .9; }
.rf-reel__by { position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.rf-reel__by .rf-ig-icon { width: 18px; height: 18px; }
.rf-reel__card:focus-visible { outline: 2px solid var(--rf-plum); outline-offset: 4px; }
/* her own uploaded reel video */
.rf-reel__video { display: block; width: 100%; aspect-ratio: 9 / 16; max-height: 560px; object-fit: cover; border-radius: 16px; background: #47393d; }
.rf-reel__more { display: inline-flex; align-items: center; gap: 8px; margin: 14px 0 0 6px; color: var(--rf-plum) !important; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none !important; }
.rf-reel__more .rf-ig-icon { width: 16px; height: 16px; }
@media (prefers-reduced-motion: reduce) { .rf-reel__play { transition: none; } }

.rf-igpage .screen-reader-text { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.rf-igpage__sub { margin: 56px 0 18px; text-align: center; font-size: 24px; font-weight: 200; letter-spacing: .03em; text-transform: lowercase; }

/* endless photo strip */
.rf-strip {
	margin: 58px calc(-1 * clamp(18px, 3.4vw, 44px)) 0;
	padding: 18px 0 26px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rf-strip__track { display: flex; width: max-content; animation: rf-drift 70s linear infinite; }
.rf-strip:hover .rf-strip__track { animation-play-state: paused; }
.rf-strip__run { display: flex; flex-shrink: 0; }
.rf-strip__tile {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 190px;
	aspect-ratio: 4 / 5;
	margin-right: 18px;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 20px 34px -24px rgba(71, 57, 61, .55);
	transition: transform .5s var(--rf-ease);
}
.rf-strip__tile:nth-child(odd) { rotate: -2deg; }
.rf-strip__tile:nth-child(even) { rotate: 1.6deg; translate: 0 10px; }
.rf-strip__tile:hover { transform: scale(1.05); }
.rf-strip__img { display: block; width: 100%; height: 100%; object-fit: cover; }
.rf-strip__ig { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(94, 77, 81, .45); color: #fff; opacity: 0; transition: opacity .35s; }
.rf-strip__ig .rf-ig-icon { width: 32px; height: 32px; }
.rf-strip__tile:hover .rf-strip__ig { opacity: 1; }

.rf-igpage__more { margin: 8px 0 0; padding: 0 0 44px; text-align: center; }
.rf-igpage__more a { white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; color: var(--rf-plum) !important; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-decoration: none !important; border-bottom: 1px solid rgba(94, 77, 81, .35); padding-bottom: 3px; }
.rf-igpage__more a:hover { border-bottom-color: var(--rf-plum); }
.rf-igpage__more .rf-btn__arrow { flex: 0 0 15px; width: 15px; height: 10px; transition: translate .4s var(--rf-ease); }
.rf-igpage__more a:hover .rf-btn__arrow { translate: 4px 0; }

@media (max-width: 900px) {
	/* reels become a swipeable row */
	.rf-reels,
	.rf-reels[data-count] {
		grid-template-columns: none;
		grid-auto-flow: column;
		grid-auto-columns: min(82%, 340px);
		justify-content: start;
		gap: 16px;
		margin: 40px calc(-1 * clamp(18px, 3.4vw, 44px)) 0;
		padding: 6px clamp(18px, 3.4vw, 44px) 24px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	.rf-reels::-webkit-scrollbar { display: none; }
	.rf-reel { scroll-snap-align: center; }
	.rf-reel:nth-child(n) { rotate: 0deg; margin-top: 0; }
}
@media (max-width: 767px) {
	.rf-igpage { margin-top: 56px; padding-top: 40px; border-radius: 28px; }
	.rf-igpage .rf-igpage__sticker { width: 92px; height: 92px; }
	.rf-strip__tile { width: 140px; margin-right: 12px; }
}
@media (prefers-reduced-motion: reduce) {
	.rf-strip { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
	.rf-strip__track { animation: none; }
	.rf-strip__run[aria-hidden="true"] { display: none; }
	.rf-reel, .rf-reel__frame, .rf-strip__tile { transition: none; }
}
