:root {
	--rc-pink: #f5176b;
	--rc-yellow: #efc940;
	--rc-navy: #282a43;
	--rc-blue: #343877;
	--rc-white: #ffffff;
	--rc-cream: #fffaf8;
	--rc-soft: #f6f2ee;
	--rc-text: #34343f;
	--rc-muted: #707070;
	--rc-border: #eee9e5;
	--rc-radius: 8px;
	--rc-shadow-sm: 0 10px 26px rgba(40, 42, 67, 0.08);
	--rc-shadow-md: 0 20px 48px rgba(40, 42, 67, 0.14);
	--rc-shadow-lg: 0 28px 70px rgba(40, 42, 67, 0.2);
	--rc-container: 1200px;
	--rc-section: 58px;
	--rc-motion: 220ms ease;
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--rc-text);
}

body.rc-menu-open {
	overflow: hidden;
}

.page-wrapper {
	padding-top: 78px;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(239, 201, 64, 0.75);
	outline-offset: 3px;
}

.rc-container {
	width: min(var(--rc-container), calc(100% - 40px));
	margin: 0 auto;
}

.rc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 1px solid var(--rc-blue);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	color: var(--rc-blue);
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
	transition: transform var(--rc-motion), background var(--rc-motion), color var(--rc-motion), border-color var(--rc-motion);
}

.rc-button:hover {
	background: var(--rc-blue);
	color: var(--rc-white);
	text-decoration: none;
	transform: translateY(-2px);
}

.rc-button--primary {
	border-color: var(--rc-yellow);
	background: var(--rc-yellow);
	color: var(--rc-navy);
}

.rc-button--primary:hover {
	border-color: var(--rc-pink);
	background: var(--rc-pink);
	color: var(--rc-white);
}

.rc-button--dark {
	border-color: rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.08);
	color: var(--rc-white);
}

.rc-button--dark:hover {
	border-color: var(--rc-yellow);
	background: var(--rc-yellow);
	color: var(--rc-navy);
}

.rc-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--rc-pink);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.rc-label::before {
	content: "";
	width: 34px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
}

.rc-section {
	padding: var(--rc-section) 0;
}

.rc-section--white {
	background: var(--rc-white);
}

.rc-section--dark {
	background: var(--rc-navy);
	color: var(--rc-white);
}

.rc-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 24px;
}

.rc-section-heading h2 {
	margin: 10px 0 0;
	color: var(--rc-blue);
	font-size: clamp(30px, 3.4vw, 44px);
	line-height: 1.08;
}

.rc-section--dark .rc-section-heading h2 {
	color: var(--rc-white);
}

.rc-section-heading p {
	max-width: 620px;
	margin: 0;
	color: var(--rc-muted);
	line-height: 1.75;
}

.rc-section--dark .rc-section-heading p {
	color: rgba(255, 255, 255, 0.75);
}

.rc-section--dark .rc-label {
	color: var(--rc-yellow);
}

.rc-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rc-reveal {
	opacity: 0;
	filter: blur(8px);
	transform: translateY(26px);
	transition: opacity 720ms ease, transform 720ms ease, filter 720ms ease;
	transition-delay: var(--rc-reveal-delay, 0ms);
}

.rc-reveal.is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

.rc-site-header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(238, 233, 229, 0.88);
	box-shadow: var(--rc-shadow-sm);
	transition: background var(--rc-motion), box-shadow var(--rc-motion), border-color var(--rc-motion), transform var(--rc-motion);
}

.rc-site-header.is-scrolled {
	border-color: rgba(52, 56, 119, 0.12);
	background: rgba(255, 255, 255, 0.985);
	box-shadow: 0 16px 42px rgba(40, 42, 67, 0.14);
}

.rc-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 24px;
}

.rc-site-logo {
	display: inline-flex;
	align-items: center;
}

.rc-site-logo img {
	display: block;
	max-height: 54px;
	width: auto;
}

.rc-site-nav {
	display: flex;
	align-items: center;
	gap: 2px;
}

.rc-site-nav a {
	position: relative;
	padding: 28px 10px 25px;
	color: var(--rc-navy);
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
	transition: color var(--rc-motion);
}

.rc-site-nav a::after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 16px;
	height: 3px;
	border-radius: 3px;
	background: var(--rc-pink);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--rc-motion);
}

.rc-site-nav a:hover,
.rc-site-nav a.is-active {
	color: var(--rc-pink);
}

.rc-back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 1100;
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	background: var(--rc-pink);
	color: var(--rc-white);
	box-shadow: 0 18px 42px rgba(245, 23, 107, 0.32);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px) scale(0.94);
	transition: opacity var(--rc-motion), transform var(--rc-motion), background var(--rc-motion), box-shadow var(--rc-motion);
}

.rc-back-to-top span {
	display: block;
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
}

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

.rc-back-to-top:hover,
.rc-back-to-top:focus-visible {
	background: var(--rc-blue);
	box-shadow: 0 20px 48px rgba(52, 56, 119, 0.28);
}

.rc-site-nav a:hover::after,
.rc-site-nav a.is-active::after {
	transform: scaleX(1);
}

.rc-site-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rc-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	color: var(--rc-navy);
}

.rc-menu-toggle span,
.rc-menu-toggle span::before,
.rc-menu-toggle span::after {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
	transition: transform var(--rc-motion), opacity var(--rc-motion);
}

.rc-menu-toggle span::before {
	transform: translateY(-7px);
}

.rc-menu-toggle span::after {
	transform: translateY(5px);
}

.rc-menu-toggle[aria-expanded="true"] span {
	background: transparent;
}

.rc-menu-toggle[aria-expanded="true"] span::before {
	background: var(--rc-navy);
	transform: rotate(45deg);
}

.rc-menu-toggle[aria-expanded="true"] span::after {
	background: var(--rc-navy);
	transform: translateY(-2px) rotate(-45deg);
}

.rc-mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 1200;
	pointer-events: none;
}

.rc-mobile-panel__overlay {
	position: absolute;
	inset: 0;
	background: rgba(40, 42, 67, 0.46);
	opacity: 0;
	transition: opacity var(--rc-motion);
}

.rc-mobile-panel__drawer {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	width: min(390px, calc(100% - 24px));
	height: 100%;
	flex-direction: column;
	padding: 24px;
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-lg);
	transform: translateX(100%);
	transition: transform var(--rc-motion);
}

.rc-mobile-panel.is-open {
	pointer-events: auto;
}

.rc-mobile-panel.is-open .rc-mobile-panel__overlay {
	opacity: 1;
}

.rc-mobile-panel.is-open .rc-mobile-panel__drawer {
	transform: translateX(0);
}

.rc-mobile-panel__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 26px;
}

.rc-mobile-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	color: var(--rc-navy);
	font-size: 28px;
	line-height: 1;
}

.rc-mobile-nav {
	display: grid;
	gap: 8px;
}

.rc-mobile-nav a {
	padding: 12px 0;
	border-bottom: 1px solid var(--rc-border);
	color: var(--rc-navy);
	font-size: 21px;
	font-weight: 900;
	text-decoration: none;
}

.rc-mobile-nav a.is-active {
	color: var(--rc-pink);
}

.rc-mobile-panel__meta {
	margin-top: auto;
	padding-top: 24px;
}

.rc-mobile-panel__meta p {
	margin: 0 0 6px;
	color: var(--rc-muted);
}

.rc-footer {
	position: relative;
	overflow: hidden;
	padding: 70px 0 26px;
	background: var(--rc-navy);
	color: rgba(255, 255, 255, 0.76);
}

.rc-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--rc-pink), var(--rc-yellow), var(--rc-blue));
}

.rc-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
	gap: 44px;
}

.rc-footer__logo img {
	max-height: 64px;
	filter: brightness(0) invert(1);
}

.rc-footer__text {
	max-width: 340px;
	margin: 20px 0 0;
	line-height: 1.75;
}

.rc-footer__title {
	position: relative;
	margin: 0 0 22px;
	color: var(--rc-white);
	font-size: 21px;
}

.rc-footer__title::after {
	content: "";
	display: block;
	width: 42px;
	height: 3px;
	margin-top: 12px;
	border-radius: 3px;
	background: var(--rc-pink);
}

.rc-footer__links {
	display: grid;
	gap: 11px;
}

.rc-footer__links a,
.rc-footer__bottom a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.rc-footer__links a:hover,
.rc-footer__bottom a:hover {
	color: var(--rc-white);
}

.rc-footer__fact {
	margin-bottom: 16px;
}

.rc-footer__fact span {
	display: block;
	margin-bottom: 4px;
	color: var(--rc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.rc-footer__cta {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--rc-radius);
	background: rgba(255, 255, 255, 0.06);
}

.rc-footer__cta p {
	margin: 0 0 18px;
	line-height: 1.65;
}

.rc-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 50px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rc-home {
	overflow: hidden;
	background: var(--rc-cream);
	color: var(--rc-text);
}

.rc-hero {
	position: relative;
	min-height: 760px;
	padding: 136px 0 86px;
	background: var(--rc-navy);
	color: var(--rc-white);
}

.rc-hero__media {
	position: absolute;
	inset: 0;
}

.rc-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rc-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(40, 42, 67, 0.94) 0%, rgba(40, 42, 67, 0.72) 42%, rgba(40, 42, 67, 0.2) 100%),
		linear-gradient(0deg, rgba(40, 42, 67, 0.72) 0%, transparent 44%);
}

.rc-hero__shape {
	position: absolute;
	right: -9%;
	bottom: -24%;
	width: 58vw;
	height: 58vw;
	border: 48px solid rgba(239, 201, 64, 0.25);
	border-radius: 50%;
	animation: rcPulse 7s ease-in-out infinite;
}

.rc-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.48fr);
	gap: 44px;
	align-items: end;
	min-height: 530px;
}

.rc-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--rc-yellow);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.rc-hero__kicker::before {
	content: "";
	width: 44px;
	height: 3px;
	border-radius: 3px;
	background: var(--rc-yellow);
}

.rc-hero h1 {
	max-width: 870px;
	margin: 18px 0 22px;
	color: var(--rc-white);
	font-size: clamp(44px, 7vw, 78px);
	line-height: 0.98;
}

.rc-hero h1 span {
	color: var(--rc-yellow);
}

.rc-hero__text {
	max-width: 700px;
	margin: 0 0 30px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
	line-height: 1.75;
}

.rc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rc-hero-feature {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--rc-radius);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
	animation: rcFloat 5.5s ease-in-out infinite;
}

.rc-hero-feature__image {
	height: 214px;
	background: rgba(255, 255, 255, 0.08);
}

.rc-hero-feature__body {
	padding: 22px;
}

.rc-hero-feature__body span {
	color: var(--rc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.rc-hero-feature__body h2 {
	margin: 8px 0 16px;
	color: var(--rc-white);
	font-size: 26px;
	line-height: 1.22;
}

.rc-impact-ribbon {
	position: relative;
	z-index: 3;
	margin-top: -42px;
}

.rc-impact-ribbon__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-md);
}

.rc-impact-item {
	padding: 24px;
	border-right: 1px solid var(--rc-border);
}

.rc-impact-item:last-child {
	border-right: 0;
}

.rc-impact-item strong {
	display: block;
	color: var(--rc-blue);
	font-size: 32px;
	line-height: 1;
}

.rc-impact-item span {
	display: block;
	margin-top: 8px;
	color: var(--rc-muted);
	font-weight: 800;
}

.rc-story-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 42px;
	align-items: center;
}

.rc-story-media {
	position: relative;
	min-height: 560px;
}

.rc-story-media__photo {
	position: absolute;
	overflow: hidden;
	border-radius: var(--rc-radius);
	box-shadow: var(--rc-shadow-md);
}

.rc-story-media__photo img {
	transition: transform 450ms ease;
}

.rc-story-media__photo:hover img {
	transform: scale(1.04);
}

.rc-story-media__photo--main {
	left: 0;
	top: 0;
	width: 78%;
	height: 430px;
}

.rc-story-media__photo--small {
	right: 0;
	bottom: 0;
	width: 46%;
	height: 260px;
	border: 8px solid var(--rc-cream);
}

.rc-story-note {
	position: absolute;
	left: 32px;
	bottom: 34px;
	max-width: 270px;
	padding: 20px;
	border-radius: var(--rc-radius);
	background: var(--rc-pink);
	color: var(--rc-white);
	box-shadow: 0 18px 44px rgba(245, 23, 107, 0.25);
}

.rc-story-note strong {
	display: block;
	font-size: 26px;
	line-height: 1.1;
}

.rc-story-note span {
	display: block;
	margin-top: 6px;
	font-weight: 800;
}

.rc-story-content h2 {
	margin: 10px 0 18px;
	color: var(--rc-blue);
	font-size: clamp(34px, 4vw, 48px);
	line-height: 1.08;
}

.rc-story-content p {
	margin: 0 0 26px;
	color: var(--rc-muted);
	font-size: 17px;
	line-height: 1.8;
}

.rc-pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.rc-pill-list span {
	padding: 9px 12px;
	border-radius: var(--rc-radius);
	background: rgba(239, 201, 64, 0.22);
	color: var(--rc-blue);
	font-weight: 900;
}

.rc-project-grid,
.rc-leader-grid,
.rc-business-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.rc-leader-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rc-preview-card {
	overflow: hidden;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: 0 14px 34px rgba(52, 56, 119, 0.07);
	text-decoration: none;
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.rc-preview-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px rgba(52, 56, 119, 0.13);
	text-decoration: none;
}

.rc-preview-card__image {
	position: relative;
	height: 232px;
	overflow: hidden;
	background: var(--rc-soft);
}

.rc-preview-card__image img {
	transition: transform 350ms ease;
}

.rc-preview-card:hover .rc-preview-card__image img {
	transform: scale(1.05);
}

.rc-preview-card__tag {
	position: absolute;
	left: 16px;
	top: 16px;
	max-width: calc(100% - 32px);
	padding: 8px 11px;
	border-radius: 6px;
	background: var(--rc-pink);
	color: var(--rc-white);
	overflow: hidden;
	font-size: 12px;
	font-weight: 900;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(245, 23, 107, 0.24);
}

.rc-preview-card__body {
	padding: 22px;
}

.rc-preview-card__title {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 14px;
	color: var(--rc-blue);
	font-size: 23px;
	font-weight: 900;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rc-preview-card__text,
.rc-preview-card__meta {
	color: var(--rc-muted);
	line-height: 1.65;
}

.rc-preview-card__meta {
	display: grid;
	gap: 5px;
	font-size: 14px;
	font-weight: 800;
}

.rc-leader-card {
	display: block;
	overflow: hidden;
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-sm);
	text-decoration: none;
}

.rc-leader-card__image {
	height: 310px;
	background: var(--rc-soft);
}

.rc-leader-card__body {
	padding: 18px;
}

.rc-leader-card__body h3 {
	margin: 4px 0 6px;
	color: var(--rc-blue);
	font-size: 21px;
	line-height: 1.25;
}

.rc-leader-card__body span {
	color: var(--rc-pink);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

.rc-business-card {
	padding: 24px;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-sm);
}

.rc-business-card__top {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	gap: 15px;
	align-items: center;
}

.rc-business-card__logo {
	overflow: hidden;
	width: 70px;
	height: 70px;
	border-radius: var(--rc-radius);
	background: var(--rc-soft);
}

.rc-business-card h3 {
	margin: 4px 0 0;
	color: var(--rc-blue);
	font-size: 22px;
	line-height: 1.25;
}

.rc-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.rc-tag-list span {
	padding: 7px 10px;
	border-radius: 7px;
	background: rgba(245, 23, 107, 0.08);
	color: var(--rc-pink);
	font-size: 13px;
	font-weight: 900;
}

.rc-gallery-mosaic {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.rc-gallery-item {
	position: relative;
	overflow: hidden;
	min-height: 210px;
	border-radius: var(--rc-radius);
	background: var(--rc-soft);
	text-decoration: none;
}

.rc-gallery-item:nth-child(1),
.rc-gallery-item:nth-child(4) {
	grid-column: span 3;
	min-height: 320px;
}

.rc-gallery-item:nth-child(2),
.rc-gallery-item:nth-child(3),
.rc-gallery-item:nth-child(5),
.rc-gallery-item:nth-child(6) {
	grid-column: span 3;
}

.rc-gallery-item img {
	transition: transform 450ms ease;
}

.rc-gallery-item:hover img {
	transform: scale(1.05);
}

.rc-gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(40, 42, 67, 0.76));
}

.rc-gallery-item span {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 1;
	color: var(--rc-white);
	font-size: 18px;
	font-weight: 900;
}

.rc-app-block,
.rc-join-cta,
.rc-final-cta {
	overflow: hidden;
	border-radius: var(--rc-radius);
	box-shadow: var(--rc-shadow-md);
}

.rc-app-block {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	background: var(--rc-white);
}

.rc-app-block__body,
.rc-final-cta__body {
	padding: 38px;
}

.rc-final-cta__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
}

.rc-app-block__media {
	min-height: 390px;
	background: var(--rc-soft);
}

.rc-app-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.rc-join-cta {
	position: relative;
	padding: 46px;
	background:
		linear-gradient(90deg, rgba(40, 42, 67, 0.92), rgba(40, 42, 67, 0.72)),
		var(--rc-navy);
	color: var(--rc-white);
}

.rc-join-cta h2,
.rc-app-block h2,
.rc-final-cta h2 {
	margin: 8px 0 12px;
	color: inherit;
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.08;
}

.rc-join-cta p,
.rc-app-block p,
.rc-final-cta p {
	max-width: 700px;
	margin: 0 0 26px;
	color: inherit;
	line-height: 1.75;
}

.rc-final-cta {
	background: var(--rc-white);
}

.rc-empty-state {
	padding: 28px;
	border: 1px dashed rgba(52, 56, 119, 0.28);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	color: var(--rc-muted);
	font-weight: 800;
}

.rc-home--expressive {
	background:
		linear-gradient(180deg, rgba(255, 245, 248, 0.78) 0%, rgba(255, 255, 255, 0) 560px),
		var(--rc-cream);
}

.home-hero {
	position: relative;
	overflow: hidden;
	min-height: 620px;
	padding: 98px 0 68px;
	background: var(--rc-navy);
	color: var(--rc-white);
}

.home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(115deg, rgba(245, 23, 107, 0.16), transparent 34%),
		linear-gradient(245deg, rgba(239, 201, 64, 0.16), transparent 30%);
	mix-blend-mode: screen;
	pointer-events: none;
}

.home-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: 1;
	height: 94px;
	background: linear-gradient(180deg, transparent, rgba(255, 251, 244, 0.98));
	pointer-events: none;
}

.home-hero__media {
	position: absolute;
	inset: 0;
	transform: translate3d(0, var(--rc-hero-shift, 0px), 0);
	will-change: transform;
}

.home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03);
	animation: homeHeroDrift 16s ease-in-out infinite alternate;
}

.home-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(29, 31, 52, 0.95) 0%, rgba(38, 41, 84, 0.84) 47%, rgba(245, 23, 107, 0.18) 100%),
		radial-gradient(circle at 74% 25%, rgba(239, 201, 64, 0.34), transparent 28%),
		linear-gradient(0deg, rgba(29, 31, 52, 0.75), rgba(29, 31, 52, 0.08) 46%);
}

.home-hero__rings {
	position: absolute;
	right: -88px;
	top: 86px;
	width: 430px;
	height: 430px;
	border: 34px solid rgba(239, 201, 64, 0.2);
	border-radius: 50%;
	animation: rcPulse 7s ease-in-out infinite;
}

.home-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
	gap: 44px;
	align-items: end;
	min-height: 430px;
}

.home-hero__content h1 {
	max-width: 820px;
	margin: 14px 0 18px;
	color: var(--rc-white);
	font-size: clamp(46px, 6vw, 74px);
	line-height: 0.96;
}

.home-hero__content p {
	max-width: 700px;
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 18px;
	line-height: 1.68;
}

.home-hero-card {
	display: block;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	backdrop-filter: blur(16px);
	animation: rcFloat 5.8s ease-in-out infinite;
	transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.home-hero-card:hover {
	border-color: rgba(239, 201, 64, 0.62);
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 34px 86px rgba(0, 0, 0, 0.36);
	text-decoration: none;
}

.home-hero-card__image {
	display: block;
	height: 220px;
	background: rgba(255, 255, 255, 0.1);
}

.home-hero-card__body {
	display: block;
	padding: 20px;
}

.home-hero-card__body span,
.home-hero-card__body em {
	display: block;
	color: var(--rc-yellow);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.home-hero-card__body strong {
	display: block;
	margin: 8px 0 12px;
	color: var(--rc-white);
	font-size: 25px;
	line-height: 1.2;
}

.home-hero-card__body em {
	color: rgba(255, 255, 255, 0.78);
	letter-spacing: 0;
	text-transform: none;
}

.home-trust {
	position: relative;
	z-index: 4;
	margin-top: -38px;
}

.home-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid rgba(52, 56, 119, 0.09);
	border-radius: 18px;
	background: var(--rc-white);
	box-shadow: 0 28px 70px rgba(52, 56, 119, 0.13);
}

.home-trust__item {
	padding: 21px 22px;
	border-right: 1px solid var(--rc-border);
	transition: background var(--rc-motion), transform var(--rc-motion);
}

.home-trust__item:last-child {
	border-right: 0;
}

.home-trust__item:hover {
	background: linear-gradient(180deg, rgba(255, 250, 248, 0.92), var(--rc-white));
	transform: translateY(-2px);
}

.home-trust__item strong {
	display: block;
	color: var(--rc-blue);
	font-size: 34px;
	line-height: 1;
}

.home-trust__item span {
	display: block;
	margin-top: 8px;
	color: var(--rc-muted);
	font-weight: 900;
	line-height: 1.4;
}

.upcoming-activities {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 250, 248, 0.96), rgba(255, 255, 255, 0.98) 42%, rgba(239, 201, 64, 0.08)),
		var(--rc-white);
}

.upcoming-activities--home {
	padding-top: 56px;
	padding-bottom: 56px;
}

.upcoming-activities--projects {
	background:
		linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
	color: var(--rc-text);
}

.upcoming-activities::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, var(--rc-pink), var(--rc-yellow), var(--rc-blue));
}

.upcoming-activities__grid {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 18px;
}

.upcoming-card {
	overflow: hidden;
	border: 1px solid var(--rc-border);
	border-radius: 16px;
	background: var(--rc-white);
	box-shadow: 0 18px 46px rgba(52, 56, 119, 0.09);
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.upcoming-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 72px rgba(52, 56, 119, 0.16);
}

.upcoming-card:first-child {
	display: grid;
	grid-row: auto;
	grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1fr);
	min-height: 390px;
}

.upcoming-card__poster {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #f4f3f7;
}

.upcoming-card:first-child .upcoming-card__poster {
	height: 100%;
	min-height: 390px;
	aspect-ratio: auto;
	background:
		linear-gradient(135deg, rgba(52, 56, 119, 0.08), rgba(245, 23, 107, 0.08)),
		#f8f6f4;
}

.upcoming-card__poster img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 520ms ease;
}

.upcoming-card:first-child .upcoming-card__poster img {
	object-fit: contain;
}

.upcoming-card:hover .upcoming-card__poster img {
	transform: scale(1.035);
}

.upcoming-card__body {
	display: flex;
	flex-direction: column;
	padding: 22px;
}

.upcoming-card:first-child .upcoming-card__body {
	justify-content: center;
	padding: 28px;
}

.upcoming-card__topline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.upcoming-card__featured {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(239, 201, 64, 0.26);
	color: var(--rc-blue);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

.upcoming-card h3 {
	margin: 0 0 12px;
	color: var(--rc-blue);
	font-size: clamp(28px, 2.8vw, 38px);
	line-height: 1.06;
}

.upcoming-card:not(:first-child) h3 {
	font-size: 24px;
	line-height: 1.18;
}

.upcoming-card p {
	margin: 0 0 18px;
	color: var(--rc-muted);
	line-height: 1.6;
}

.upcoming-card__meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: auto;
}

.upcoming-card:not(:first-child) .upcoming-card__meta {
	grid-template-columns: 1fr;
	gap: 8px;
}

.upcoming-card__meta span {
	min-width: 0;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(52, 56, 119, 0.07);
}

.upcoming-card__meta strong,
.upcoming-card__meta em {
	display: block;
	overflow-wrap: anywhere;
}

.upcoming-card__meta strong {
	color: var(--rc-blue);
	font-size: 14px;
	line-height: 1.25;
}

.upcoming-card__meta em {
	margin-top: 3px;
	color: var(--rc-muted);
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

.upcoming-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.upcoming-card__note {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.upcoming-card__note span {
	padding: 7px 10px;
	border-radius: 9px;
	background: rgba(245, 23, 107, 0.08);
	color: var(--rc-pink);
	font-size: 12px;
	font-weight: 900;
}

.home-story {
	position: relative;
	padding-top: 52px;
}

.home-story::before,
.home-feature::before,
.home-business::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 260px;
	background: linear-gradient(90deg, rgba(245, 23, 107, 0.08), rgba(239, 201, 64, 0.1), transparent 72%);
	pointer-events: none;
}

.home-story__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr);
	gap: 42px;
	align-items: center;
}

.home-story__media {
	position: relative;
	min-height: 470px;
}

.home-story__photo {
	position: absolute;
	overflow: hidden;
	border-radius: 18px;
	background: var(--rc-soft);
	box-shadow: var(--rc-shadow-md);
}

.home-story__photo img {
	transition: transform 500ms ease;
}

.home-story__photo:hover img {
	transform: scale(1.04);
}

.home-story__photo--main {
	left: 0;
	top: 0;
	width: 76%;
	height: 380px;
}

.home-story__photo--side {
	right: 0;
	bottom: 0;
	width: 48%;
	height: 225px;
	border: 8px solid var(--rc-cream);
}

.home-story__year {
	position: absolute;
	left: 34px;
	bottom: 28px;
	max-width: 260px;
	padding: 20px;
	border-radius: 14px;
	background: var(--rc-pink);
	color: var(--rc-white);
	box-shadow: 0 18px 44px rgba(245, 23, 107, 0.28);
}

.home-story__year strong {
	display: block;
	font-size: 26px;
	line-height: 1.1;
}

.home-story__year span {
	display: block;
	margin-top: 6px;
	font-weight: 900;
}

.home-story__content h2,
.home-leadership__intro h2,
.home-cta__panel h2 {
	margin: 10px 0 18px;
	color: var(--rc-blue);
	font-size: clamp(32px, 3.6vw, 48px);
	line-height: 1.06;
}

.home-story__content p,
.home-leadership__intro p,
.home-cta__panel p {
	margin: 0 0 22px;
	color: var(--rc-muted);
	font-size: 17px;
	line-height: 1.68;
}

.home-focus-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.home-focus-list span {
	padding: 10px 13px;
	border-radius: 10px;
	background: rgba(239, 201, 64, 0.24);
	color: var(--rc-blue);
	font-weight: 900;
}

.home-feature {
	position: relative;
	background: var(--rc-white);
}

.home-feature__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
	overflow: hidden;
	border: 1px solid var(--rc-border);
	border-radius: 20px;
	background: linear-gradient(135deg, var(--rc-white), #fff8e4);
	box-shadow: 0 26px 70px rgba(52, 56, 119, 0.1);
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.home-feature__grid:hover {
	transform: translateY(-3px);
	box-shadow: 0 34px 82px rgba(52, 56, 119, 0.14);
}

.home-feature__visual {
	min-height: 390px;
	background: var(--rc-soft);
}

.home-feature__visual img {
	transition: transform 520ms ease;
}

.home-feature__visual:hover img {
	transform: scale(1.035);
}

.home-feature__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 34px;
}

.home-feature__content h3 {
	margin: 8px 0 16px;
	color: var(--rc-blue);
	font-size: clamp(29px, 3.5vw, 42px);
	line-height: 1.08;
}

.home-feature__content p {
	margin: 0 0 22px;
	color: var(--rc-muted);
	font-size: 17px;
	line-height: 1.75;
}

.home-feature__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 26px;
}

.home-feature__meta span {
	padding: 9px 12px;
	border-radius: 10px;
	background: rgba(52, 56, 119, 0.08);
	color: var(--rc-blue);
	font-weight: 900;
}

.home-supporting-projects {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 24px;
}

.home-support-card {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	overflow: hidden;
	min-height: 160px;
	border: 1px solid var(--rc-border);
	border-radius: 18px;
	background: var(--rc-white);
	box-shadow: 0 18px 44px rgba(52, 56, 119, 0.08);
	text-decoration: none;
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.home-support-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 54px rgba(52, 56, 119, 0.14);
	text-decoration: none;
}

.home-support-card__image {
	background: var(--rc-soft);
}

.home-support-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 22px;
}

.home-support-card__body span,
.home-business-card__body span {
	color: var(--rc-pink);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.home-support-card__body strong {
	margin-top: 10px;
	color: var(--rc-blue);
	font-size: 23px;
	line-height: 1.2;
}

.home-leadership {
	background:
		linear-gradient(135deg, rgba(40, 42, 67, 0.96), rgba(52, 56, 119, 0.9)),
		var(--rc-navy);
	color: var(--rc-white);
}

.home-leadership .rc-label,
.home-leadership__intro h2 {
	color: var(--rc-white);
}

.home-leadership__intro p {
	color: rgba(255, 255, 255, 0.76);
}

.home-leadership__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.1fr);
	gap: 32px;
	align-items: center;
}

.home-leadership__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.home-leader-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
	text-decoration: none;
	backdrop-filter: blur(10px);
	transition: transform var(--rc-motion), background var(--rc-motion);
}

.home-leader-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.14);
	text-decoration: none;
}

.home-leader-card__image {
	display: block;
	height: 235px;
	background: rgba(255, 255, 255, 0.08);
}

.home-leader-card__body {
	display: block;
	padding: 18px;
}

.home-leader-card__body span {
	display: block;
	color: var(--rc-yellow);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

.home-leader-card__body strong {
	display: block;
	margin-top: 8px;
	color: var(--rc-white);
	font-size: 21px;
	line-height: 1.25;
}

.home-business {
	position: relative;
	background: var(--rc-cream);
}

.home-business__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.home-business-card {
	position: relative;
	overflow: hidden;
	min-height: 250px;
	padding: 22px;
	border: 1px solid var(--rc-border);
	border-radius: 18px;
	background: var(--rc-white);
	box-shadow: 0 18px 48px rgba(52, 56, 119, 0.08);
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.home-business-card::before {
	content: "";
	position: absolute;
	inset: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--rc-pink), var(--rc-yellow), var(--rc-blue));
}

.home-business-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 58px rgba(52, 56, 119, 0.14);
}

.home-business-card__logo {
	display: grid;
	place-items: center;
	overflow: hidden;
	width: 82px;
	height: 82px;
	margin-bottom: 18px;
	border-radius: 18px;
	background: var(--rc-navy);
	color: var(--rc-white);
	font-size: 34px;
	font-weight: 900;
}

.home-business-card__body h3 {
	margin: 8px 0 16px;
	color: var(--rc-blue);
	font-size: 25px;
	line-height: 1.22;
}

.home-business-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.home-business-card__tags em {
	padding: 8px 10px;
	border-radius: 9px;
	background: rgba(245, 23, 107, 0.08);
	color: var(--rc-pink);
	font-style: normal;
	font-weight: 900;
}

.home-gallery {
	background: var(--rc-white);
}

.home-gallery__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	grid-auto-rows: 128px;
	gap: 14px;
}

.home-gallery-item {
	position: relative;
	overflow: hidden;
	grid-column: span 2;
	grid-row: span 2;
	border-radius: 18px;
	background: var(--rc-soft);
	text-decoration: none;
	box-shadow: 0 18px 42px rgba(52, 56, 119, 0.08);
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.home-gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 62px rgba(52, 56, 119, 0.16);
}

.home-gallery-item:nth-child(1),
.home-gallery-item:nth-child(6) {
	grid-column: span 3;
	grid-row: span 3;
}

.home-gallery-item:nth-child(4) {
	grid-column: span 2;
	grid-row: span 3;
}

.home-gallery-item img {
	transition: transform 520ms ease;
}

.home-gallery-item:hover img {
	transform: scale(1.06);
}

.home-gallery-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 38%, rgba(29, 31, 52, 0.84));
}

.home-gallery-item span {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 1;
	color: var(--rc-white);
}

.home-gallery-item strong,
.home-gallery-item em {
	display: block;
}

.home-gallery-item strong {
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
}

.home-gallery-item em {
	margin-top: 5px;
	color: var(--rc-yellow);
	font-style: normal;
	font-weight: 900;
}

.home-cta {
	background:
		linear-gradient(180deg, var(--rc-white), var(--rc-cream));
}

.home-cta__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
	align-items: center;
	overflow: hidden;
	padding: 36px;
	border-radius: 18px;
	background:
		radial-gradient(circle at 88% 12%, rgba(239, 201, 64, 0.28), transparent 26%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 229, 0.92));
	box-shadow: 0 26px 70px rgba(52, 56, 119, 0.12);
}

.home-cta__panel h2 {
	max-width: 920px;
}

.home-cta__apps {
	padding: 20px;
	border: 1px solid rgba(52, 56, 119, 0.12);
	border-radius: 18px;
	background: var(--rc-white);
	box-shadow: 0 16px 38px rgba(52, 56, 119, 0.08);
}

.home-cta__apps span,
.home-cta__apps a {
	display: block;
}

.home-cta__apps span {
	margin-bottom: 14px;
	color: var(--rc-muted);
	font-weight: 900;
	line-height: 1.45;
}

.home-cta__apps a {
	padding: 12px 14px;
	border-radius: 10px;
	background: var(--rc-navy);
	color: var(--rc-white);
	font-weight: 900;
	text-align: center;
	text-decoration: none;
}

.home-cta__apps a + a {
	margin-top: 10px;
	background: var(--rc-pink);
}

@keyframes homeHeroDrift {
	0% {
		transform: scale(1.03) translate3d(0, 0, 0);
	}
	100% {
		transform: scale(1.08) translate3d(-1.5%, -1%, 0);
	}
}

@keyframes rcFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes rcPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	.rc-reveal {
		opacity: 1;
		filter: none;
		transform: none;
	}

	.home-hero__media {
		transform: none !important;
	}
}

.rc-page {
	background: var(--rc-cream);
	color: var(--rc-text);
}

.rc-page-hero {
	position: relative;
	overflow: hidden;
	padding: 126px 0 50px;
	background:
		radial-gradient(circle at 10% 8%, rgba(245, 23, 107, 0.1), transparent 28%),
		linear-gradient(132deg, var(--rc-white) 0%, var(--rc-white) 58%, rgba(239, 201, 64, 0.13) 100%);
	border-bottom: 1px solid var(--rc-border);
}

.rc-page-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
	gap: 36px;
	align-items: end;
}

.rc-page-hero__title {
	max-width: 780px;
	margin: 10px 0 14px;
	color: var(--rc-blue);
	font-size: clamp(36px, 5vw, 58px);
	line-height: 1.04;
}

.rc-page-hero__text {
	max-width: 700px;
	margin: 0;
	color: var(--rc-muted);
	font-size: 17px;
	line-height: 1.75;
}

.rc-filter-panel {
	padding: 20px;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--rc-shadow-sm);
}

.rc-filter-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
	gap: 14px;
	align-items: end;
	margin: 0;
}

.rc-filter-form--single {
	grid-template-columns: 1fr;
}

.rc-filter-field {
	min-width: 0;
}

.rc-filter-label {
	display: block;
	margin: 0 0 8px;
	color: var(--rc-pink);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.rc-filter-input {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid #dedbd6;
	border-radius: 7px;
	background-color: var(--rc-white);
	color: var(--rc-text);
	font-weight: 800;
}

.rc-filter-input:focus {
	border-color: var(--rc-pink);
	box-shadow: 0 0 0 3px rgba(245, 23, 107, 0.14);
	outline: none;
}

.rc-list-section {
	padding: 48px 0 70px;
}

.rc-list-wrap {
	position: relative;
	min-height: 220px;
	transition: opacity var(--rc-motion);
}

.rc-list-wrap.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.rc-project-list-grid,
.rc-team-grid,
.rc-business-directory {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.rc-project-card,
.rc-team-card,
.rc-directory-card,
.rc-empty-state,
.rc-detail-panel,
.rc-detail-side-card,
.rc-share-panel,
.rc-related-card {
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-sm);
}

.rc-project-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.rc-project-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rc-shadow-md);
	text-decoration: none;
}

.rc-project-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1.38 / 1;
	background: var(--rc-soft);
}

.rc-project-card__media img,
.rc-team-card__photo img,
.rc-directory-card__logo img,
.rc-detail-hero__image img,
.rc-gallery-card img,
.rc-related-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rc-project-card__media img,
.rc-gallery-card img,
.rc-related-card__image img {
	transition: transform 320ms ease;
}

.rc-project-card:hover .rc-project-card__media img,
.rc-gallery-card:hover img,
.rc-related-card:hover .rc-related-card__image img {
	transform: scale(1.04);
}

.rc-chip {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 7px 11px;
	border-radius: 7px;
	background: rgba(245, 23, 107, 0.09);
	color: var(--rc-pink);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.rc-chip--solid {
	position: absolute;
	top: 16px;
	left: 16px;
	max-width: calc(100% - 32px);
	background: var(--rc-pink);
	color: var(--rc-white);
	box-shadow: 0 10px 22px rgba(245, 23, 107, 0.24);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rc-project-card__body,
.rc-team-card__body,
.rc-directory-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.rc-project-card__title,
.rc-team-card__name,
.rc-directory-card__title,
.rc-detail-title {
	margin: 0;
	color: var(--rc-blue);
	line-height: 1.22;
}

.rc-project-card__title {
	font-size: 25px;
}

.rc-project-card__summary {
	display: -webkit-box;
	overflow: hidden;
	min-height: 78px;
	margin: 16px 0 22px;
	color: var(--rc-muted);
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.rc-card-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid var(--rc-border);
}

.rc-meta-label {
	display: block;
	margin-bottom: 4px;
	color: #8a8a8a;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rc-meta-value {
	display: block;
	overflow: hidden;
	color: var(--rc-text);
	font-weight: 900;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rc-card-action {
	margin-top: 18px;
	color: var(--rc-pink);
	font-weight: 900;
}

.rc-empty-state {
	padding: 34px;
	text-align: center;
	color: var(--rc-muted);
}

.rc-empty-state h2 {
	margin: 12px 0 8px;
	color: var(--rc-blue);
}

.business-pagination {
	margin-top: 28px;
}

.rc-team-card {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 100%;
	text-decoration: none;
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.rc-team-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rc-shadow-md);
	text-decoration: none;
}

.rc-team-card__photo {
	overflow: hidden;
	aspect-ratio: 1 / 1.08;
	background: var(--rc-soft);
}

.rc-team-card__role {
	margin-top: 12px;
	color: var(--rc-pink);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.rc-team-card__name {
	margin-top: 8px;
	font-size: 24px;
}

.rc-team-card__cta {
	margin-top: 16px;
	color: var(--rc-blue);
	font-weight: 900;
}

.rc-detail-hero {
	padding: 118px 0 58px;
	background:
		radial-gradient(circle at 100% 8%, rgba(239, 201, 64, 0.16), transparent 34%),
		linear-gradient(135deg, var(--rc-white), #fff8fb);
	border-bottom: 1px solid var(--rc-border);
}

.rc-detail-hero--dark {
	background:
		linear-gradient(120deg, rgba(245, 23, 107, 0.2), transparent 35%),
		linear-gradient(315deg, rgba(239, 201, 64, 0.18), transparent 38%),
		var(--rc-blue);
	color: var(--rc-white);
}

.rc-detail-hero--project {
	position: relative;
	overflow: hidden;
	padding-bottom: 72px;
	background: #282a43;
	color: var(--rc-white);
}

.rc-detail-hero--project::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.2;
	background-image:
		linear-gradient(120deg, rgba(52, 56, 119, 0.15) 1px, transparent 1px),
		radial-gradient(circle, rgba(52, 56, 119, 0.12) 1.4px, transparent 2px);
	background-size: 96px 96px, 48px 48px;
	pointer-events: none;
}

.rc-detail-hero--project::after {
	content: "";
	position: absolute;
	right: -170px;
	top: 94px;
	width: 440px;
	height: 440px;
	border: 42px solid rgba(245, 23, 107, 0.07);
	border-radius: 50%;
	pointer-events: none;
}

.rc-detail-hero--project .rc-label,
.rc-detail-hero--project .rc-detail-hero__title,
.rc-detail-hero--project .rc-detail-hero__text {
	color: var(--rc-white);
}

.rc-detail-hero--project .rc-label::before {
	background: var(--rc-yellow);
}

.rc-detail-hero--project .rc-chip {
	background: var(--rc-pink);
	color: var(--rc-white);
}

.rc-detail-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
	gap: 48px;
	align-items: center;
}

.rc-detail-hero__title {
	max-width: 830px;
	margin: 12px 0 18px;
	color: var(--rc-blue);
	font-size: clamp(38px, 5.5vw, 64px);
	line-height: 1.04;
}

.rc-detail-hero--dark .rc-detail-hero__title,
.rc-detail-hero--dark .rc-label,
.rc-detail-hero--dark .rc-detail-hero__text {
	color: var(--rc-white);
}

.rc-detail-hero--dark .rc-label::before {
	background: var(--rc-yellow);
}

.rc-detail-hero__text {
	max-width: 720px;
	margin: 0 0 26px;
	color: var(--rc-muted);
	font-size: 17px;
	line-height: 1.75;
}

.rc-detail-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rc-detail-hero__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1.05 / 1;
	border-radius: var(--rc-radius);
	background: var(--rc-soft);
	box-shadow: var(--rc-shadow-lg);
}

.rc-detail-hero--project .rc-detail-hero__image {
	border: 10px solid var(--rc-white);
	border-radius: 22px;
	box-shadow: 0 28px 80px rgba(52, 56, 119, 0.18);
}

.rc-detail-hero--project .rc-detail-hero__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 58%, rgba(40, 42, 67, 0.22));
	pointer-events: none;
}

.project-detail-page {
	background:
		linear-gradient(180deg, #fffaf8 0%, #ffffff 38%, #fffaf8 100%);
}

.project-detail-page .project-impact-strip {
	margin-top: -40px;
}

.project-detail-page .rc-detail-panel,
.project-detail-page .project-share-note {
	border-color: rgba(52, 56, 119, 0.1);
	background:
		radial-gradient(circle at 100% 0%, rgba(239, 201, 64, 0.08), transparent 30%),
		var(--rc-white);
	box-shadow: 0 20px 54px rgba(52, 56, 119, 0.08);
}

.project-detail-page .rc-section--white {
	background:
		linear-gradient(135deg, rgba(245, 23, 107, 0.04), rgba(239, 201, 64, 0.07)),
		var(--rc-white);
}

.member-profile-frame {
	position: relative;
	overflow: hidden;
	border-radius: var(--rc-radius);
	background:
		linear-gradient(135deg, rgba(245, 23, 107, 0.16), transparent 42%),
		linear-gradient(315deg, rgba(239, 201, 64, 0.18), transparent 48%),
		var(--rc-white);
}

.member-profile-frame::before {
	content: "";
	position: absolute;
	inset: 18px;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: var(--rc-radius);
	pointer-events: none;
}

.member-profile-frame__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1.12;
	background: var(--rc-soft);
}

.member-profile-frame__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(17, 20, 43, 0.72));
}

.member-profile-frame__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member-profile-frame__caption {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 28px;
	z-index: 2;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: var(--rc-radius);
	background: rgba(255, 255, 255, 0.12);
	color: var(--rc-white);
	backdrop-filter: blur(14px);
}

.member-profile-frame__caption span,
.member-profile-frame__caption strong {
	display: block;
}

.member-profile-frame__caption span {
	margin-bottom: 5px;
	color: var(--rc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.member-profile-frame__caption strong {
	font-size: 22px;
	line-height: 1.2;
}

.rc-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 34px;
	align-items: start;
}

.rc-detail-panel,
.rc-detail-side-card,
.rc-share-panel {
	padding: 30px;
}

.rc-detail-panel h2 {
	margin: 10px 0 20px;
	color: var(--rc-blue);
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.14;
}

.rc-detail-panel h3,
.rc-detail-panel h4,
.rc-detail-panel strong {
	color: var(--rc-blue);
}

.rc-detail-panel p,
.rc-detail-panel li {
	color: #606060;
	font-size: 16px;
	line-height: 1.76;
}

.rc-detail-panel img {
	max-width: 100%;
	height: auto;
	border-radius: var(--rc-radius);
}

.rc-detail-side-card {
	position: sticky;
	top: 104px;
}

.rc-side-title {
	margin: 0 0 20px;
	color: var(--rc-blue);
	font-size: 26px;
}

.rc-fact {
	padding: 16px 0;
	border-bottom: 1px solid var(--rc-border);
}

.rc-fact:last-child {
	border-bottom: 0;
}

.rc-fact__value {
	display: block;
	margin-top: 6px;
	color: var(--rc-text);
	font-weight: 900;
	line-height: 1.45;
	word-break: break-word;
}

.rc-share-url {
	display: block;
	overflow: hidden;
	padding: 10px 12px;
	border-radius: 7px;
	background: var(--rc-soft);
	color: var(--rc-blue);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.45;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rc-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.rc-gallery-card {
	display: block;
	overflow: hidden;
	aspect-ratio: 1.4 / 1;
	border-radius: var(--rc-radius);
	background: var(--rc-soft);
}

.rc-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.rc-related-card {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	min-height: 230px;
	overflow: hidden;
	text-decoration: none;
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.rc-related-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--rc-shadow-md);
	text-decoration: none;
}

.rc-related-card__image {
	position: relative;
	overflow: hidden;
	background: var(--rc-soft);
}

.rc-related-card__body {
	display: flex;
	flex-direction: column;
	padding: 24px;
}

.rc-related-card__title {
	color: var(--rc-blue);
	font-size: 25px;
	font-weight: 900;
	line-height: 1.25;
}

.rc-share-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
}

.rc-share-panel h2 {
	margin: 0 0 6px;
	color: var(--rc-blue);
	font-size: 26px;
}

.rc-share-panel p {
	margin: 0;
	color: var(--rc-muted);
	line-height: 1.65;
}

.rc-timeline {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.rc-timeline-card {
	position: relative;
	min-height: 138px;
	padding: 24px;
	overflow: hidden;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-sm);
}

.rc-timeline-card--current {
	border-color: rgba(245, 23, 107, 0.34);
	box-shadow: 0 18px 44px rgba(245, 23, 107, 0.1);
}

.rc-timeline-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--rc-pink), var(--rc-yellow));
}

.rc-timeline-card__year {
	margin-bottom: 18px;
}

.rc-timeline-card__post {
	display: block;
	color: var(--rc-blue);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.34;
}

.rc-timeline-card--current .rc-timeline-card__year::after {
	content: "Current";
	margin-left: 8px;
	color: var(--rc-pink);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rc-profile-grid {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
}

.rc-business-stack {
	display: grid;
	gap: 22px;
}

.rc-member-business-card {
	position: relative;
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr);
	gap: 22px;
	overflow: hidden;
	padding: 24px;
}

.rc-member-business-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: var(--rc-pink);
}

.rc-member-business-card__logo {
	overflow: hidden;
	width: 118px;
	height: 118px;
	border-radius: var(--rc-radius);
	background: var(--rc-soft);
}

.rc-member-business-card__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rc-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0;
}

.rc-tag {
	padding: 7px 10px;
	border-radius: 7px;
	background: rgba(245, 23, 107, 0.08);
	color: var(--rc-pink);
	font-size: 13px;
	font-weight: 900;
}

.rc-directory-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	padding: 24px;
}

.rc-directory-card__top {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
}

.rc-directory-card__top--spaced {
	margin-top: 18px;
}

.rc-directory-card__logo {
	overflow: hidden;
	width: 76px;
	height: 76px;
	border-radius: var(--rc-radius);
	background: var(--rc-soft);
}

.rc-directory-card__owner {
	margin: 0 0 5px;
	color: var(--rc-pink);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.rc-directory-card__title {
	font-size: 23px;
}

.rc-directory-card__description {
	display: -webkit-box;
	overflow: hidden;
	margin: 16px 0 0;
	color: var(--rc-muted);
	line-height: 1.65;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.rc-directory-card__description--clamp {
	-webkit-line-clamp: 3;
}

.rc-directory-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
	padding-top: 22px;
}

.leadership-page {
	background: linear-gradient(180deg, #fffaf8 0%, #ffffff 46%, #fffaf8 100%);
}

.leadership-intro {
	padding: 124px 0 46px;
	background:
		linear-gradient(135deg, rgba(52, 56, 119, 0.96), rgba(40, 42, 67, 0.92)),
		radial-gradient(circle at 84% 18%, rgba(239, 201, 64, 0.22), transparent 32%);
	color: var(--rc-white);
}

.leadership-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 44px;
	align-items: end;
}

.leadership-intro .rc-label,
.leadership-intro h1,
.leadership-intro p {
	color: var(--rc-white);
}

.leadership-intro .rc-label::before {
	background: var(--rc-yellow);
}

.leadership-intro h1 {
	max-width: 760px;
	margin: 12px 0 18px;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.02;
}

.leadership-intro p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	line-height: 1.75;
}

.leadership-filter {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--rc-radius);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(16px);
}

.leadership-filter .rc-filter-label {
	color: var(--rc-yellow);
}

.leadership-filter .rc-filter-input {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.94);
}

.leadership-wrap {
	padding: 58px 0 78px;
}

.leadership-president {
	display: grid;
	grid-template-columns: 410px minmax(0, 1fr);
	gap: 34px;
	align-items: stretch;
	margin-bottom: 34px;
	overflow: hidden;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-md);
}

.leadership-president__photo {
	position: relative;
	min-height: 520px;
	background: var(--rc-soft);
}

.leadership-president__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.leadership-president__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
}

.leadership-president__body h2 {
	margin: 12px 0;
	color: var(--rc-blue);
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.05;
}

.leadership-context {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 24px 0;
}

.leadership-context span {
	padding: 16px;
	border-radius: var(--rc-radius);
	background: var(--rc-soft);
}

.leadership-context strong,
.leadership-context em {
	display: block;
}

.leadership-context strong {
	color: var(--rc-blue);
	font-size: 22px;
	font-style: normal;
}

.leadership-context em {
	margin-top: 4px;
	color: var(--rc-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.leadership-core {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 34px 0;
}

.leadership-core-card {
	display: grid;
	grid-template-columns: 138px minmax(0, 1fr);
	gap: 18px;
	align-items: stretch;
	min-height: 214px;
	padding: 16px;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-sm);
}

.leadership-core-card__photo {
	overflow: hidden;
	aspect-ratio: 1 / 1.12;
	border-radius: var(--rc-radius);
	background: var(--rc-soft);
}

.leadership-core-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.leadership-core-card h3,
.leadership-director-card h3 {
	margin: 10px 0 8px;
	color: var(--rc-blue);
	font-size: 24px;
	line-height: 1.2;
}

.leadership-card-content {
	display: flex;
	min-height: 100%;
	flex-direction: column;
}

.leadership-card-content .rc-chip,
.leadership-director-card__body .rc-chip {
	align-self: flex-start;
	max-width: 100%;
	min-height: 34px;
	line-height: 1.25;
	white-space: normal;
}

.leadership-card-content h3,
.leadership-director-card__body h3 {
	min-height: 0;
}

.leadership-card-content .leadership-note,
.leadership-director-card__body .leadership-note {
	margin-bottom: 16px;
}

.leadership-card-content .rc-button,
.leadership-director-card__body .rc-button {
	margin-top: auto;
}

.leadership-directors {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.leadership-director-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	min-height: 100%;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-sm);
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.leadership-director-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rc-shadow-md);
}

.leadership-director-card__photo {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 0.72;
	background: var(--rc-soft);
}

.leadership-director-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.leadership-director-card__body {
	display: flex;
	min-height: 238px;
	flex-direction: column;
	padding: 20px;
}

.leadership-note {
	margin: 0 0 18px;
	color: var(--rc-muted);
	line-height: 1.65;
}

.leadership-mini-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0 18px;
}

.leadership-mini-meta span {
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(52, 56, 119, 0.08);
	color: var(--rc-blue);
	font-size: 12px;
	font-weight: 900;
}

.project-archive {
	background: #fffaf8;
}

.project-archive-hero {
	padding: 126px 0 34px;
	background: linear-gradient(180deg, var(--rc-white), #fff8fb);
	border-bottom: 1px solid var(--rc-border);
}

.project-archive-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 460px;
	gap: 34px;
	align-items: end;
}

.project-archive-hero h1 {
	max-width: 760px;
	margin: 12px 0 16px;
	color: var(--rc-blue);
	font-size: clamp(38px, 5vw, 62px);
	line-height: 1.04;
}

.project-filter-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: end;
	padding: 18px;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-sm);
}

.project-filter-strip .rc-filter-field {
	flex: 1 1 180px;
}

.project-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: 0;
	margin-bottom: 28px;
	overflow: hidden;
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-md);
}

.project-feature__image {
	position: relative;
	min-height: 430px;
	background: var(--rc-soft);
}

.project-feature__image img,
.project-story-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-feature__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 38px;
}

.project-feature__body h2 {
	margin: 14px 0;
	color: var(--rc-blue);
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.08;
}

.project-story-list {
	display: grid;
	gap: 22px;
}

.project-story-card {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-sm);
	text-decoration: none;
	transition: transform var(--rc-motion), box-shadow var(--rc-motion);
}

.project-story-card:nth-child(even) {
	grid-template-columns: minmax(0, 1fr) 320px;
}

.project-story-card:nth-child(even) .project-story-card__image {
	order: 2;
}

.project-story-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--rc-shadow-md);
	text-decoration: none;
}

.project-story-card__image {
	position: relative;
	min-height: 245px;
	background: var(--rc-soft);
}

.project-story-card__body {
	padding: 28px;
}

.project-story-card__body h3 {
	margin: 12px 0;
	color: var(--rc-blue);
	font-size: 30px;
	line-height: 1.16;
}

.project-impact-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	margin-bottom: 28px;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	background: var(--rc-border);
	box-shadow: var(--rc-shadow-sm);
}

.project-impact-strip__item {
	padding: 22px;
	background: var(--rc-white);
}

.project-impact-strip__item strong {
	display: block;
	color: var(--rc-blue);
	font-size: 24px;
	line-height: 1.2;
}

.project-impact-strip__item span {
	display: block;
	margin-top: 6px;
	color: var(--rc-muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.project-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 290px;
	gap: 34px;
	align-items: start;
}

.project-share-note {
	position: sticky;
	top: 104px;
	padding: 24px;
	border-left: 4px solid var(--rc-pink);
	border-radius: var(--rc-radius);
	background: var(--rc-white);
	box-shadow: var(--rc-shadow-sm);
}

.impact-showcase {
	background: #0f1328;
	color: var(--rc-white);
}

.impact-hero {
	position: relative;
	overflow: hidden;
	min-height: 760px;
	padding: 132px 0 72px;
	background: #11142b;
}

.impact-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.impact-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
}

.impact-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(15, 19, 40, 0.95) 0%, rgba(15, 19, 40, 0.78) 42%, rgba(15, 19, 40, 0.44) 100%),
		radial-gradient(circle at 82% 18%, rgba(245, 23, 107, 0.34), transparent 34%),
		linear-gradient(180deg, rgba(15, 19, 40, 0.2), #0f1328 100%);
}

.impact-hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 46px;
	align-items: end;
	min-height: 560px;
}

.impact-hero .rc-label,
.impact-hero h1,
.impact-hero p {
	color: var(--rc-white);
}

.impact-hero .rc-label::before {
	background: var(--rc-yellow);
}

.impact-hero h1 {
	max-width: 850px;
	margin: 16px 0 18px;
	font-size: clamp(46px, 7vw, 92px);
	line-height: 0.94;
}

.impact-hero__text {
	max-width: 690px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
	line-height: 1.72;
}

.impact-stats {
	display: grid;
	gap: 12px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(18px);
}

.impact-stat {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.1);
}

.impact-stat strong {
	color: var(--rc-yellow);
	font-size: 34px;
	line-height: 1;
}

.impact-stat span {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 900;
}

.impact-filter {
	position: relative;
	z-index: 2;
	margin-top: -42px;
}

.impact-filter__panel {
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 24px 70px rgba(15, 19, 40, 0.22);
	backdrop-filter: blur(18px);
}

.impact-filter__top {
	display: grid;
	grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
	gap: 16px;
	align-items: end;
	margin-bottom: 14px;
}

.impact-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.impact-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 15px;
	border: 1px solid rgba(52, 56, 119, 0.16);
	border-radius: 999px;
	background: var(--rc-white);
	color: var(--rc-blue);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	cursor: pointer;
	transition: transform var(--rc-motion), background var(--rc-motion), color var(--rc-motion), border-color var(--rc-motion);
}

.impact-chip:hover,
.impact-chip.is-active {
	border-color: var(--rc-pink);
	background: var(--rc-pink);
	color: var(--rc-white);
	transform: translateY(-2px);
}

.impact-hidden-select {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.impact-section {
	padding: 72px 0 84px;
	background:
		linear-gradient(180deg, #fffaf8 0%, #ffffff 48%, #fffaf8 100%);
	color: var(--rc-text);
}

.impact-section .rc-section-heading h2 {
	max-width: 760px;
	font-size: clamp(34px, 4vw, 58px);
	line-height: 1.06;
}

.impact-featured {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	min-height: 0;
	margin-bottom: 34px;
	overflow: hidden;
	border-radius: 22px;
	background: #11142b;
	box-shadow: 0 30px 90px rgba(15, 19, 40, 0.2);
}

.impact-featured__image {
	position: relative;
	min-height: 540px;
	overflow: hidden;
	background: #11142b;
}

.impact-featured__image img,
.impact-tile__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 480ms ease;
}

.impact-featured:hover .impact-featured__image img,
.impact-tile:hover .impact-tile__image img {
	transform: scale(1.06);
}

.impact-featured__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(17, 20, 43, 0.58));
}

.impact-featured__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 44px;
	color: var(--rc-white);
}

.impact-featured__body h2 {
	margin: 14px 0;
	color: var(--rc-white);
	font-size: clamp(36px, 4.5vw, 64px);
	line-height: 1.02;
}

.impact-featured__body p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.74;
}

.impact-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 22px 0 28px;
}

.impact-fact {
	padding: 13px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--rc-white);
}

.impact-fact strong,
.impact-fact span {
	display: block;
}

.impact-fact strong {
	color: var(--rc-yellow);
	font-size: 18px;
	line-height: 1.2;
}

.impact-fact span {
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.impact-magazine-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	grid-auto-rows: 132px;
	grid-auto-flow: dense;
	gap: 20px;
}

.impact-tile {
	position: relative;
	display: flex;
	grid-column: span 3;
	grid-row: span 3;
	overflow: hidden;
	border-radius: 20px;
	background: #11142b;
	box-shadow: 0 20px 58px rgba(15, 19, 40, 0.14);
	text-decoration: none;
}

.impact-tile:nth-child(3n + 1) {
	grid-column: span 4;
	grid-row: span 4;
}

.impact-tile:nth-child(4n + 2) {
	grid-column: span 2;
	grid-row: span 4;
}

.impact-tile:nth-last-child(1):nth-child(odd) {
	grid-column: span 6;
	grid-row: span 3;
}

.impact-tile:nth-last-child(2):nth-child(odd),
.impact-tile:nth-last-child(2):nth-child(odd) + .impact-tile {
	grid-column: span 3;
	grid-row: span 3;
}

.impact-tile__image {
	position: absolute;
	inset: 0;
	background: #11142b;
}

.impact-tile__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(17, 20, 43, 0.12) 0%, rgba(17, 20, 43, 0.86) 100%),
		radial-gradient(circle at 22% 18%, rgba(245, 23, 107, 0.22), transparent 34%);
}

.impact-tile__body {
	position: relative;
	z-index: 1;
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	color: var(--rc-white);
}

.impact-tile__body h3 {
	margin: 12px 0;
	color: var(--rc-white);
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.08;
}

.impact-tile__summary {
	display: -webkit-box;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.62;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.impact-tile__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.impact-tile__meta span {
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.11);
	color: rgba(255, 255, 255, 0.84);
	font-size: 12px;
	font-weight: 900;
}

.directory-page {
	background:
		linear-gradient(180deg, #fffaf8 0%, #f5f1ee 48%, #fffdf9 100%);
}

.directory-hero {
	position: relative;
	overflow: hidden;
	padding: 104px 0 74px;
	background: #fffaf8;
	border-bottom: 1px solid var(--rc-border);
}

.directory-hero::before,
.directory-hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.directory-hero::before {
	inset: 0;
	opacity: 0.28;
	background-image:
		linear-gradient(120deg, rgba(52, 56, 119, 0.16) 1px, transparent 1px),
		radial-gradient(circle, rgba(52, 56, 119, 0.16) 1.4px, transparent 2px);
	background-size: 92px 92px, 46px 46px;
	mask-image: linear-gradient(90deg, transparent, #000 28%, #000 74%, transparent);
}

.directory-hero::after {
	right: -170px;
	top: 66px;
	width: 430px;
	height: 430px;
	border: 42px solid rgba(52, 56, 119, 0.07);
	border-radius: 50%;
}

.directory-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 38px;
	align-items: end;
}

.directory-hero h1 {
	margin: 12px 0 16px;
	color: var(--rc-blue);
	font-size: clamp(36px, 4.4vw, 56px);
	line-height: 1.05;
}

.directory-search {
	padding: 20px;
	border: 1px solid rgba(52, 56, 119, 0.12);
	border-radius: 20px;
	background: #282a43;
	box-shadow: 0 24px 70px rgba(52, 56, 119, 0.14);
	color: var(--rc-white);
}

.directory-search .rc-filter-label {
	color: rgba(255, 255, 255, 0.82);
}

.directory-search .rc-filter-input {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.96);
}

.directory-search .rc-filter-form {
	grid-template-columns: 1fr;
	gap: 14px;
}

.directory-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.directory-trust-row span {
	padding: 9px 13px;
	border: 1px solid rgba(52, 56, 119, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--rc-blue);
	font-size: 13px;
	font-weight: 900;
}

.directory-list-section {
	position: relative;
	padding-top: 44px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 180px),
		transparent;
}

.directory-hero-network {
	margin-bottom: 18px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
}

.directory-hero-network__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--rc-white);
}

.directory-hero-network__head span {
	color: var(--rc-yellow);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.directory-hero-network__head strong {
	color: var(--rc-white);
	font-size: 14px;
}

.directory-hero-network__cards {
	display: grid;
	gap: 10px;
}

.directory-hero-company {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 10px;
	border-radius: 14px;
	background: var(--rc-white);
}

.directory-hero-company__logo {
	display: grid;
	place-items: center;
	overflow: hidden;
	width: 54px;
	height: 54px;
	padding: 8px;
	border-radius: 12px;
	background: #fff5f8;
	color: var(--rc-blue);
	font-weight: 900;
}

.directory-hero-company__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.directory-hero-company__body {
	min-width: 0;
}

.directory-hero-company__body strong,
.directory-hero-company__body em {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.directory-hero-company__body strong {
	color: var(--rc-blue);
	font-size: 15px;
	line-height: 1.25;
}

.directory-hero-company__body em {
	margin-top: 3px;
	color: var(--rc-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
}

.directory-discovery {
	margin: -66px 0 32px;
	padding: 18px 18px 16px;
	border: 1px solid rgba(52, 56, 119, 0.1);
	border-radius: 20px;
	background:
		radial-gradient(circle at 96% 0%, rgba(245, 23, 107, 0.08), transparent 28%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 244, 0.92));
	box-shadow: 0 22px 60px rgba(52, 56, 119, 0.1);
	backdrop-filter: blur(14px);
}

.directory-discovery__head {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 12px;
}

.directory-discovery__head p {
	margin: 0;
	color: var(--rc-muted);
	font-weight: 800;
}

.directory-category-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 0;
}

.directory-category-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid rgba(52, 56, 119, 0.13);
	border-radius: 999px;
	background: var(--rc-white);
	color: var(--rc-blue);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	transition: transform var(--rc-motion), background var(--rc-motion), border-color var(--rc-motion), color var(--rc-motion);
}

.directory-category-nav a.is-active,
.directory-category-nav a:hover,
.directory-category-nav a:focus-visible {
	border-color: var(--rc-pink);
	background: var(--rc-pink);
	color: var(--rc-white);
	transform: translateY(-1px);
	outline: none;
	box-shadow: 0 10px 24px rgba(245, 23, 107, 0.18);
}

.directory-results-head {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 22px;
}

.directory-results-head h2 {
	margin: 8px 0 0;
	color: var(--rc-blue);
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.08;
}

.directory-results-count {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 9px 14px;
	border: 1px solid rgba(52, 56, 119, 0.11);
	border-radius: 999px;
	background: var(--rc-white);
	color: var(--rc-blue);
	font-weight: 900;
	box-shadow: 0 12px 28px rgba(52, 56, 119, 0.06);
}

.business-feature-section {
	margin-bottom: 28px;
	padding: 20px;
	border: 1px solid rgba(52, 56, 119, 0.1);
	border-radius: 22px;
	background:
		radial-gradient(circle at 4% 0%, rgba(239, 201, 64, 0.13), transparent 28%),
		linear-gradient(135deg, rgba(52, 56, 119, 0.07), rgba(245, 23, 107, 0.045)),
		rgba(255, 255, 255, 0.8);
	box-shadow: 0 20px 54px rgba(52, 56, 119, 0.07);
}

.business-feature-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.business-card-shell {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 100%;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid rgba(52, 56, 119, 0.1);
	border-radius: 20px;
	background: var(--rc-white);
	box-shadow: 0 12px 30px rgba(40, 42, 67, 0.06);
	transition: transform var(--rc-motion), box-shadow var(--rc-motion), border-color var(--rc-motion);
}

.business-card-shell:hover {
	transform: translateY(-4px);
	border-color: rgba(245, 23, 107, 0.16);
	box-shadow: 0 24px 58px rgba(40, 42, 67, 0.12);
}

.business-feature {
	min-height: 420px;
}

.business-cover {
	position: relative;
	min-height: 138px;
	overflow: visible;
	background:
		radial-gradient(circle at 22% 15%, rgba(255, 255, 255, 0.42), transparent 26%),
		linear-gradient(135deg, #343877, #f5176b);
}

.business-feature .business-cover {
	min-height: 168px;
}

.business-cover::before,
.business-cover::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
}

.business-cover::before {
	right: 20px;
	top: 20px;
	width: 94px;
	height: 94px;
}

.business-cover::after {
	right: 92px;
	bottom: 20px;
	width: 11px;
	height: 11px;
	box-shadow:
		44px -24px 0 rgba(255, 255, 255, 0.16),
		84px 10px 0 rgba(255, 255, 255, 0.14);
}

.business-cover--tone-1 {
	background: linear-gradient(135deg, #343877, #f5176b);
}

.business-cover--tone-2 {
	background: linear-gradient(135deg, #282a43, #efc940);
}

.business-cover--tone-3 {
	background: linear-gradient(135deg, #343877, #3d7bd9);
}

.business-cover--tone-4 {
	background: linear-gradient(135deg, #5b2a5f, #f5176b);
}

.business-cover--tone-5 {
	background: linear-gradient(135deg, #293647, #45b29d);
}

.business-cover__watermark {
	position: absolute;
	right: 18px;
	bottom: -8px;
	color: rgba(255, 255, 255, 0.18);
	font-size: 82px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.business-feature .business-cover__watermark {
	font-size: 104px;
}

.business-logo {
	position: absolute;
	left: 22px;
	bottom: -42px;
	z-index: 1;
	display: grid;
	place-items: center;
	overflow: hidden;
	width: 86px;
	height: 86px;
	padding: 11px;
	border: 1px solid rgba(52, 56, 119, 0.12);
	border-radius: 18px;
	background: #ffffff;
	color: var(--rc-blue);
	font-size: 25px;
	font-weight: 900;
	box-shadow: 0 14px 34px rgba(40, 42, 67, 0.16);
}

.business-logo--featured {
	width: 104px;
	height: 104px;
	bottom: -50px;
	padding: 13px;
	font-size: 30px;
}

.business-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform var(--rc-motion);
}

.business-card-shell:hover .business-logo img {
	transform: scale(1.02);
}

.directory-results {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.directory-business-card {
	min-height: 390px;
}

.business-card-body {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
	padding: 58px 22px 16px;
}

.directory-business-card h3,
.business-feature h3 {
	display: -webkit-box;
	overflow: hidden;
	min-height: 56px;
	margin: 8px 0 6px;
	color: var(--rc-blue);
	font-size: 24px;
	line-height: 1.18;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.business-feature h3 {
	font-size: 29px;
}

.business-badge {
	align-self: flex-start;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(245, 23, 107, 0.08);
	color: var(--rc-pink);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.business-owner {
	overflow: hidden;
	margin: 0;
	color: var(--rc-blue);
	font-size: 14px;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.business-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	max-height: 66px;
	margin: 13px 0 11px;
	overflow: hidden;
}

.business-card-tags span {
	padding: 6px 9px 7px;
	border-radius: 999px;
	background: rgba(52, 56, 119, 0.07);
	color: var(--rc-blue);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.business-summary {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 14px;
	color: var(--rc-muted);
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.business-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding: 14px 18px;
	border-top: 1px solid rgba(52, 56, 119, 0.08);
	background: linear-gradient(135deg, rgba(52, 56, 119, 0.035), rgba(245, 23, 107, 0.035));
}

.business-card-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 11px;
	border: 1px solid rgba(52, 56, 119, 0.18);
	border-radius: 999px;
	background: var(--rc-white);
	color: var(--rc-blue);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	transition: transform var(--rc-motion), background var(--rc-motion), color var(--rc-motion), border-color var(--rc-motion);
}

.business-card-actions a:first-child {
	border-color: var(--rc-yellow);
	background: var(--rc-yellow);
	color: var(--rc-navy);
}

.business-card-actions a:hover,
.business-card-actions a:focus-visible {
	border-color: var(--rc-blue);
	background: var(--rc-blue);
	color: var(--rc-white);
	transform: translateY(-1px);
	outline: none;
}

.directory-empty-state {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 42px rgba(52, 56, 119, 0.08);
}

@media (min-width: 1400px) {
	.directory-results {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1280px) {
	.directory-results {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.rc-site-nav,
	.rc-site-header__actions .rc-button {
		display: none;
	}

	.rc-menu-toggle {
		display: inline-flex;
	}
}

@media (max-width: 991px) {
	:root {
		--rc-section: 58px;
	}

	.rc-section-heading,
	.rc-hero__inner,
	.rc-story-grid,
	.rc-project-grid,
	.rc-leader-grid,
	.rc-business-grid,
	.home-hero__grid,
	.home-story__grid,
	.home-feature__grid,
	.home-leadership__grid,
	.home-cta__panel,
	.rc-app-block,
	.rc-footer__grid,
	.rc-final-cta__body,
	.rc-page-hero__inner,
	.rc-filter-form,
	.rc-filter-form--single,
	.rc-project-list-grid,
	.rc-team-grid,
	.rc-business-directory,
	.rc-detail-hero__grid,
	.rc-detail-grid,
	.rc-share-panel,
	.rc-timeline,
	.rc-profile-grid {
		grid-template-columns: 1fr;
	}

	.rc-page-hero,
	.rc-detail-hero {
		padding-top: 104px;
	}

	.rc-detail-side-card {
		position: static;
	}

	.project-detail-page .project-impact-strip {
		margin-top: 0;
	}

	.project-share-note {
		position: static;
	}

	.rc-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rc-related-grid,
	.rc-related-card {
		grid-template-columns: 1fr;
	}

	.leadership-intro__grid,
	.leadership-president,
	.leadership-core,
	.leadership-directors,
	.project-archive-hero__grid,
	.project-feature,
	.project-story-card,
	.project-story-card:nth-child(even),
	.directory-hero__grid,
	.business-feature-row,
	.project-impact-strip,
	.project-article-layout,
	.impact-hero__content,
	.impact-filter__top,
	.impact-featured {
		grid-template-columns: 1fr;
	}

	.impact-hero {
		min-height: auto;
		padding-top: 112px;
	}

	.impact-hero__content {
		min-height: auto;
	}

	.impact-magazine-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 150px;
	}

	.impact-tile,
	.impact-tile:nth-child(3n + 1),
	.impact-tile:nth-child(4n + 2),
	.impact-tile:nth-last-child(1):nth-child(odd),
	.impact-tile:nth-last-child(2):nth-child(odd),
	.impact-tile:nth-last-child(2):nth-child(odd) + .impact-tile {
		grid-column: span 1;
		grid-row: span 3;
	}

	.project-story-card:nth-child(even) .project-story-card__image {
		order: 0;
	}

	.leadership-president__photo,
	.project-feature__image {
		min-height: 360px;
	}

	.directory-results {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.directory-discovery {
		margin-top: -46px;
	}

	.business-feature {
		min-height: 390px;
	}

	.business-feature-row {
		gap: 18px;
	}

	.rc-related-card__image {
		min-height: 240px;
	}

	.rc-section-heading {
		display: block;
	}

	.rc-section-heading p {
		margin-top: 12px;
	}

	.rc-hero {
		min-height: auto;
		padding: 118px 0 76px;
	}

	.rc-hero__inner {
		min-height: auto;
	}

	.rc-impact-ribbon__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero {
		min-height: auto;
		padding: 92px 0 62px;
	}

	.home-hero__grid {
		min-height: auto;
		align-items: stretch;
	}

	.home-hero-card {
		max-width: 540px;
	}

	.home-trust__grid,
	.home-business__grid,
	.home-leadership__cards,
	.home-supporting-projects,
	.upcoming-activities__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.upcoming-card:first-child {
		grid-column: span 2;
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.upcoming-card:first-child .upcoming-card__poster {
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 8.5;
	}

	.home-story__media {
		min-height: 420px;
	}

	.home-feature__visual {
		min-height: 330px;
	}

	.home-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 190px;
	}

	.home-gallery-item,
	.home-gallery-item:nth-child(1),
	.home-gallery-item:nth-child(4),
	.home-gallery-item:nth-child(6) {
		grid-column: span 1;
		grid-row: span 1;
	}

	.home-cta__panel {
		align-items: start;
	}

	.rc-impact-item:nth-child(2) {
		border-right: 0;
	}

	.rc-story-media {
		min-height: 480px;
	}

	.rc-gallery-mosaic {
		grid-template-columns: 1fr;
	}

	.rc-gallery-item,
	.rc-gallery-item:nth-child(1),
	.rc-gallery-item:nth-child(4),
	.rc-gallery-item:nth-child(2),
	.rc-gallery-item:nth-child(3),
	.rc-gallery-item:nth-child(5),
	.rc-gallery-item:nth-child(6) {
		grid-column: auto;
		min-height: 260px;
	}

	.rc-footer__bottom {
		display: block;
	}
}

@media (max-width: 575px) {
	.page-wrapper {
		padding-top: 70px;
	}

	.rc-container {
		width: min(100% - 28px, var(--rc-container));
	}

	.rc-site-header__inner {
		min-height: 70px;
	}

	.rc-site-logo img {
		max-height: 46px;
	}

	.rc-back-to-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}

	.rc-actions,
	.rc-app-links,
	.rc-detail-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.rc-button {
		width: 100%;
	}

	.rc-page-hero {
		padding: 96px 0 36px;
	}

	.rc-detail-hero--project {
		padding-bottom: 42px;
	}

	.leadership-intro,
	.project-archive-hero,
	.directory-hero {
		padding: 96px 0 34px;
	}

	.directory-hero {
		padding-bottom: 70px;
	}

	.directory-trust-row span {
		font-size: 12px;
	}

	.directory-discovery {
		margin-top: -58px;
		padding: 15px;
	}

	.directory-category-nav a {
		min-height: 36px;
		padding: 8px 11px;
		font-size: 12px;
	}

	.directory-results-head {
		display: block;
	}

	.directory-results-count {
		margin-top: 12px;
	}

	.rc-list-section {
		padding: 38px 0 54px;
	}

	.rc-project-card__body,
	.rc-team-card__body,
	.rc-directory-card,
	.rc-detail-panel,
	.rc-detail-side-card,
	.rc-share-panel,
	.rc-member-business-card {
		padding: 22px;
	}

	.rc-card-meta,
	.rc-member-business-card {
		grid-template-columns: 1fr;
	}

	.rc-member-business-card__logo {
		width: 100%;
		height: 190px;
	}

	.rc-gallery-grid {
		grid-template-columns: 1fr;
	}

	.member-profile-frame__caption {
		left: 18px;
		right: 18px;
		bottom: 18px;
	}

	.leadership-president__body,
	.project-feature__body,
	.project-story-card__body {
		padding: 24px;
	}

	.leadership-context,
	.leadership-core-card,
	.business-feature,
	.impact-stats,
	.impact-facts,
	.impact-magazine-grid,
	.directory-results {
		grid-template-columns: 1fr;
	}

	.impact-hero {
		padding: 96px 0 62px;
	}

	.impact-hero h1 {
		font-size: 44px;
	}

	.impact-stat {
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.impact-filter {
		margin-top: -28px;
	}

	.impact-featured__image,
	.impact-featured {
		min-height: 390px;
	}

	.impact-featured__body,
	.impact-tile__body {
		padding: 24px;
	}

	.impact-tile,
	.impact-tile:nth-child(3n + 1),
	.impact-tile:nth-child(4n + 2),
	.impact-tile:nth-last-child(1):nth-child(odd),
	.impact-tile:nth-last-child(2):nth-child(odd),
	.impact-tile:nth-last-child(2):nth-child(odd) + .impact-tile {
		grid-row: auto;
		min-height: 360px;
	}

	.leadership-core-card__photo {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 0.78;
	}

	.business-logo,
	.business-logo--featured {
		width: 82px;
		height: 82px;
		bottom: -40px;
		left: 18px;
	}

	.business-feature {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	.business-cover,
	.business-feature .business-cover {
		min-height: 128px;
	}

	.business-cover__watermark,
	.business-feature .business-cover__watermark {
		font-size: 72px;
	}

	.business-card-body {
		padding: 54px 18px 14px;
	}

	.directory-business-card h3,
	.business-feature h3 {
		min-height: auto;
		font-size: 23px;
	}

	.business-card-actions {
		padding: 12px 14px;
	}

	.business-card-actions a {
		min-height: 38px;
	}

	.rc-impact-ribbon__grid {
		grid-template-columns: 1fr;
	}

	.home-hero {
		padding: 76px 0 54px;
	}

	.home-hero__content h1 {
		font-size: 40px;
	}

	.home-hero-card__image {
		height: 190px;
	}

	.home-hero-card__body,
	.home-feature__content,
	.home-cta__panel {
		padding: 26px;
	}

	.home-trust__grid,
	.home-business__grid,
	.home-leadership__cards,
	.home-supporting-projects,
	.home-gallery__grid,
	.upcoming-activities__grid {
		grid-template-columns: 1fr;
	}

	.upcoming-activities--home {
		padding-top: 42px;
		padding-bottom: 42px;
	}

	.upcoming-card:first-child {
		grid-column: auto;
	}

	.upcoming-card:first-child .upcoming-card__poster,
	.upcoming-card__poster {
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.upcoming-card__body,
	.upcoming-card:first-child .upcoming-card__body {
		min-height: 0;
		padding: 22px;
	}

	.upcoming-card__meta,
	.upcoming-card:not(:first-child) .upcoming-card__meta {
		grid-template-columns: 1fr;
	}

	.home-trust__item {
		border-right: 0;
		border-bottom: 1px solid var(--rc-border);
	}

	.home-trust__item:last-child {
		border-bottom: 0;
	}

	.home-story {
		padding-top: 38px;
	}

	.home-story__media {
		min-height: 350px;
	}

	.home-story__photo--main {
		width: 88%;
		height: 275px;
	}

	.home-story__photo--side {
		width: 56%;
		height: 160px;
	}

	.home-story__year {
		left: 18px;
		bottom: 22px;
		max-width: 230px;
	}

	.home-feature__visual {
		min-height: 260px;
	}

	.home-support-card {
		grid-template-columns: 1fr;
	}

	.home-support-card__image {
		height: 200px;
	}

	.home-leader-card__image {
		height: 260px;
	}

	.home-gallery__grid {
		grid-auto-rows: auto;
	}

	.home-gallery-item,
	.home-gallery-item:nth-child(1),
	.home-gallery-item:nth-child(4),
	.home-gallery-item:nth-child(6) {
		min-height: 230px;
	}

	.rc-impact-item {
		border-right: 0;
		border-bottom: 1px solid var(--rc-border);
	}

	.rc-story-media {
		min-height: 410px;
	}

	.rc-story-media__photo--main {
		width: 88%;
		height: 330px;
	}

	.rc-story-media__photo--small {
		width: 56%;
		height: 190px;
	}

	.rc-story-note {
		left: 18px;
		bottom: 22px;
		max-width: 230px;
	}

	.rc-join-cta,
	.rc-app-block__body,
	.rc-final-cta__body {
		padding: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.business-card-shell,
	.directory-category-nav a,
	.business-card-actions a,
	.business-logo img {
		transition: none;
	}

	.business-card-shell:hover,
	.directory-category-nav a:hover,
	.directory-category-nav a:focus-visible,
	.business-card-actions a:hover,
	.business-card-actions a:focus-visible {
		transform: none;
	}
}
