﻿:root {
	--bg: #0a0908;
	--bg-elevated: #141210;
	--bg-soft: #1c1814;
	--ink: #f4ebe1;
	--ink-muted: #c4b5a4;
	--accent: #F57E20;
	--accent-hot: #FF9438;
	--accent-deep: #D46510;
	--line: rgba(244, 235, 225, 0.12);
	--shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	--radius: 4px;
	--font-body: "Cairo", "Segoe UI", Tahoma, sans-serif;
	--font-display: "Amiri", "Cairo", serif;
	--container: min(1180px, calc(100% - 2.5rem));
	--header-h: 78px;
	--section-space: clamp(4.5rem, 8vw, 6.5rem);
	--section-head-gap: 2.75rem;
	--nav-bp: 1100px;
	--logo-width: auto;
	--logo-max-width: 180px;
	--logo-height: 56px;
	--logo-hero-width: auto;
	--logo-hero-max-width: 220px;
	--logo-hero-height: 120px;
	--logo-footer-width: auto;
	--logo-footer-max-width: 160px;
	--logo-footer-height: 72px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--ink);
	background:
		radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245, 126, 32, 0.18), transparent 55%),
		radial-gradient(ellipse 40% 30% at 100% 40%, rgba(245, 126, 32, 0.06), transparent 50%),
		var(--bg);
	overflow-x: hidden;
}

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

a {
	color: var(--accent-hot);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: #fff;
}

.container {
	width: var(--container);
	margin-inline: auto;
}

.container.narrow {
	width: min(780px, calc(100% - 2.5rem));
}

.skip-link {
	position: absolute;
	inset-inline-start: 1rem;
	top: -100px;
	background: var(--accent);
	color: #fff;
	padding: 0.6rem 1rem;
	z-index: 1000;
}

.skip-link:focus {
	top: 1rem;
}

/* Header */
.site-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 130;
	height: var(--header-h);
	background: rgba(10, 9, 8, 0.72);
	border-bottom: 1px solid transparent;
	transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	padding-top: env(safe-area-inset-top, 0);
}

.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	backdrop-filter: blur(14px);
	pointer-events: none;
	z-index: -1;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	background: rgba(10, 9, 8, 0.94);
	border-bottom-color: var(--line);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
	width: var(--container);
	margin-inline: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-branding .custom-logo-link img,
.site-branding .custom-logo {
	width: var(--logo-width);
	max-width: var(--logo-max-width);
	height: var(--logo-height);
	object-fit: contain;
	border-radius: 50%;
}

.site-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--ink);
}

.primary-nav .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

/* Desktop: align with header row */
@media (min-width: 1101px) {
	.primary-nav {
		position: fixed;
		top: 0;
		inset-inline: 0;
		height: var(--header-h);
		z-index: 131;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: var(--container);
		margin-inline: auto;
		padding-inline-start: 10rem;
		pointer-events: none;
		background: transparent;
		transform: none !important;
		visibility: visible !important;
	}

	.admin-bar .primary-nav {
		top: 32px;
	}

	.primary-nav .menu {
		pointer-events: auto;
		justify-content: flex-end;
		margin-inline-start: auto;
	}
}

.primary-nav a {
	color: var(--ink-muted);
	font-size: 0.95rem;
	font-weight: 600;
	position: relative;
}

.primary-nav a::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: -4px;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.25s ease;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
	transform: scaleX(1);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	background: transparent;
	border-radius: var(--radius);
	cursor: pointer;
	padding: 10px;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--ink);
	margin: 6px 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero — full bleed */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 3rem) 4.5rem;
	background:
		linear-gradient(180deg, rgba(10, 9, 8, 0.35) 0%, rgba(10, 9, 8, 0.55) 45%, rgba(10, 9, 8, 0.96) 100%),
		var(--hero-image, none) center / cover no-repeat,
		radial-gradient(circle at 30% 40%, #3a2415, #0a0908 70%);
	overflow: hidden;
	box-sizing: border-box;
}

.hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.28) 55%, rgba(10, 9, 8, 0.55) 100%),
		radial-gradient(ellipse at center, transparent 20%, rgba(10, 9, 8, 0.5) 100%);
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	max-width: 560px;
	margin: 0;
	margin-inline-end: auto;
	padding: 0;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transform: translateY(-4vh);
}

.hero__welcome {
	margin: 0 0 0.55rem;
	font-family: var(--font-body);
	font-size: clamp(0.92rem, 1.6vw, 1.05rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--accent-hot);
	align-self: stretch;
}

.hero__brand {
	margin: 0 0 1.65rem;
	font-family: var(--font-display);
	font-size: clamp(2.75rem, 7vw, 4.6rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--ink);
	letter-spacing: 0.01em;
	text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
	align-self: stretch;
}

.hero__text {
	margin: 0 0 1.5rem;
	color: var(--ink-muted);
	font-size: clamp(1rem, 1.5vw, 1.08rem);
	line-height: 1.85;
	max-width: 36rem;
	align-self: stretch;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: flex-start;
}

.hero__scroll {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 22px;
	height: 36px;
	border: 1px solid var(--line);
	border-radius: 20px;
	opacity: 0.7;
}

.hero__scroll span {
	display: block;
	width: 4px;
	height: 8px;
	margin: 8px auto 0;
	background: var(--accent);
	border-radius: 2px;
	animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
	0%, 100% { transform: translateY(0); opacity: 1; }
	50% { transform: translateY(10px); opacity: 0.3; }
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.6rem;
	border-radius: var(--radius);
	font-weight: 700;
	font-size: 0.98rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--primary {
	background: linear-gradient(135deg, var(--accent-hot), var(--accent-deep));
	color: #fff;
	box-shadow: 0 10px 30px rgba(245, 126, 32, 0.35);
}

.btn--primary:hover {
	color: #fff;
}

.btn--ghost {
	border-color: var(--line);
	color: var(--ink);
	background: rgba(255, 255, 255, 0.03);
}

/* Sections — shared vertical rhythm */
.section {
	padding-block: var(--section-space);
	padding-inline: 0;
	position: relative;
}

.section-head {
	max-width: 720px;
	margin-bottom: var(--section-head-gap);
}

.section-head--center {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
}

.section-head--center h2 {
	position: relative;
	display: inline-block;
	padding-bottom: 0.85rem;
	margin-bottom: 1.15rem;
}

.section-head--center h2::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	margin-inline: auto;
	width: 64px;
	height: 3px;
	border-radius: 2px;
	background: var(--accent);
}

.section-head--center p {
	margin-inline: auto;
	line-height: 1.9;
	max-width: 46rem;
}

.section-head h2 {
	margin: 0 0 0.85rem;
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 4vw, 2.75rem);
	line-height: 1.25;
	color: var(--ink);
}

.section-head p,
.section-head__sub {
	margin: 0;
	color: var(--ink-muted);
	font-size: 1.05rem;
}

.section-head__sub {
	color: var(--accent-hot);
	font-weight: 600;
}

.empty-note {
	color: var(--ink-muted);
	border: 1px dashed var(--line);
	padding: 1.5rem;
	text-align: center;
}

/* Initiatives section */
.initiatives {
	background:
		linear-gradient(180deg, transparent, rgba(245, 126, 32, 0.05) 35%, transparent),
		var(--bg);
}

.initiatives .section-head--center {
	margin-bottom: var(--section-head-gap);
}

.initiatives-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.initiative-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-elevated);
	border: 1px solid var(--line);
	overflow: hidden;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.initiative-card:hover {
	border-color: rgba(245, 126, 32, 0.45);
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.initiative-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--bg-soft);
}

.initiative-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.initiative-card:hover .initiative-card__media img {
	transform: scale(1.05);
}

.initiative-card__body {
	padding: 1.25rem 1.35rem 1.5rem;
	flex: 1;
}

.initiative-card__body h3 {
	margin: 0 0 0.55rem;
	font-size: 1.15rem;
	line-height: 1.4;
}

.initiative-card__body h3 a {
	color: var(--ink);
}

.initiative-card__body h3 a:hover {
	color: var(--accent-hot);
}

.initiative-card__body p {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.95rem;
}

/* Lab — developed layout (brand, not clone) */
.lab {
	background:
		radial-gradient(ellipse 70% 50% at 80% 20%, rgba(245, 126, 32, 0.12), transparent 55%),
		var(--bg);
}

.lab .section-head {
	margin-bottom: var(--section-head-gap);
}

.lab__intro {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.5rem, 3vw, 2.75rem);
	align-items: start;
	margin-bottom: var(--section-head-gap);
	padding-bottom: var(--section-head-gap);
	border-bottom: 1px solid var(--line);
}

.lab__tagline {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.6vw, 2.1rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--ink);
	position: relative;
	padding-bottom: 1rem;
}

.lab__tagline::after {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	margin-top: 0.85rem;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--accent-hot), var(--accent-deep));
}

.lab__body {
	max-width: 38rem;
}

.lab__body p {
	margin: 0;
	color: #cbbcad;
	font-size: clamp(0.92rem, 1.7vw, 1.02rem);
	line-height: 2;
	letter-spacing: 0.01em;
}

.lab__skills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.lab-skill {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.85rem;
	padding: 1.35rem 1rem 1.5rem;
	background: rgba(20, 18, 16, 0.55);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	position: relative;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.lab-skill:hover {
	border-color: rgba(245, 126, 32, 0.45);
	transform: translateY(-3px);
}

.lab-skill__num {
	position: absolute;
	top: 0.75rem;
	inset-inline-start: 0.85rem;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--accent);
	opacity: 0.7;
}

.lab-skill__ring {
	position: relative;
	width: 88px;
	height: 88px;
	margin-top: 0.35rem;
}

.lab-skill__ring svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
	display: block;
}

.lab-skill__track,
.lab-skill__progress {
	fill: none;
	stroke-width: 7;
}

.lab-skill__track {
	stroke: rgba(244, 235, 225, 0.1);
}

.lab-skill__progress {
	stroke-linecap: round;
	transition: stroke-dashoffset 1.1s ease;
}

.lab-skill--a .lab-skill__progress { stroke: var(--accent-hot); }
.lab-skill--b .lab-skill__progress { stroke: #ff9a4a; }
.lab-skill--c .lab-skill__progress { stroke: var(--accent); }
.lab-skill--d .lab-skill__progress { stroke: #c8783a; }

.lab-skill__value {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ink);
	pointer-events: none;
}

.lab-skill__copy h3 {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.35;
}

.lab-skill__copy p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--ink-muted);
	line-height: 1.55;
}

@media (max-width: 980px) {
	.lab__intro {
		grid-template-columns: 1fr;
		gap: 1.15rem;
	}

	.lab__tagline {
		font-size: clamp(1.05rem, 4.4vw, 1.45rem);
		white-space: nowrap;
		letter-spacing: -0.01em;
	}

	.lab__body {
		max-width: none;
	}

	.lab__body p {
		font-size: 0.9rem;
		line-height: 1.95;
	}

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

@media (max-width: 560px) {
	.lab__tagline {
		font-size: clamp(0.95rem, 4.2vw, 1.2rem);
	}

	.lab__body p {
		font-size: 0.88rem;
		line-height: 1.9;
	}

	.lab__skills {
		grid-template-columns: 1fr;
	}
}

/* Board */
.board {
	background: var(--bg-elevated);
}

.board-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.25rem;
}

.board-card {
	text-align: center;
}

.board-card__photo {
	width: 100%;
	aspect-ratio: 1;
	margin-bottom: 1rem;
	overflow: hidden;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	position: relative;
}

.board-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
	transition: filter 0.35s ease, transform 0.35s ease;
}

.board-card:hover .board-card__photo img {
	filter: grayscale(0%);
	transform: scale(1.04);
}

.board-card__placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-size: 3rem;
	color: var(--accent);
	background: var(--bg-soft);
}

.board-card h3 {
	margin: 0 0 0.25rem;
	font-size: 1.05rem;
}

.board-card__role {
	margin: 0 0 0.5rem;
	color: var(--accent-hot);
	font-size: 0.9rem;
	font-weight: 600;
}

.board-card__bio {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.85rem;
	line-height: 1.65;
}

/* Testimonials */
.testimonials {
	background:
		radial-gradient(ellipse at 20% 0%, rgba(245, 126, 32, 0.1), transparent 45%),
		var(--bg);
}

.testimonials-track {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.testimonial-card {
	margin: 0;
	padding: 1.75rem;
	background: var(--bg-elevated);
	border: 1px solid var(--line);
	border-top: 3px solid var(--accent);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.testimonial-card__quote {
	color: var(--ink-muted);
	font-size: 0.98rem;
	flex: 1;
}

.testimonial-card__quote p {
	margin: 0 0 0.75rem;
}

.testimonial-card__quote p:last-child {
	margin-bottom: 0;
}

.testimonial-card__person {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.testimonial-card__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(245, 126, 32, 0.4);
}

.testimonial-card cite {
	display: block;
	font-style: normal;
	font-weight: 700;
	color: var(--ink);
}

.testimonial-card span {
	display: block;
	font-size: 0.85rem;
	color: var(--ink-muted);
}

/* Pages */
.page-shell {
	padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.page-title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	margin: 0 0 1.5rem;
}

.entry-content {
	color: var(--ink-muted);
}

.entry-content h2,
.entry-content h3 {
	color: var(--ink);
}

.single-thumb {
	margin-bottom: 1.5rem;
	overflow: hidden;
	border: 1px solid var(--line);
}

.single-thumb img {
	width: 100%;
}

.meta-role {
	color: var(--accent-hot);
	font-weight: 600;
	margin-top: -0.75rem;
}

/* Footer */
.site-footer {
	background: #070605;
	border-top: 1px solid var(--line);
	padding-top: 3.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	gap: 2rem;
	padding-bottom: 2.5rem;
}

.footer-brand .custom-logo {
	width: var(--logo-footer-width);
	max-width: var(--logo-footer-max-width);
	height: var(--logo-footer-height);
	object-fit: contain;
	border-radius: 50%;
	margin-bottom: 1rem;
}

.footer-report {
	color: var(--ink-muted);
	font-size: 0.92rem;
}

.footer-contact h3,
.footer-social h3 {
	margin: 0 0 0.85rem;
	font-size: 1.05rem;
	color: var(--ink);
}

.footer-contact p {
	margin: 0 0 0.75rem;
	color: var(--ink-muted);
	font-size: 0.95rem;
}

.social-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.social-links__item {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.social-links__item svg {
	width: 20px;
	height: 20px;
	display: block;
}

.social-links__item:hover {
	transform: translateY(-3px) scale(1.05);
	filter: brightness(1.08);
	color: #fff;
}

.social-links__item--facebook {
	background: #1877f2;
	box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}

.social-links__item--twitter {
	background: #000;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.social-links__item--instagram {
	background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
	box-shadow: 0 8px 20px rgba(214, 36, 159, 0.35);
}

.social-links__item--linkedin {
	background: #0a66c2;
	box-shadow: 0 8px 20px rgba(10, 102, 194, 0.35);
}

.footer-bottom {
	border-top: 1px solid var(--line);
	padding: 1.1rem 0;
}

.footer-bottom p {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.88rem;
	text-align: center;
}

.elementor-page-shell {
	padding-top: 0;
	padding-bottom: var(--section-space);
	min-height: 40vh;
	background: var(--bg);
}

.elementor-page-shell .elementor-widget-text-editor,
.elementor-page-shell .elementor-widget-text-editor p,
.elementor-page-shell .elementor-widget-text-editor li {
	color: var(--ink-muted);
}

.elementor-page-shell .elementor-widget-text-editor a {
	color: var(--accent-hot);
}

.msrh-contact-box {
	padding: 1.5rem;
	border: 1px solid var(--line);
	background: var(--bg-elevated);
}

.msrh-contact-box p {
	margin: 0 0 0.5rem;
	color: var(--ink-muted);
}

/* Elementor editor-friendly overrides */
.elementor-section {
	direction: rtl;
}

/* --- Initiatives single-row mouse scroll --- */
.msrh-initiatives-scroll {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0;
	direction: rtl;
	overflow: hidden;
}

.msrh-hscroll-viewport {
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: auto;
	scroll-snap-type: x proximity;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	overscroll-behavior-x: contain;
	overscroll-behavior-y: auto;
	touch-action: pan-x pan-y;
	mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

.msrh-hscroll-viewport.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
	user-select: none;
}

.msrh-hscroll-viewport::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.msrh-hscroll-track {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	width: max-content;
	padding: 0.5rem 0.75rem 1rem;
}

.msrh-hscroll-track .msrh-init-card {
	flex: 0 0 auto;
	width: 230px;
	max-width: 230px;
	min-height: 340px;
	scroll-snap-align: start;
}

.msrh-hscroll-btn {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	font-size: 1.4rem;
	line-height: 1;
	display: grid;
	place-items: center;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	z-index: 2;
}

.msrh-hscroll-btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	transform: scale(1.05);
}

.msrh-init-card {
	text-align: center;
	padding: 0.5rem 0.5rem 0.85rem;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: transparent;
	border: 0;
}

.msrh-init-card__media {
	display: block;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 0.85rem;
	border: 3px solid rgba(255, 255, 255, 0.12);
	background: #1c1814;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	flex-shrink: 0;
}

.msrh-init-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.msrh-init-card:hover .msrh-init-card__media {
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 14px 32px rgba(245, 126, 32, 0.28);
}

.msrh-init-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--font-display);
	font-size: 2.5rem;
	color: var(--accent);
	background: #1c1814;
}

.msrh-init-card__title {
	margin: 0 0 0.55rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--ink);
	max-width: 220px;
	min-height: 2.7em;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex-shrink: 0;
}

.msrh-init-card__title a {
	color: inherit;
}

.msrh-init-card__title a:hover {
	color: var(--accent-hot);
}

.msrh-init-card__line {
	display: block;
	width: 44px;
	height: 3px;
	border-radius: 2px;
	margin: 0 auto 0.7rem;
	background: var(--accent);
	flex-shrink: 0;
}

.msrh-init-card__body {
	width: 100%;
	max-width: 220px;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: calc(1.65em * 3);
}

.msrh-init-card__text {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.65;
	color: var(--ink-muted);
	width: 100%;
	min-height: calc(1.65em * 3);
	max-height: calc(1.65em * 3);
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.msrh-initiatives-home__cta {
	display: flex;
	justify-content: center;
	margin: 1.35rem 0 0.25rem;
}

.msrh-initiatives-home__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 11rem;
	padding: 0.72rem 1.6rem;
	border: 1px solid rgba(245, 126, 32, 0.55);
	background: rgba(245, 126, 32, 0.14);
	color: #fff;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.msrh-initiatives-home__btn:hover,
.msrh-initiatives-home__btn:focus-visible {
	background: rgba(245, 126, 32, 0.32);
	border-color: var(--accent-hot);
	transform: translateY(-1px);
}

@media (max-width: 700px) {
	.msrh-initiatives-scroll {
		display: flex;
		overflow: visible;
		gap: 0.35rem;
	}

	.msrh-hscroll-viewport {
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x pan-y;
		overscroll-behavior-x: contain;
		overscroll-behavior-y: auto;
		mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
		-webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
		cursor: grab;
	}

	.msrh-hscroll-track {
		display: flex;
		flex-direction: row;
		width: max-content;
		gap: 1rem;
		padding: 0.35rem 0.5rem 0.85rem;
	}

	.msrh-hscroll-track .msrh-init-card {
		width: 200px;
		max-width: 200px;
		min-height: 300px;
		scroll-snap-align: center;
	}

	.msrh-hscroll-btn {
		display: grid !important;
		width: 36px;
		height: 36px;
		font-size: 1.15rem;
	}

	.msrh-init-card__media {
		width: 100px;
		height: 100px;
	}

	.msrh-init-card__title {
		font-size: 0.92rem;
		min-height: 2.5em;
	}

	.msrh-init-card__text {
		font-size: 0.8rem;
		-webkit-line-clamp: 3;
	}
}

@media (max-width: 420px) {
	.msrh-hscroll-track .msrh-init-card {
		width: 180px;
		max-width: 180px;
	}
}

/* Shared nav (testimonials slider) */
.msrh-initiatives-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.75rem;
}

.msrh-initiatives-prev,
.msrh-initiatives-next {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: #fff;
	color: #1a1a1a;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	display: grid;
	place-items: center;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.msrh-initiatives-prev:hover,
.msrh-initiatives-next:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
	transform: scale(1.05);
}

.msrh-initiatives-pagination {
	display: flex;
	gap: 0.45rem;
	align-items: center;
}

.msrh-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.msrh-dot.is-active {
	width: 26px;
	border-radius: 8px;
	background: var(--accent);
}

/* Testimonials still use page flip */
.msrh-slider-viewport {
	overflow: hidden;
	position: relative;
	min-height: 340px;
}

.msrh-slider-track {
	position: relative;
}

.msrh-slider-page {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-40px) scale(0.98);
	transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
	pointer-events: none;
}

.msrh-slider-page.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: none;
	pointer-events: auto;
	z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
	.msrh-marquee-track {
		animation: none !important;
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;
		max-width: 1100px;
		margin-inline: auto;
	}
	.msrh-marquee-row {
		mask-image: none;
		-webkit-mask-image: none;
	}
	.msrh-slider-page {
		transition: none;
	}
}

/* ——— Report ribbon (brand: black + orange) ——— */
.report-ribbon.section {
	padding-block: 0;
}

.report-ribbon {
	position: relative;
	margin: 0;
	overflow: hidden;
	isolation: isolate;
	background:
		center / cover no-repeat scroll var(--report-image, none),
		var(--bg);
}

.report-ribbon__overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: var(--section-space);
	padding-inline: 1.5rem;
	background:
		linear-gradient(
			105deg,
			rgba(10, 9, 8, 0.88) 0%,
			rgba(28, 14, 6, 0.78) 45%,
			rgba(10, 9, 8, 0.9) 100%
		),
		linear-gradient(0deg, rgba(245, 126, 32, 0.28), rgba(245, 126, 32, 0.18));
}

.report-ribbon__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.1rem;
	width: 100%;
	max-width: 800px;
	text-align: center;
}

.report-ribbon__title {
	margin: 0;
	padding: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.report-ribbon__accent {
	display: block;
	width: 72px;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--accent-hot), var(--accent-deep));
	box-shadow: 0 0 18px rgba(245, 126, 32, 0.55);
}

.report-ribbon__btn {
	display: inline-block;
	margin: 0.35rem 0 0;
	padding: 0.85rem 2.1rem;
	border: 1px solid rgba(255, 148, 56, 0.45);
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--accent-hot), var(--accent-deep));
	color: #fff !important;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.04em;
	box-shadow: 0 12px 32px rgba(245, 126, 32, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.report-ribbon__btn:hover,
.report-ribbon__btn:focus-visible {
	color: #fff !important;
	filter: brightness(1.08);
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(245, 126, 32, 0.45);
}

@media (max-width: 767px) {
	:root {
		--section-space: 3.5rem;
		--section-head-gap: 2rem;
	}
}

/* ——— Board members — 4 visible + autoplay carousel ——— */
.msrh-board-carousel {
	direction: rtl;
}

.msrh-board-carousel__viewport {
	overflow: hidden;
	width: 100%;
}

.msrh-board-carousel__track {
	display: flex;
	flex-direction: row;
	gap: 0;
	will-change: transform;
	transition: transform 0.65s ease;
}

.msrh-board-carousel__track .msrh-board-card {
	flex: 0 0 25%;
	width: 25%;
	max-width: none;
	padding: 0.35rem 0.65rem;
	box-sizing: border-box;
}

.msrh-board-card {
	text-align: center;
}

.msrh-board-card__photo {
	width: 140px;
	height: 140px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
	background: var(--bg-soft);
	border: 3px solid rgba(245, 126, 32, 0.35);
}

.msrh-board-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: grayscale(100%);
	transition: filter 0.35s ease, transform 0.35s ease;
}

.msrh-board-card:hover .msrh-board-card__photo img {
	filter: grayscale(0%);
	transform: scale(1.04);
}

.msrh-board-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--font-display);
	font-size: 2.5rem;
	color: var(--accent);
	background: #1c1814;
}

.msrh-board-card__name {
	margin: 0 0 0.55rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.35;
}

.msrh-board-card__line {
	display: block;
	width: 48px;
	height: 2px;
	margin: 0 auto 0.65rem;
	background: var(--accent);
}

.msrh-board-card__role {
	margin: 0;
	font-size: 0.88rem;
	color: var(--ink-muted);
	font-weight: 500;
}

.msrh-board-nav {
	margin-top: 1.5rem;
	gap: 1.25rem;
}

.msrh-board-carousel__prev,
.msrh-board-carousel__next {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	display: grid;
	place-items: center;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.msrh-board-carousel__prev:hover,
.msrh-board-carousel__next:hover {
	background: var(--accent);
	border-color: var(--accent);
	transform: scale(1.05);
}

@media (max-width: 900px) {
	.msrh-board-carousel__track .msrh-board-card {
		flex-basis: 50%;
		width: 50%;
		max-width: 50%;
	}
}

@media (max-width: 700px) {
	.msrh-board-carousel__track .msrh-board-card {
		flex-basis: 50%;
		width: 50%;
		max-width: 50%;
		padding: 0.25rem 0.35rem;
	}

	.msrh-board-card__photo {
		width: min(110px, 28vw);
		height: min(110px, 28vw);
	}

	.msrh-board-card__name {
		font-size: 0.88rem;
	}

	.msrh-board-card__role {
		font-size: 0.75rem;
	}
}

@media (max-width: 520px) {
	.msrh-board-carousel__track .msrh-board-card {
		padding: 0.25rem 0.4rem;
	}
}

/* ——— Testimonials — continuous carousel ——— */
.msrh-testi-carousel {
	direction: rtl;
}

.msrh-testi-carousel__viewport {
	overflow: hidden;
	width: 100%;
}

.msrh-testi-carousel__track {
	display: flex;
	flex-direction: row;
	will-change: transform;
	transition: transform 0.65s ease;
	align-items: stretch;
}

.msrh-testi-carousel__track .msrh-testi-slide {
	flex: 0 0 33.333%;
	padding: 0 0.65rem;
	box-sizing: border-box;
	height: auto;
	display: flex;
}

.msrh-testi-card {
	margin: 0;
	padding: 1.75rem 1.6rem 1.5rem;
	width: 100%;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-top: 3px solid var(--accent);
	border-radius: 10px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-height: 280px;
	position: relative;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.msrh-testi-card:hover {
	border-color: rgba(245, 126, 32, 0.35);
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(245, 126, 32, 0.15);
}

.msrh-testi-card__mark {
	position: absolute;
	top: 0.55rem;
	inset-inline-start: 1.1rem;
	font-family: var(--font-display);
	font-size: 3.5rem;
	line-height: 1;
	color: var(--accent);
	opacity: 0.28;
	pointer-events: none;
}

.msrh-testi-card__quote {
	position: relative;
	z-index: 1;
	flex: 1;
	color: #555;
	font-size: 0.92rem;
	line-height: 1.8;
	padding-top: 0.35rem;
}

.msrh-testi-card__quote p {
	margin: 0;
}

.msrh-testi-card__more {
	display: inline-block;
	margin-top: 0.55rem;
	padding: 0;
	border: 0;
	background: none;
	color: var(--accent);
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 700;
	cursor: pointer;
}

.msrh-testi-card__more:hover {
	color: var(--accent-deep);
}

.msrh-testi-card__person {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding-top: 0.95rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	margin-top: auto;
}

.msrh-testi-card__avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(245, 126, 32, 0.4);
	flex-shrink: 0;
}

.msrh-testi-card__avatar--placeholder {
	display: grid;
	place-items: center;
	background: #1c1814;
	color: var(--accent);
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
}

.msrh-testi-card__meta cite {
	display: block;
	font-style: normal;
	font-weight: 700;
	color: #1a1a1a;
	font-size: 0.98rem;
}

.msrh-testi-card__meta span {
	display: block;
	font-size: 0.8rem;
	color: #777;
	line-height: 1.45;
	margin-top: 0.15rem;
}

.msrh-testimonials-nav {
	margin-top: 1.5rem;
	gap: 1.25rem;
}

.msrh-testi-carousel__prev,
.msrh-testi-carousel__next {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	display: grid;
	place-items: center;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.msrh-testi-carousel__prev:hover,
.msrh-testi-carousel__next:hover {
	background: var(--accent);
	border-color: var(--accent);
	transform: scale(1.05);
}

/* ——— CTA ribbon (report / contact) ——— */
.cta-ribbon {
	padding-block: var(--section-space);
	background:
		radial-gradient(ellipse 80% 120% at 100% 50%, rgba(245, 126, 32, 0.22), transparent 55%),
		linear-gradient(105deg, #141210 0%, #1c140e 48%, #120e0b 100%);
	border-block: 1px solid rgba(245, 126, 32, 0.22);
	overflow: hidden;
}

.cta-ribbon__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.5rem, 4vw, 3rem);
	flex-wrap: wrap;
}

.cta-ribbon__copy {
	flex: 1 1 320px;
	max-width: 48rem;
}

.cta-ribbon__eyebrow {
	margin: 0 0 0.65rem;
	color: var(--accent-hot);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.cta-ribbon__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.8vw, 1.95rem);
	font-weight: 700;
	line-height: 1.55;
	color: #fff;
}

.cta-ribbon__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	flex: 0 0 auto;
	padding: 0.95rem 1.7rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 148, 56, 0.45);
	background: linear-gradient(135deg, var(--accent-hot), var(--accent-deep));
	color: #fff !important;
	font-weight: 700;
	font-size: 1.02rem;
	text-decoration: none;
	box-shadow: 0 14px 36px rgba(245, 126, 32, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta-ribbon__btn:hover,
.cta-ribbon__btn:focus-visible {
	color: #fff !important;
	filter: brightness(1.06);
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(245, 126, 32, 0.45);
}

.cta-ribbon__btn-arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}

.cta-ribbon__btn:hover .cta-ribbon__btn-arrow {
	transform: translateX(-4px);
}

@media (max-width: 700px) {
	.cta-ribbon {
		padding-block: 2.25rem;
	}

	.cta-ribbon__inner {
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		text-align: center;
		gap: 1.1rem;
	}

	.cta-ribbon__copy {
		flex: 0 0 auto;
		max-width: none;
	}

	.cta-ribbon__eyebrow {
		margin-bottom: 0.45rem;
	}

	.cta-ribbon__btn {
		justify-content: center;
		align-self: center;
		width: min(100%, 280px);
	}
}


/* ——— About page (نحن) ——— */
.about-page {
	background: var(--bg);
}

/* ——— Shared page hero ——— */
.page-hero,
.about-hero {
	position: relative;
	min-height: clamp(420px, 68vh, 620px);
	display: flex;
	align-items: flex-end;
	padding: calc(var(--header-h) + 3rem) 0 4rem;
	background:
		center / cover no-repeat var(--page-hero-image, var(--about-hero, none)),
		var(--bg-soft);
	overflow: hidden;
}

.page-hero__veil,
.about-hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 9, 8, 0.35) 0%, rgba(10, 9, 8, 0.88) 72%, var(--bg) 100%),
		linear-gradient(90deg, rgba(10, 9, 8, 0.55), transparent 55%);
}

.page-hero__content,
.about-hero__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.page-hero__eyebrow,
.about-hero__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--accent-hot);
	font-weight: 700;
	font-size: 0.95rem;
}

.page-hero h1,
.about-hero h1 {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 6vw, 4rem);
	line-height: 1.15;
	color: #fff;
}

.page-hero__lead,
.about-hero__lead {
	margin: 0 0 1.5rem;
	color: var(--ink-muted);
	font-size: 1.08rem;
	line-height: 1.9;
}

.page-hero__chips,
.about-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.page-hero__chips span,
.about-hero__chips span {
	padding: 0.45rem 0.9rem;
	border: 1px solid rgba(245, 126, 32, 0.35);
	background: rgba(245, 126, 32, 0.12);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 999px;
}

@media (max-width: 700px) {
	.page-hero__chips,
	.about-hero__chips {
		flex-wrap: nowrap;
		gap: 0.35rem;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 0.15rem;
	}

	.page-hero__chips::-webkit-scrollbar,
	.about-hero__chips::-webkit-scrollbar {
		display: none;
	}

	.page-hero__chips span,
	.about-hero__chips span {
		flex: 1 1 0;
		min-width: 0;
		padding: 0.4rem 0.45rem;
		font-size: clamp(0.62rem, 2.7vw, 0.78rem);
		line-height: 1.35;
		text-align: center;
		white-space: nowrap;
	}
}

.about-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 2.25rem);
	align-items: stretch;
}

.about-story__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: start;
}

.about-intro__copy h2,
.about-story__copy h2 {
	margin: 0 0 1.1rem;
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.about-intro__copy p,
.about-story__copy p {
	margin: 0 0 1rem;
	color: var(--ink-muted);
	line-height: 1.95;
	font-size: 0.98rem;
}

.about-intro__media {
	width: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.about-intro__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid var(--line);
	margin: 0;
}

.about-milestones {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: grid;
	gap: 0.75rem;
}

.about-milestones li {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr);
	gap: 0.85rem;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	padding: 0.95rem 1.1rem;
	background: rgba(20, 18, 16, 0.7);
	border: 1px solid var(--line);
	border-inline-start: 3px solid var(--accent);
}

.about-milestones strong {
	color: var(--accent-hot);
	font-family: var(--font-display);
	font-size: 1.2rem;
}

.about-milestones span {
	color: var(--ink-muted);
	font-size: 0.92rem;
	line-height: 1.5;
}

.about-story__visual {
	min-height: 360px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--line);
	background:
		linear-gradient(160deg, rgba(10, 9, 8, 0.55), rgba(10, 9, 8, 0.82)),
		center / cover no-repeat var(--about-accent, none),
		var(--bg-soft);
	display: grid;
	place-items: center;
	padding: 2rem;
}

.about-story__visual-inner {
	text-align: center;
}

.about-story__logo {
	max-width: 220px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	object-fit: contain;
}

.about-story__logo-fallback {
	display: block;
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--accent-hot);
	margin-bottom: 0.75rem;
}

.about-story__visual-inner p {
	margin: 0;
	color: var(--ink-muted);
}

.about-identity {
	background:
		radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 126, 32, 0.1), transparent 55%),
		var(--bg);
}

.about-identity__hero {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 1.25rem;
	margin-bottom: 1.75rem;
}

.about-id-card {
	padding: clamp(1.4rem, 2.5vw, 1.85rem);
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
	border-top: 4px solid var(--accent);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 140px;
}

.about-id-card__label {
	display: inline-block;
	align-self: flex-start;
	margin-bottom: 0.85rem;
	padding: 0.3rem 0.75rem;
	background: rgba(245, 126, 32, 0.12);
	color: var(--accent-deep);
	font-size: 0.82rem;
	font-weight: 700;
	border-radius: 999px;
}

.about-id-card h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	line-height: 1.7;
	color: #1a1a1a;
	font-weight: 700;
}

.about-id-card--vision h3 {
	font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.about-identity__tags {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.about-tags-block {
	padding: 1.5rem 1.4rem;
	background: rgba(20, 18, 16, 0.72);
	border: 1px solid var(--line);
	border-radius: 10px;
}

.about-tags-block h3 {
	margin: 0 0 1.1rem;
	font-size: 1.1rem;
	color: #fff;
}

.about-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.about-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.25rem;
	background: linear-gradient(135deg, var(--accent-hot), var(--accent-deep));
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(245, 126, 32, 0.28);
}

.about-tag--outline {
	background: transparent;
	border: 1px solid rgba(245, 126, 32, 0.55);
	color: var(--accent-hot);
	box-shadow: none;
}

.about-goals__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1.15rem;
}

.about-goal-card {
	grid-column: span 2;
	position: relative;
	padding: 1.6rem 1.4rem 1.45rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
	border-top: 3px solid var(--accent);
	min-height: 150px;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-goal-card:nth-child(4),
.about-goal-card:nth-child(5) {
	grid-column: span 3;
}

.about-goal-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(245, 126, 32, 0.16);
}

.about-goal-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(245, 126, 32, 0.12);
	color: var(--accent-deep);
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
}

.about-goal-card p {
	margin: 0;
	color: #444;
	font-size: 1rem;
	line-height: 1.8;
	font-weight: 600;
}

.about-purposes__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
}

.about-purpose-card {
	padding: 1.5rem 1.35rem;
	background: #fff;
	border-radius: 10px;
	border-top: 3px solid var(--accent);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
	min-height: 150px;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-purpose-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(245, 126, 32, 0.14);
}

.about-purpose-card span {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(245, 126, 32, 0.12);
	color: var(--accent-deep);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
}

.about-purpose-card p {
	margin: 0;
	color: #444;
	font-size: 0.98rem;
	line-height: 1.75;
	font-weight: 600;
}

.about-firsts {
	background:
		linear-gradient(135deg, rgba(245, 126, 32, 0.16), transparent 45%),
		var(--bg-elevated);
	border-block: 1px solid rgba(245, 126, 32, 0.2);
}

.about-firsts__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: start;
}

.about-firsts__eyebrow {
	margin: 0 0 0.65rem;
	color: var(--accent-hot);
	font-weight: 700;
	font-size: 0.9rem;
}

.about-firsts__intro h2 {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3.5vw, 2.4rem);
	line-height: 1.4;
	color: #fff;
}

.about-firsts__intro p:last-child {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.9;
	font-size: 1rem;
}

.about-firsts__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}

.about-firsts__list li {
	display: grid;
	grid-template-columns: 3.2rem minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
	padding: 1.15rem 0;
	border-bottom: 1px solid var(--line);
}

.about-firsts__list li:first-child {
	padding-top: 0;
}

.about-firsts__list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.about-firsts__list span {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--accent-hot);
	line-height: 1.2;
}

.about-firsts__list p {
	margin: 0;
	color: var(--ink);
	line-height: 1.75;
	font-size: 0.98rem;
}

.msrh-future-carousel {
	direction: rtl;
}

.msrh-future-carousel__viewport {
	overflow: hidden;
	width: 100%;
}

.msrh-future-carousel__track {
	display: flex;
	flex-direction: row;
	will-change: transform;
	transition: transform 0.65s ease;
	align-items: stretch;
}

.msrh-future-slide {
	flex: 0 0 33.333%;
	padding: 0 0.6rem;
	box-sizing: border-box;
	display: flex;
}

.msrh-future-card {
	width: 100%;
	margin: 0;
	padding: 1.5rem 1.35rem;
	background: #fff;
	border-radius: 10px;
	border-top: 3px solid var(--accent);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	min-height: 160px;
}

.msrh-future-card__num {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(245, 126, 32, 0.12);
	color: var(--accent-deep);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
}

.msrh-future-card p {
	margin: 0;
	color: #444;
	font-size: 1rem;
	line-height: 1.75;
	font-weight: 600;
}

.msrh-future-nav {
	margin-top: 1.35rem;
	gap: 1.1rem;
}

.msrh-future-carousel__prev,
.msrh-future-carousel__next {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	display: grid;
	place-items: center;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.msrh-future-carousel__prev:hover,
.msrh-future-carousel__next:hover {
	background: var(--accent);
	border-color: var(--accent);
	transform: scale(1.05);
}

.about-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.about-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 520px;
}

.about-table th,
.about-table td {
	padding: 0.85rem 1rem;
	text-align: right;
	border-bottom: 1px solid var(--line);
}

.about-table th {
	background: rgba(245, 126, 32, 0.12);
	color: #fff;
	font-weight: 700;
}

.about-table td {
	color: var(--ink-muted);
	background: rgba(20, 18, 16, 0.45);
}

.about-table tr:nth-child(even) td {
	background: rgba(20, 18, 16, 0.7);
}

.about-table td:first-child,
.about-table td:last-child {
	color: var(--accent-hot);
	font-weight: 700;
	white-space: nowrap;
}

.msrh-initlist-carousel {
	direction: rtl;
}

.msrh-initlist-carousel__viewport {
	overflow: hidden;
	width: 100%;
}

.msrh-initlist-carousel__track {
	display: flex;
	flex-direction: row;
	will-change: transform;
	transition: transform 0.65s ease;
	align-items: stretch;
}

.msrh-initlist-slide {
	flex: 0 0 33.333%;
	padding: 0 0.6rem;
	box-sizing: border-box;
	display: flex;
}

.msrh-initlist-card {
	width: 100%;
	margin: 0;
	padding: 1.45rem 1.25rem;
	background: #fff;
	border-radius: 10px;
	border-top: 3px solid var(--accent);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	min-height: 150px;
}

.msrh-initlist-card__num {
	display: inline-block;
	color: var(--accent);
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
}

.msrh-initlist-card h3 {
	margin: 0;
	color: #1a1a1a;
	font-size: 1.05rem;
	line-height: 1.45;
}

.msrh-initlist-card p {
	margin: 0;
	color: #777;
	font-size: 0.9rem;
	font-weight: 600;
}

.msrh-initlist-nav {
	margin-top: 1.35rem;
	gap: 1.1rem;
}

.msrh-initlist-carousel__prev,
.msrh-initlist-carousel__next {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	display: grid;
	place-items: center;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.msrh-initlist-carousel__prev:hover,
.msrh-initlist-carousel__next:hover {
	background: var(--accent);
	border-color: var(--accent);
	transform: scale(1.05);
}

.about-logo-band {
	background:
		radial-gradient(ellipse 60% 80% at 20% 50%, rgba(245, 126, 32, 0.18), transparent 55%),
		var(--bg-elevated);
}

.about-logo-band__inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.about-logo-band img {
	max-width: 180px;
	border-radius: 50%;
	object-fit: contain;
}

.about-logo-band h2 {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.about-logo-band p {
	margin: 0;
	color: var(--ink-muted);
	max-width: 36rem;
}

@media (max-width: 900px) {
	.about-intro__grid,
	.about-story__grid,
	.about-firsts__inner,
	.about-identity__hero,
	.about-identity__tags {
		grid-template-columns: 1fr;
	}

	/* البداية والتحول: الصورة فوق والعنوان تحتها على الموبايل */
	.about-intro__media {
		order: -1;
	}

	.about-logo-band__inner {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 1.25rem;
	}

	.about-logo-band img {
		margin-inline: auto;
		max-width: 150px;
	}

	.about-logo-band h2,
	.about-logo-band p {
		margin-inline: auto;
		text-align: center;
	}

	.about-logo-band p {
		max-width: 28rem;
	}

	.about-goals__grid,
	.about-purposes__cards {
		grid-template-columns: 1fr 1fr;
	}

	.about-goal-card,
	.about-goal-card:nth-child(4),
	.about-goal-card:nth-child(5) {
		grid-column: span 1;
	}
}

@media (max-width: 560px) {
	.about-goals__grid,
	.about-purposes__cards {
		grid-template-columns: 1fr;
	}

	.about-hero__chips span {
		border-radius: 4px;
	}
}

/* Motion */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.hero__scroll span { animation: none; }
}

/* Responsive */
@media (max-width: 1280px) {
	.primary-nav .menu {
		gap: 0.25rem 0.75rem;
	}

	.primary-nav a {
		font-size: 0.86rem;
	}
}

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

	.nav-toggle {
		display: block;
		position: relative;
		z-index: 130;
	}

	.primary-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		max-height: 100dvh;
		margin: 0;
		padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.5rem) 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
		background: #0b0a09;
		z-index: 120;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
		pointer-events: none;
		transition: transform 0.3s ease, visibility 0.3s ease;
		display: block;
	}

	.admin-bar .primary-nav {
		top: 32px;
		height: calc(100% - 32px);
		padding-top: calc(var(--header-h) + 1.5rem);
	}

	.primary-nav.is-open {
		transform: translate3d(0, 0, 0);
		visibility: visible;
		pointer-events: auto;
	}

	.primary-nav .menu {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0.15rem;
		width: 100%;
		max-width: 28rem;
		margin: 0;
		padding: 0;
		pointer-events: auto;
	}

	.primary-nav .menu > li {
		display: block;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.primary-nav a {
		display: block;
		width: 100%;
		padding: 0.85rem 0.2rem;
		font-size: 1.15rem;
		font-weight: 700;
		color: #f4ebe1 !important;
		text-align: right;
	}

	.primary-nav a::after {
		display: none;
	}

	.primary-nav a:hover,
	.primary-nav .current-menu-item > a {
		color: var(--accent-hot) !important;
	}

	body.nav-open {
		overflow: hidden;
	}

	body.nav-open .site-header {
		background: #0b0a09;
	}

	.nav-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.nav-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}
	.nav-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}

@media (max-width: 900px) {
	.initiatives-grid,
	.testimonials-track,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.site-branding .custom-logo-link img,
	.site-branding .custom-logo {
		height: auto;
		max-height: 46px;
		max-width: min(140px, var(--logo-max-width, 140px));
	}

	.footer-grid {
		gap: 1.75rem;
	}

	.hero__content {
		transform: none;
		width: 100%;
		max-width: 100%;
	}

	.hero__welcome {
		font-size: 0.9rem;
	}

	.hero__text {
		font-size: 0.95rem;
		margin-bottom: 1.15rem;
	}

	.btn {
		padding: 0.75rem 1.25rem;
		font-size: 0.92rem;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .primary-nav {
		top: 46px;
		height: calc(100% - 46px);
	}
}

@media (max-width: 640px) {
	:root {
		--container: min(1180px, calc(100% - 1.5rem));
		--section-space: clamp(3rem, 10vw, 4.5rem);
		--header-h: 70px;
	}

	.hero {
		align-items: flex-end;
		min-height: 100svh;
		padding: calc(var(--header-h) + 1.1rem) 1.1rem 3rem;
	}

	.hero__content {
		transform: none;
	}

	.hero__brand {
		font-size: clamp(2.2rem, 10vw, 3.2rem);
	}

	.hero__welcome {
		margin-bottom: 0.4rem;
	}

	.hero__actions {
		width: 100%;
	}

	.hero__actions .btn {
		flex: 1 1 auto;
		min-width: min(100%, 140px);
	}

	.hero__scroll {
		display: none;
	}

	.board-grid {
		grid-template-columns: 1fr;
	}

	.page-hero,
	.about-hero {
		min-height: clamp(320px, 58vh, 480px);
		padding: calc(var(--header-h) + 2rem) 0 2.5rem;
	}

	.page-hero h1,
	.about-hero h1 {
		font-size: clamp(1.85rem, 8vw, 2.6rem);
	}
}

@media (max-height: 700px) and (max-width: 900px) {
	.hero__brand {
		font-size: clamp(2rem, 8vw, 2.8rem);
	}

	.hero__text {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.hero__scroll {
		display: none;
	}
}

/* ——— How Theater page (مسرح كيف) ——— */
.elementor-widget-msrhkaef_page_hero > .elementor-widget-container,
.elementor-widget-msrhkaef_how_theater > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.how-page {
	background: var(--bg);
}

.how-kicker {
	margin: 0 0 0.65rem;
	color: var(--accent-hot);
	font-weight: 700;
	font-size: 0.92rem;
}

.how-intro__grid,
.how-theory__grid,
.how-observe__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: center;
}

.how-observe__grid {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.how-intro__copy h2,
.how-theory__copy h2,
.how-observe__copy h2,
.how-service__inner h2,
.how-cite__text h2 {
	margin: 0 0 1.1rem;
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3.4vw, 2.35rem);
	line-height: 1.25;
}

.how-intro__copy p,
.how-theory__copy p,
.how-observe__copy p,
.how-service__inner p,
.how-zones__essay p,
.how-cite__text p,
.how-rich p {
	margin: 0 0 1rem;
	color: var(--ink-muted);
	line-height: 1.95;
	font-size: 0.98rem;
}

.how-rich p:last-child {
	margin-bottom: 0;
}

.how-rich strong,
.how-intro__copy strong,
.how-cite__text strong {
	color: #fff;
	font-weight: 700;
}

.how-intro__book,
.how-theory__media,
.how-observe__media {
	margin: 0;
}

.how-intro__book img,
.how-theory__media img,
.how-observe__media img {
	display: block;
	width: 100%;
	border-radius: 10px;
	border: 1px solid var(--line);
	object-fit: cover;
}

.how-intro__book img {
	aspect-ratio: 16 / 9;
	background: #0a0908;
	object-fit: contain;
	padding: 0.5rem;
}

.how-theory__media img,
.how-observe__media img {
	aspect-ratio: 4 / 3;
}

.how-intro__book figcaption {
	margin-top: 0.75rem;
	color: var(--ink-muted);
	font-size: 0.88rem;
	text-align: center;
}

.how-pillars__grid,
.how-zones__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.how-pillar,
.how-zone {
	padding: 1.35rem 1.25rem;
	background: rgba(20, 18, 16, 0.72);
	border: 1px solid var(--line);
	border-inline-start: 3px solid var(--accent);
	animation: howRise 0.7s ease both;
	animation-delay: var(--d, 0s);
}

.how-pillar__num,
.how-zone__mark {
	display: inline-block;
	margin-bottom: 0.75rem;
	color: var(--accent-hot);
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
}

.how-pillar h3,
.how-zone h3 {
	margin: 0 0 0.65rem;
	font-size: 1.15rem;
	color: #fff;
}

.how-pillar p,
.how-zone p {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.8;
	font-size: 0.92rem;
}

.how-pull {
	margin: 0 0 1.25rem;
	padding: 1rem 1.15rem;
	border: 1px solid rgba(245, 126, 32, 0.35);
	background: rgba(245, 126, 32, 0.1);
}

.how-pull p {
	margin: 0 !important;
	color: #fff !important;
	font-family: var(--font-display);
	font-size: 1.15rem !important;
	line-height: 1.7 !important;
}

.how-service {
	padding-block: calc(var(--section-space) * 0.85);
}

.how-service__inner {
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
	padding: clamp(1.75rem, 4vw, 2.5rem);
	border: 1px solid rgba(245, 126, 32, 0.28);
	background:
		radial-gradient(ellipse at top, rgba(245, 126, 32, 0.14), transparent 55%),
		rgba(20, 18, 16, 0.75);
}

.how-zones__essay {
	margin-top: 1.75rem;
	padding: 1.35rem 1.5rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.55);
}

.how-cite__card {
	display: grid;
	grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: center;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.72);
}

.how-cite__cover {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center top;
	border-radius: 8px;
	border: 1px solid var(--line);
	background: #0a0908;
}

.how-cite__text .btn {
	margin-top: 0.75rem;
}

@keyframes howRise {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 900px) {
	.how-intro__grid,
	.how-theory__grid,
	.how-observe__grid,
	.how-cite__card {
		grid-template-columns: 1fr;
	}

	.how-pillars__grid,
	.how-zones__grid {
		grid-template-columns: 1fr;
	}

	/* الموبايل: الصورة فوق والنص تحت */
	.how-intro__book,
	.how-theory__media,
	.how-observe__media {
		order: -1;
	}
}

/* ——— Founder page ——— */
.founder-page {
	background: var(--bg);
}

.founder-hero {
	position: relative;
	min-height: clamp(480px, 72vh, 680px);
	display: flex;
	align-items: flex-end;
	padding: calc(var(--header-h) + 2.5rem) 0 3rem;
	background:
		center / cover no-repeat var(--founder-hero-image, none),
		var(--bg-soft);
	overflow: hidden;
}

.founder-hero__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(10, 9, 8, 0.4) 0%, rgba(10, 9, 8, 0.9) 70%, var(--bg) 100%),
		linear-gradient(90deg, rgba(10, 9, 8, 0.65), transparent 60%);
}

.founder-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(200px, 320px);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: end;
}

.founder-hero__eyebrow {
	margin: 0 0 0.65rem;
	color: var(--accent-hot);
	font-weight: 700;
}

.founder-hero h1 {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 6vw, 4rem);
	color: #fff;
	line-height: 1.15;
}

.founder-hero__lead {
	margin: 0 0 1.25rem;
	color: var(--ink-muted);
	font-size: 1.05rem;
	line-height: 1.9;
	max-width: 38rem;
}

.founder-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-bottom: 1.5rem;
}

.founder-hero__chips span {
	padding: 0.4rem 0.85rem;
	border: 1px solid rgba(245, 126, 32, 0.35);
	background: rgba(245, 126, 32, 0.12);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 999px;
}

.founder-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
}

.founder-hero__stats div {
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.55);
}

.founder-hero__stats strong {
	display: block;
	color: var(--accent-hot);
	font-family: var(--font-display);
	font-size: 1.25rem;
}

.founder-hero__stats span {
	color: var(--ink-muted);
	font-size: 0.82rem;
}

.founder-hero__portrait {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(245, 126, 32, 0.35);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.founder-hero__portrait img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: center top;
}

.founder-toc {
	position: sticky;
	top: var(--header-h);
	z-index: 40;
	background: rgba(10, 9, 8, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
}

.admin-bar .founder-toc {
	top: calc(var(--header-h) + 32px);
}

.founder-toc__inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.35rem;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0.65rem 1.1rem;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	scrollbar-width: thin;
	cursor: grab;
}

.founder-toc__inner:active {
	cursor: grabbing;
}

.founder-toc__inner::-webkit-scrollbar {
	height: 3px;
}

.founder-toc__inner::-webkit-scrollbar-thumb {
	background: rgba(245, 126, 32, 0.45);
	border-radius: 99px;
}

.founder-toc a {
	flex: 0 0 auto;
	padding: 0.45rem 0.9rem;
	color: var(--ink-muted);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	border-radius: 999px;
	border: 1px solid transparent;
	white-space: nowrap;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.founder-toc a:hover,
.founder-toc a.is-active {
	color: #fff;
	border-color: rgba(245, 126, 32, 0.4);
	background: rgba(245, 126, 32, 0.14);
}

.founder-section {
	scroll-margin-top: calc(var(--header-h) + 4.5rem);
}

.founder-split,
.founder-founding-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: stretch;
}

.founder-panel {
	padding: 1.5rem 1.4rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.65);
}

.founder-panel h2,
.founder-essay h2 {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.founder-panel p,
.founder-essay p {
	margin: 0 0 1rem;
	color: var(--ink-muted);
	line-height: 1.95;
	font-size: 0.98rem;
}

.founder-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.founder-checklist li {
	position: relative;
	padding-inline-start: 1.15rem;
	color: var(--ink-muted);
	line-height: 1.75;
	font-size: 0.95rem;
}

.founder-checklist li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 0.55rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--accent-hot);
}

.founder-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.founder-card {
	padding: 1.25rem;
	border: 1px solid var(--line);
	border-inline-start: 3px solid var(--accent);
	background: rgba(20, 18, 16, 0.7);
	animation: howRise 0.65s ease both;
	animation-delay: var(--d, 0s);
}

.founder-card__num {
	display: inline-block;
	margin-bottom: 0.65rem;
	color: var(--accent-hot);
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
}

.founder-card p {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.8;
	font-size: 0.92rem;
}

.founder-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
	counter-reset: ach;
}

.founder-timeline li {
	counter-increment: ach;
	position: relative;
	padding: 1rem 1.15rem 1rem 1.15rem;
	padding-inline-start: 3.5rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.55);
	color: var(--ink-muted);
	line-height: 1.8;
}

.founder-timeline li::before {
	content: counter(ach, decimal-leading-zero);
	position: absolute;
	inset-inline-start: 1rem;
	top: 1rem;
	color: var(--accent-hot);
	font-family: var(--font-display);
	font-weight: 700;
}

.founder-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.55);
	-webkit-overflow-scrolling: touch;
}

.founder-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}

.founder-table th,
.founder-table td {
	padding: 0.85rem 1rem;
	text-align: right;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
	font-size: 0.92rem;
}

.founder-table th {
	color: #fff;
	font-weight: 700;
	background: rgba(245, 126, 32, 0.1);
	white-space: nowrap;
}

.founder-table td {
	color: var(--ink-muted);
}

.founder-table tbody tr:hover td {
	background: rgba(245, 126, 32, 0.06);
}

.founder-table strong {
	color: #fff;
	font-weight: 600;
}

.founder-year {
	color: var(--accent-hot);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.founder-badge {
	display: inline-block;
	padding: 0.2rem 0.55rem;
	border: 1px solid rgba(245, 126, 32, 0.3);
	background: rgba(245, 126, 32, 0.1);
	color: #fff;
	font-size: 0.78rem;
	border-radius: 999px;
}

.founder-tabs__nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	scrollbar-width: thin;
	padding-bottom: 0.15rem;
	cursor: grab;
}

.founder-tabs__nav::-webkit-scrollbar {
	display: none;
}

.founder-tabs__nav button {
	appearance: none;
	cursor: pointer;
	flex: 0 0 auto;
	padding: 0.55rem 1rem;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--ink-muted);
	font: inherit;
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.founder-tabs__nav button.is-active,
.founder-tabs__nav button:hover {
	color: #fff;
	border-color: rgba(245, 126, 32, 0.45);
	background: rgba(245, 126, 32, 0.16);
}

.founder-tabs__panel[hidden] {
	display: none;
}

.founder-essay {
	max-width: 820px;
	margin-inline: auto;
}

.founder-essay__cta {
	margin-top: 1.5rem !important;
}

.founder-courses {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.founder-course {
	padding: 1.35rem 1.25rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.65);
}

.founder-course h3 {
	margin: 0 0 1rem;
	color: #fff;
	font-size: 1.1rem;
}

.founder-course ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.founder-course li {
	color: var(--ink-muted);
	font-size: 0.9rem;
	line-height: 1.65;
	padding-inline-start: 0.85rem;
	border-inline-start: 2px solid rgba(245, 126, 32, 0.45);
}

.founder-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.founder-steps li {
	display: grid;
	gap: 0.35rem;
	padding: 1.1rem 1.2rem;
	border: 1px solid var(--line);
	border-inline-start: 3px solid var(--accent);
	background: rgba(20, 18, 16, 0.65);
}

.founder-steps strong {
	color: var(--accent-hot);
	font-family: var(--font-display);
	font-size: 1.15rem;
}

.founder-steps span {
	color: var(--ink-muted);
	line-height: 1.8;
	font-size: 0.92rem;
}

@media (max-width: 980px) {
	.founder-hero__grid,
	.founder-split,
	.founder-founding-grid,
	.founder-cards,
	.founder-courses {
		grid-template-columns: 1fr;
	}

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

	.founder-hero__portrait {
		max-width: 280px;
		margin-inline: auto;
		order: -1;
	}

	.founder-table {
		min-width: 0;
	}

	.founder-table thead {
		display: none;
	}

	.founder-table,
	.founder-table tbody,
	.founder-table tr,
	.founder-table td {
		display: block;
		width: 100%;
	}

	.founder-table tr {
		padding: 0.85rem 1rem;
		border-bottom: 1px solid var(--line);
	}

	.founder-table tr:last-child {
		border-bottom: 0;
	}

	.founder-table td {
		padding: 0.35rem 0;
		border: 0;
		color: var(--ink-muted);
	}

	.founder-table td strong {
		color: #fff;
		font-size: 1rem;
	}

	.founder-table td::before {
		content: attr(data-label);
		display: block;
		color: var(--accent-hot);
		font-size: 0.72rem;
		font-weight: 700;
		margin-bottom: 0.2rem;
	}

	.founder-tabs__panel {
		display: block;
		min-height: 1px;
	}

	.founder-tabs__panel[hidden] {
		display: none !important;
	}

	.founder-table-wrap {
		overflow: visible;
	}
}

@media (max-width: 782px) {
	.admin-bar .founder-toc {
		top: calc(var(--header-h) + 46px);
	}
}

/* ——— Plays grid ——— */
.plays-page-intro {
	padding: var(--section-space) 0 0;
}

.plays-page-intro .container {
	max-width: 720px;
}

.plays-page-intro h2 {
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

.plays-page-intro p {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.9;
	font-size: 1.02rem;
}

.plays-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	padding: calc(var(--section-space) * 0.65) 0 var(--section-space);
}

.plays-grid--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.play-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.72);
	overflow: hidden;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.play-card:hover {
	border-color: rgba(245, 126, 32, 0.45);
	transform: translateY(-4px);
}

.play-card__media {
	display: block;
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #0a0908;
}

.play-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.45s ease;
}

.play-card:hover .play-card__media img {
	transform: scale(1.04);
}

.play-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--font-display);
	font-size: 3rem;
	color: var(--accent-hot);
}

.play-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.1rem 1.1rem 1.25rem;
	gap: 0.45rem;
}

.play-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.play-card__year,
.play-card__type {
	display: inline-flex;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
}

.play-card__year {
	color: var(--accent-hot);
	border: 1px solid rgba(245, 126, 32, 0.35);
	background: rgba(245, 126, 32, 0.12);
}

.play-card__type {
	color: #fff;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.04);
}

.play-card__title {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.35;
	font-family: var(--font-display);
}

.play-card__title a {
	color: #fff;
	text-decoration: none;
}

.play-card__title a:hover {
	color: var(--accent-hot);
}

.play-card__credit {
	margin: 0;
	color: var(--accent-hot);
	font-size: 0.82rem;
	font-weight: 600;
}

.play-card__excerpt {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.9rem;
	line-height: 1.75;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.play-card__more {
	margin-top: 0.5rem;
	color: var(--accent-hot);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
}

.play-card__more:hover {
	text-decoration: underline;
}

.elementor-widget-msrhkaef_plays_grid > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.elementor-widget-msrhkaef_plays_grid .plays-grid {
	width: min(1120px, calc(100% - 2.5rem));
	margin-inline: auto;
}

body.msrhkaef-theme .elementor-widget-heading .elementor-heading-title {
	font-family: var(--font-display);
}

body.msrhkaef-theme .elementor-widget-text-editor,
body.msrhkaef-theme .elementor-widget-text-editor p {
	color: var(--ink-muted);
	line-height: 1.9;
}

/* Plays intro — brand + centered */
.plays-intro-section .elementor-widget-wrap,
.plays-intro-section .elementor-element {
	text-align: center;
}

.plays-intro-section .elementor-heading-title,
.elementor-widget-heading.plays-intro-title .elementor-heading-title,
body.page-id-100 .elementor-top-section:nth-child(2) .elementor-heading-title {
	text-align: center !important;
	color: #fff !important;
	font-family: var(--font-display) !important;
	font-size: clamp(1.75rem, 3.4vw, 2.45rem) !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	margin: 0 auto 0.85rem !important;
}

body.page-id-100 .elementor-top-section:nth-child(2) .elementor-heading-title::after {
	content: '';
	display: block;
	width: 3rem;
	height: 3px;
	margin: 0.85rem auto 0;
	background: var(--accent-hot);
	border-radius: 2px;
}

body.page-id-100 .elementor-top-section:nth-child(2) .elementor-widget-text-editor,
body.page-id-100 .elementor-top-section:nth-child(2) .elementor-widget-text-editor p {
	text-align: center !important;
	max-width: 36rem;
	margin-inline: auto !important;
	color: var(--ink-muted) !important;
	font-size: 1.02rem !important;
	line-height: 1.9 !important;
}

body.page-id-100 .elementor-top-section:nth-child(2) {
	padding-top: clamp(2.5rem, 5vw, 4rem) !important;
	padding-bottom: 0.5rem !important;
}

@media (max-width: 1100px) {
	.plays-grid,
	.plays-grid--cols-4,
	.plays-grid--cols-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.plays-grid,
	.plays-grid--cols-4,
	.plays-grid--cols-3,
	.plays-grid--cols-2 {
		grid-template-columns: 1fr;
		max-width: none;
		margin-inline: 0;
	}
}

/* ——— Single play ——— */
.play-single {
	background: var(--bg);
}

.play-single__hero {
	padding-top: calc(var(--header-h) + 2.5rem);
}

.play-single__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(240px, 380px);
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: start;
}

.play-single__eyebrow {
	margin: 0 0 0.65rem;
	color: var(--accent-hot);
	font-weight: 700;
	font-size: 0.95rem;
}

.play-single__title {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	line-height: 1.15;
	color: #fff;
}

.play-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.85rem;
}

.play-single__credit {
	margin: 0 0 1rem;
	color: var(--accent-hot);
	font-weight: 700;
	font-size: 0.95rem;
}

.play-single__lead {
	margin: 0 0 1.25rem;
	color: #fff;
	font-size: 1.08rem;
	line-height: 1.85;
	padding: 1rem 1.15rem;
	border: 1px solid rgba(245, 126, 32, 0.28);
	background: rgba(245, 126, 32, 0.08);
}

.play-single__content {
	color: var(--ink-muted);
	font-size: 1rem;
	line-height: 1.95;
}

.play-single__content p {
	margin: 0 0 1rem;
}

.play-single__back {
	margin: 1.75rem 0 0;
}

.play-single__poster {
	margin: 0;
	border: 1px solid rgba(245, 126, 32, 0.35);
	border-radius: 10px;
	overflow: hidden;
	background: #0a0908;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	position: sticky;
	top: calc(var(--header-h) + 1.25rem);
}

.play-single__poster img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: center top;
}

.play-single__poster .play-card__placeholder {
	aspect-ratio: 3 / 4;
}

.play-single__related .plays-grid {
	padding-top: 0.5rem;
	width: 100%;
}

.play-single__related .section-head {
	margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
	.play-single__grid {
		grid-template-columns: 1fr;
	}

	.play-single__poster {
		order: -1;
		position: static;
		max-width: 360px;
		margin-inline: auto;
	}
}

/* Course single — landscape poster, same L/R layout */
.course-single__poster {
	max-width: none;
}

.course-single__poster img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center center;
}

.course-single__stats {
	margin: 0 0 1.25rem;
}

.course-single__more {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

@media (max-width: 900px) {
	.course-single .play-single__poster {
		max-width: 100%;
		width: 100%;
	}

	.course-single__more {
		grid-template-columns: 1fr;
	}
}

.play-single__grid--text-only {
	grid-template-columns: 1fr;
	max-width: 760px;
}

/* ——— Initiatives page grid ——— */
.elementor-widget-msrhkaef_initiatives_page > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.initiatives-page-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
	width: min(1120px, calc(100% - 2.5rem));
	margin: calc(var(--section-space) * 0.55) auto var(--section-space);
	align-items: stretch;
}

.init-page-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.25rem 1.2rem 1.35rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.72);
	animation: howRise 0.65s ease both;
	animation-delay: var(--d, 0s);
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.init-page-card:hover {
	border-color: color-mix(in srgb, var(--line) 40%, var(--line, #333));
	border-color: rgba(245, 126, 32, 0.4);
	transform: translateY(-3px);
}

.init-page-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.init-page-card__num {
	color: var(--accent-hot);
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1;
}

.init-page-card__year {
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	border: 1px solid rgba(245, 126, 32, 0.35);
	background: rgba(245, 126, 32, 0.12);
	color: var(--accent-hot);
	font-size: 0.75rem;
	font-weight: 700;
}

.init-page-card__media {
	display: block;
	margin: 0 0 0.9rem;
	overflow: hidden;
	border-radius: 6px;
	border: 1px solid var(--line);
	aspect-ratio: 16 / 10;
	background: #0a0908;
}

.init-page-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.init-page-card:hover .init-page-card__media img {
	transform: scale(1.04);
}

.init-page-card__title {
	margin: 0 0 0.65rem;
	font-size: 1.2rem;
	line-height: 1.35;
	font-family: var(--font-display);
}

.init-page-card__title a {
	color: #fff;
	text-decoration: none;
}

.init-page-card__title a:hover {
	color: var(--accent-hot);
}

.init-page-card__line {
	display: block;
	width: 2.5rem;
	height: 3px;
	margin-bottom: 0.85rem;
	background: var(--line, var(--accent-hot));
	background: var(--line);
}

.init-page-card__text {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.92rem;
	line-height: 1.8;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.init-page-card__more {
	margin-top: 1rem;
	color: var(--accent-hot);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
}

.init-page-card__more:hover {
	text-decoration: underline;
}

.initiatives-page-more-wrap {
	display: none;
	justify-content: center;
	width: min(1120px, calc(100% - 2.5rem));
	margin: 0 auto calc(var(--section-space) * 0.85);
}

.initiatives-page-more {
	appearance: none;
	border: 1px solid rgba(245, 126, 32, 0.55);
	background: rgba(245, 126, 32, 0.12);
	color: #fff;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	padding: 0.7rem 1.75rem;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.initiatives-page-more:hover:not(:disabled) {
	background: rgba(245, 126, 32, 0.28);
	border-color: var(--accent-hot);
}

.initiatives-page-more:disabled,
.initiatives-page-more.is-loading {
	opacity: 0.7;
	cursor: wait;
}

@media (max-width: 768px) {
	.initiatives-page-more-wrap:not([hidden]) {
		display: flex;
	}
}

@media (min-width: 769px) {
	.initiatives-page-more-wrap {
		display: none !important;
	}
}

body.page-id-102 .elementor-top-section:nth-child(2) .elementor-heading-title {
	text-align: center !important;
	color: #fff !important;
	font-family: var(--font-display) !important;
	font-size: clamp(1.75rem, 3.4vw, 2.45rem) !important;
}

body.page-id-102 .elementor-top-section:nth-child(2) .elementor-heading-title::after {
	content: '';
	display: block;
	width: 3rem;
	height: 3px;
	margin: 0.85rem auto 0;
	background: var(--accent-hot);
}

body.page-id-102 .elementor-top-section:nth-child(2) .elementor-widget-text-editor,
body.page-id-102 .elementor-top-section:nth-child(2) .elementor-widget-text-editor p {
	text-align: center !important;
	max-width: 38rem;
	margin-inline: auto !important;
	color: var(--ink-muted) !important;
	line-height: 1.9 !important;
}

@media (max-width: 980px) {
	.initiatives-page-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.initiatives-page-grid {
		grid-template-columns: 1fr;
		max-width: none;
	}
}

/* ——— Courses hub ——— */
.elementor-widget-msrhkaef_courses_hub > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.courses-hub__section {
	padding-top: calc(var(--section-space) * 0.85);
	padding-bottom: 0;
}

.courses-hub__section:last-child {
	padding-bottom: var(--section-space);
}

.courses-featured {
	display: grid;
	gap: 1.75rem;
}

.courses-featured__card {
	display: grid;
	grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.15fr);
	gap: 0;
	align-items: stretch;
	padding: 0;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.72);
	overflow: hidden;
	border-radius: 10px;
}

.courses-featured__card.is-flip {
	grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.95fr);
}

.courses-featured__card.is-flip .courses-featured__media {
	order: 2;
}

.courses-featured__media {
	display: block;
	position: relative;
	align-self: stretch;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #0a0908;
	min-height: 240px;
}

.courses-featured__media img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.courses-featured__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.1rem, 2.5vw, 1.75rem);
}

.courses-featured__body h3 {
	margin: 0 0 0.65rem;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 1.25;
}

.courses-featured__body h3 a {
	color: #fff;
	text-decoration: none;
}

.courses-featured__body h3 a:hover {
	color: var(--accent-hot);
}

.courses-featured__dates {
	margin: 0 0 0.75rem;
	color: var(--accent-hot);
	font-weight: 700;
	font-size: 0.92rem;
}

.courses-featured__text {
	margin: 0 0 1.1rem;
	color: var(--ink-muted);
	line-height: 1.85;
	font-size: 0.98rem;
}

.courses-featured__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.65rem;
	margin-bottom: 1.25rem;
}

.courses-featured__stats div {
	padding: 0.7rem 0.65rem;
	border: 1px solid var(--line);
	background: rgba(245, 126, 32, 0.08);
	text-align: center;
}

.courses-featured__stats strong {
	display: block;
	color: var(--accent-hot);
	font-family: var(--font-display);
	font-size: 1.35rem;
	line-height: 1.1;
}

.courses-featured__stats span {
	color: var(--ink-muted);
	font-size: 0.78rem;
}

.courses-featured__body .btn {
	align-self: flex-start;
}

.courses-schedule {
	margin-top: 0.5rem;
}

.courses-schedule__table a {
	color: #fff;
	text-decoration: none;
}

.courses-schedule__table a:hover {
	color: var(--accent-hot);
}

.courses-past-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.courses-past-card {
	padding: 1.25rem 1.2rem;
	border: 1px solid var(--line);
	border-inline-start: 3px solid var(--accent);
	background: rgba(20, 18, 16, 0.7);
	animation: howRise 0.65s ease both;
	animation-delay: var(--d, 0s);
	min-height: 100%;
}

.courses-past-card__num {
	display: inline-block;
	margin-bottom: 0.55rem;
	color: var(--accent-hot);
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
}

.courses-past-card h3 {
	margin: 0 0 0.55rem;
	font-size: 1.15rem;
	line-height: 1.35;
}

.courses-past-card h3 a {
	color: #fff;
	text-decoration: none;
}

.courses-past-card h3 a:hover {
	color: var(--accent-hot);
}

.courses-past-card p {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.8;
	font-size: 0.92rem;
}

@media (max-width: 900px) {
	.courses-featured__card,
	.courses-featured__card.is-flip {
		grid-template-columns: 1fr;
	}

	.courses-featured__card.is-flip .courses-featured__media {
		order: -1;
	}

	.courses-featured__media {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.courses-featured__stats {
		grid-template-columns: 1fr;
	}

	.courses-past-grid {
		grid-template-columns: 1fr;
	}
}

/* ——— Gallery page ——— */
.elementor-widget-msrhkaef_gallery_grid > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.msrh-gallery {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.65rem;
	width: min(1120px, calc(100% - 2.5rem));
	margin: calc(var(--section-space) * 0.55) auto var(--section-space);
}

.msrh-gallery__item {
	position: relative;
	margin: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #0a0908;
	border: 1px solid var(--line);
}

.msrh-gallery__link {
	position: absolute;
	inset: 0;
	display: block;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

/* Beat Elementor's `.elementor img { height: auto }` */
.elementor .msrh-gallery img,
.elementor .msrh-gallery__img,
.msrh-gallery img,
.msrh-gallery__img {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center !important;
	transition: transform 0.45s ease;
}

.msrh-gallery__caption {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 1;
	margin: 0;
	padding: 0.65rem 0.75rem;
	background: rgba(12, 10, 9, 0.82);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.45;
	text-align: center;
	transform: translateY(100%);
	transition: transform 0.35s ease;
	pointer-events: none;
}

.msrh-gallery__item:hover .msrh-gallery img,
.msrh-gallery__item:focus-within .msrh-gallery img,
.msrh-gallery__item:hover .msrh-gallery__img,
.msrh-gallery__item:focus-within .msrh-gallery__img {
	transform: scale(1.04);
}

.msrh-gallery__item:hover .msrh-gallery__caption,
.msrh-gallery__item:focus-within .msrh-gallery__caption {
	transform: translateY(0);
}

@media (max-width: 1100px) {
	.msrh-gallery {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.msrh-gallery {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.5rem;
	}
}

@media (max-width: 520px) {
	.msrh-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.msrh-gallery__caption {
		font-size: 0.75rem;
		padding: 0.5rem 0.55rem;
	}
}

@media (hover: none) {
	.msrh-gallery__caption {
		transform: translateY(0);
		background: rgba(12, 10, 9, 0.78);
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		padding: 0.4rem 0.5rem;
		font-size: 0.72rem;
	}
}

/* ——— Governance library ——— */
.elementor-widget-msrhkaef_gov_library > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.gov-lib {
	width: min(1120px, calc(100% - 2.5rem));
	margin: calc(var(--section-space) * 0.45) auto var(--section-space);
}

.gov-lib__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem 1.25rem;
	margin-bottom: 1rem;
}

.gov-lib__search {
	position: relative;
	flex: 1 1 280px;
	max-width: 420px;
}

.gov-lib__search-icon {
	position: absolute;
	top: 50%;
	inset-inline-start: 0.9rem;
	transform: translateY(-50%);
	color: var(--ink-muted);
	pointer-events: none;
}

.gov-lib__search input {
	width: 100%;
	padding-block: 0.85rem;
	padding-inline: 1rem 1rem;
	padding-inline-start: 2.65rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.85);
	color: #fff;
	font: inherit;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gov-lib__search input::placeholder {
	color: var(--ink-muted);
}

.gov-lib__search input:focus {
	border-color: rgba(245, 126, 32, 0.55);
	box-shadow: 0 0 0 3px rgba(245, 126, 32, 0.15);
}

.gov-lib__meta {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.9rem;
}

.gov-lib__meta span {
	color: var(--accent-hot);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.gov-lib__nav {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
	padding: 0.45rem 0.15rem 0.55rem;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	scrollbar-width: thin;
	position: sticky;
	top: var(--header-h);
	z-index: 5;
	background: linear-gradient(180deg, var(--bg) 75%, transparent);
	cursor: grab;
}

.gov-lib__nav:active {
	cursor: grabbing;
}

.gov-lib__nav::-webkit-scrollbar {
	height: 3px;
}

.gov-lib__nav::-webkit-scrollbar-thumb {
	background: rgba(245, 126, 32, 0.45);
	border-radius: 99px;
}

.admin-bar .gov-lib__nav {
	top: calc(var(--header-h) + 32px);
}

.gov-lib__chip {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.9rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.9);
	color: var(--ink-muted);
	font: inherit;
	font-size: 0.86rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.gov-lib__chip span {
	display: inline-grid;
	place-items: center;
	min-width: 1.35rem;
	height: 1.35rem;
	padding: 0 0.3rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	font-size: 0.72rem;
	font-weight: 700;
}

.gov-lib__chip:hover {
	color: #fff;
	border-color: rgba(245, 126, 32, 0.4);
}

.gov-lib__chip.is-active {
	color: #fff;
	border-color: rgba(245, 126, 32, 0.65);
	background: rgba(245, 126, 32, 0.14);
}

.gov-lib__chip.is-active span {
	background: rgba(245, 126, 32, 0.28);
	color: var(--accent-hot);
}

.gov-sec {
	margin-bottom: 1.75rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.55);
	animation: howRise 0.55s ease both;
	animation-delay: var(--d, 0s);
	scroll-margin-top: 120px;
}

.gov-sec__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.25rem 1rem;
	border-bottom: 1px solid var(--line);
	background:
		linear-gradient(90deg, rgba(245, 126, 32, 0.08), transparent 55%),
		rgba(12, 10, 9, 0.35);
}

.gov-sec__title {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
}

.gov-sec__desc {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.gov-sec__count {
	flex: 0 0 auto;
	display: inline-grid;
	place-items: center;
	min-width: 2.4rem;
	height: 2.4rem;
	padding: 0 0.45rem;
	border: 1px solid rgba(245, 126, 32, 0.35);
	background: rgba(245, 126, 32, 0.12);
	color: var(--accent-hot);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.gov-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gov-doc {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.9rem 1rem;
	padding: 0.95rem 1.15rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: background 0.2s ease;
}

.gov-doc:last-child {
	border-bottom: 0;
}

.gov-doc:hover {
	background: rgba(245, 126, 32, 0.06);
}

.gov-doc__icon {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.03);
	color: var(--accent-hot);
}

.gov-doc__body {
	min-width: 0;
}

.gov-doc__title {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.55;
	color: #f3f0ea;
}

.gov-doc__badge {
	display: inline-block;
	margin-top: 0.35rem;
	padding: 0.15rem 0.5rem;
	border: 1px solid rgba(245, 126, 32, 0.35);
	background: rgba(245, 126, 32, 0.12);
	color: var(--accent-hot);
	font-size: 0.72rem;
	font-weight: 700;
}

.gov-doc__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 0.9rem;
	border: 1px solid rgba(245, 126, 32, 0.55);
	background: rgba(245, 126, 32, 0.14);
	color: #fff !important;
	font-size: 0.82rem;
	font-weight: 700;
	white-space: nowrap;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gov-doc__btn:hover {
	background: rgba(245, 126, 32, 0.28);
	border-color: var(--accent-hot);
	transform: translateY(-1px);
}

.gov-doc__soon {
	color: var(--ink-muted);
	font-size: 0.82rem;
	font-weight: 600;
	opacity: 0.75;
}

.gov-lib__empty {
	margin: 2rem 0 0;
	padding: 1.5rem;
	border: 1px dashed var(--line);
	color: var(--ink-muted);
	text-align: center;
}

@media (max-width: 720px) {
	.gov-doc {
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"icon body"
			"action action";
	}

	.gov-doc__icon {
		grid-area: icon;
	}

	.gov-doc__body {
		grid-area: body;
	}

	.gov-doc__action {
		grid-area: action;
	}

	.gov-doc__btn,
	.gov-doc__soon {
		width: 100%;
		text-align: center;
	}
}

/* ——— Subscription page ——— */
.elementor-widget-msrhkaef_subscription_page > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.sub-page {
	width: min(860px, calc(100% - 2.5rem));
	margin: calc(var(--section-space) * 0.45) auto var(--section-space);
}

.sub-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 1.35rem;
}

.sub-fact {
	padding: 1rem 1.1rem;
	border: 1px solid var(--line);
	background:
		linear-gradient(135deg, rgba(245, 126, 32, 0.1), transparent 55%),
		rgba(20, 18, 16, 0.72);
}

.sub-fact__label {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--ink-muted);
	font-size: 0.82rem;
}

.sub-fact__value {
	display: block;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
}

.sub-intro {
	margin: 0 0 0.75rem;
	color: #f3f0ea;
	line-height: 1.85;
}

.sub-intro--muted {
	color: var(--ink-muted);
	margin-bottom: 1.35rem;
}

.sub-accords {
	display: grid;
	gap: 0.65rem;
	margin-bottom: 2rem;
}

.sub-accord {
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.55);
}

.sub-accord summary {
	cursor: pointer;
	list-style: none;
	padding: 0.95rem 1.1rem;
	font-weight: 700;
	color: #fff;
}

.sub-accord summary::-webkit-details-marker {
	display: none;
}

.sub-accord summary::after {
	content: '+';
	float: left;
	color: var(--accent-hot);
	font-weight: 800;
}

.sub-accord[open] summary::after {
	content: '−';
}

.sub-accord .sub-list,
.sub-accord .sub-note {
	margin: 0;
	padding: 0 1.1rem 1.1rem 1.1rem;
	color: var(--ink-muted);
	line-height: 1.85;
}

.sub-list {
	padding-inline-start: 1.35rem !important;
}

.sub-list li + li {
	margin-top: 0.45rem;
}

.sub-form {
	padding: 1.25rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.72);
}

.sub-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.4rem;
	margin-bottom: 1.25rem;
}

.sub-steps span {
	padding: 0.55rem 0.4rem;
	border: 1px solid var(--line);
	color: var(--ink-muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-align: center;
}

.sub-steps span.is-active {
	border-color: rgba(245, 126, 32, 0.65);
	background: rgba(245, 126, 32, 0.14);
	color: #fff;
}

.sub-steps span.is-done {
	border-color: rgba(245, 126, 32, 0.35);
	color: var(--accent-hot);
}

.sub-panel {
	margin-bottom: 1rem;
}

.sub-panel fieldset {
	margin: 0 0 1rem;
	padding: 0;
	border: 0;
}

.sub-panel legend {
	margin-bottom: 0.65rem;
	font-weight: 700;
	color: #fff;
}

.sub-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

.sub-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.sub-field--full {
	grid-column: 1 / -1;
}

.sub-field > span {
	font-size: 0.88rem;
	font-weight: 600;
	color: #f3f0ea;
}

.sub-field input,
.sub-field textarea,
.sub-field select {
	width: 100%;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--line);
	background: rgba(10, 9, 8, 0.75);
	color: #fff;
	font: inherit;
}

.sub-field input:focus,
.sub-field textarea:focus {
	outline: none;
	border-color: rgba(245, 126, 32, 0.55);
	box-shadow: 0 0 0 3px rgba(245, 126, 32, 0.12);
}

.sub-hint {
	color: var(--ink-muted);
	font-size: 0.78rem;
}

.req {
	color: var(--accent-hot);
}

.sub-radios {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.sub-radios--wrap {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sub-radio {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 0.8rem;
	border: 1px solid var(--line);
	background: rgba(10, 9, 8, 0.55);
	cursor: pointer;
	color: #f3f0ea;
	font-size: 0.9rem;
}

.sub-radio:has(input:checked) {
	border-color: rgba(245, 126, 32, 0.65);
	background: rgba(245, 126, 32, 0.12);
}

.sub-estimate {
	display: grid;
	gap: 0.45rem;
	margin: 1rem 0;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(245, 126, 32, 0.3);
	background: rgba(245, 126, 32, 0.08);
}

.sub-estimate > div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	color: var(--ink-muted);
	font-size: 0.9rem;
}

.sub-estimate .is-total {
	padding-top: 0.45rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	font-weight: 700;
}

.sub-check {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin: 1rem 0;
	color: #f3f0ea;
	line-height: 1.6;
	font-size: 0.9rem;
}

.sub-review {
	margin-top: 0.75rem;
	padding: 0.85rem 1rem;
	border: 1px dashed var(--line);
	color: var(--ink-muted);
	font-size: 0.9rem;
}

.sub-review ul {
	margin: 0.5rem 0 0;
	padding-inline-start: 1.1rem;
}

.sub-form__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: flex-start;
	margin-top: 1.1rem;
}

.sub-form__status {
	margin: 0.85rem 0 0;
	font-weight: 700;
}

.sub-form__status.is-ok {
	color: #7dcea0;
}

.sub-form__status.is-err {
	color: #f5a3a3;
}

.sub-success {
	padding: 1.5rem 1.25rem;
	border: 1px solid rgba(245, 126, 32, 0.45);
	background: rgba(245, 126, 32, 0.1);
	text-align: center;
}

.sub-success h3 {
	margin: 0 0 0.55rem;
	color: #fff;
}

.sub-success p {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.8;
}

@media (max-width: 700px) {
	.sub-facts,
	.sub-grid,
	.sub-radios--wrap,
	.sub-steps {
		grid-template-columns: 1fr;
	}
}

/* ——— Feedback hub ——— */
.elementor-widget-msrhkaef_feedback_hub > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.fb-hub {
	width: min(1120px, calc(100% - 2.5rem));
	margin: calc(var(--section-space) * 0.45) auto var(--section-space);
}

.fb-hub__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	position: sticky;
	top: var(--header-h);
	z-index: 5;
	padding: 0.35rem 0;
	background: linear-gradient(180deg, var(--bg) 70%, transparent);
}

.admin-bar .fb-hub__nav {
	top: calc(var(--header-h) + 32px);
}

.fb-hub__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.95rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.9);
	color: var(--ink-muted) !important;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none !important;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.fb-hub__chip:hover,
.fb-hub__chip.is-active {
	color: #fff !important;
	border-color: rgba(245, 126, 32, 0.65);
	background: rgba(245, 126, 32, 0.14);
}

.fb-sec {
	margin-bottom: 2rem;
	scroll-margin-top: calc(var(--header-h) + 4.5rem);
}

.fb-sec__head {
	margin-bottom: 1rem;
}

.fb-sec__title {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	color: #fff;
}

.fb-sec__desc {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.7;
}

.fb-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.fb-card {
	display: flex;
	flex-direction: column;
	padding: 1.2rem 1.15rem 1.25rem;
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.65);
	animation: howRise 0.55s ease both;
	animation-delay: var(--d, 0s);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.fb-card:hover {
	border-color: rgba(245, 126, 32, 0.4);
	transform: translateY(-2px);
}

.fb-card__icon {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 0.85rem;
	border: 1px solid var(--line);
	color: var(--accent-hot);
	background: rgba(245, 126, 32, 0.08);
}

.fb-card__title {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
}

.fb-card__desc {
	margin: 0 0 1rem;
	color: var(--ink-muted);
	font-size: 0.9rem;
	line-height: 1.7;
	flex: 1;
}

.fb-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	align-self: flex-start;
	padding: 0.6rem 0.95rem;
	border: 1px solid rgba(245, 126, 32, 0.55);
	background: rgba(245, 126, 32, 0.14);
	color: #fff !important;
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none !important;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.fb-card__btn:hover {
	background: rgba(245, 126, 32, 0.28);
	border-color: var(--accent-hot);
}

.fb-card__soon {
	color: var(--ink-muted);
	font-size: 0.82rem;
	font-weight: 600;
	opacity: 0.8;
}

@media (max-width: 720px) {
	.fb-grid {
		grid-template-columns: 1fr;
	}
}

/* ——— Contact page ——— */
.elementor-widget-msrhkaef_contact_page > .elementor-widget-container {
	margin: 0 !important;
	padding: 0 !important;
}

.contact-page {
	width: min(1120px, calc(100% - 2.5rem));
	margin: calc(var(--section-space) * 0.45) auto var(--section-space);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
	gap: 1.25rem;
	align-items: start;
}

.contact-form-wrap,
.contact-card {
	border: 1px solid var(--line);
	background: rgba(20, 18, 16, 0.65);
}

.contact-form-wrap {
	padding: 1.35rem 1.25rem 1.4rem;
}

.contact-block__head {
	margin-bottom: 1.1rem;
}

.contact-block__head h2,
.contact-card h3 {
	margin: 0 0 0.35rem;
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.25rem;
}

.contact-block__head p,
.contact-card p {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.7;
	font-size: 0.92rem;
}

.contact-form {
	display: grid;
	gap: 0.85rem;
}

.contact-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.contact-field > span {
	font-size: 0.88rem;
	font-weight: 600;
	color: #f3f0ea;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
	width: 100%;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--line);
	background: rgba(10, 9, 8, 0.75);
	color: #fff;
	font: inherit;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
	outline: none;
	border-color: rgba(245, 126, 32, 0.55);
	box-shadow: 0 0 0 3px rgba(245, 126, 32, 0.12);
}

.contact-form .btn {
	justify-self: start;
	margin-top: 0.25rem;
}

.contact-form__status {
	margin: 0;
	font-weight: 700;
}

.contact-form__status.is-ok {
	color: #7dcea0;
}

.contact-form__status.is-err {
	color: #f5a3a3;
}

.contact-success {
	padding: 1.25rem;
	border: 1px solid rgba(245, 126, 32, 0.4);
	background: rgba(245, 126, 32, 0.1);
	text-align: center;
}

.contact-success h3 {
	margin: 0 0 0.4rem;
	color: #fff;
}

.contact-success p {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.7;
}

.contact-aside {
	display: grid;
	gap: 0.9rem;
}

.contact-card {
	padding: 1.2rem 1.15rem;
}

.contact-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.95rem;
	padding: 0.6rem 0.9rem;
	border: 1px solid rgba(245, 126, 32, 0.55);
	background: rgba(245, 126, 32, 0.14);
	color: #fff !important;
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none !important;
}

.contact-card__btn:hover {
	background: rgba(245, 126, 32, 0.28);
}

.contact-card__list {
	list-style: none;
	margin: 0.9rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.contact-card__list li {
	display: grid;
	gap: 0.2rem;
}

.contact-card__list span {
	color: var(--ink-muted);
	font-size: 0.8rem;
}

.contact-card__list a {
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
}

.contact-card__list a:hover {
	color: var(--accent-hot) !important;
}

.contact-phone {
	display: inline-block;
	direction: ltr;
	unicode-bidi: isolate;
	justify-self: start;
	text-align: left;
	width: max-content;
	max-width: 100%;
}

@media (max-width: 860px) {
	.contact-layout {
		grid-template-columns: 1fr;
	}
}

/* ——— Google Calendar page ——— */
.elementor-widget-msrhkaef_calendar_page > .elementor-widget-container {
	margin: 0;
	padding: 0;
}

.gcal-page {
	position: relative;
	z-index: 1;
	margin-top: -2.5rem;
	padding: 0 0 3.5rem;
}

.gcal-page__inner {
	max-width: 1100px;
}

.gcal-page__shell {
	overflow: hidden;
	border: 1px solid rgba(245, 126, 32, 0.28);
	background:
		linear-gradient(180deg, rgba(245, 126, 32, 0.08), transparent 40%),
		#0f0e0d;
	box-shadow:
		0 28px 70px rgba(0, 0, 0, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gcal-page__chrome {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.7rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.35);
}

.gcal-page__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
}

.gcal-page__dot:nth-child(1) { background: #F57E20; }
.gcal-page__dot:nth-child(2) { background: rgba(245, 126, 32, 0.55); }
.gcal-page__dot:nth-child(3) { background: rgba(255, 255, 255, 0.28); }

.gcal-page__chrome-label {
	margin-inline-start: auto;
	color: var(--ink-muted);
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gcal-page__frame-wrap {
	position: relative;
	overflow: hidden;
	background: #111;
}

/* Dark-mode blend for Google's light iframe (cross-origin). */
.gcal-page__frame {
	display: block;
	width: 100%;
	height: var(--gcal-h, 760px);
	border: 0;
	background: #fff;
	filter: invert(1) hue-rotate(180deg) brightness(0.94) contrast(0.96) saturate(0.88);
	transform: translateZ(0);
}

.gcal-page__empty {
	padding: 3.25rem 1.5rem;
	text-align: center;
}

.gcal-page__empty h3 {
	margin: 0 0 0.5rem;
	color: #fff;
	font-size: 1.25rem;
}

.gcal-page__empty p {
	margin: 0;
	color: var(--ink-muted);
	line-height: 1.7;
}

.gcal-page__events {
	max-width: 1100px;
	margin: 2.5rem auto 0;
	padding: 0 1.25rem;
}

.gcal-page__events-head {
	margin-bottom: 1.25rem;
}

.gcal-page__events-head h2 {
	margin: 0 0 0.35rem;
	color: #fff;
	font-size: 1.35rem;
}

.gcal-page__events-head p {
	margin: 0;
	color: var(--ink-muted);
}

@media (max-width: 700px) {
	.gcal-page {
		margin-top: 0;
		padding: 0.75rem 0 2.5rem;
	}

	.gcal-page__chrome {
		display: none;
	}

	.gcal-page__frame {
		height: min(70vh, 480px);
		filter: invert(1) hue-rotate(180deg) brightness(0.95) contrast(0.95) saturate(0.9);
	}
}

@media (max-width: 782px) {
	.admin-bar .gov-lib__nav,
	.admin-bar .fb-hub__nav {
		top: calc(var(--header-h) + 46px);
	}
}

@media (max-width: 560px) {
	.founder-hero {
		min-height: 0;
		padding-bottom: 2rem;
	}

	.founder-hero__stats {
		grid-template-columns: 1fr 1fr;
		gap: 0.5rem;
	}

	.founder-hero__stats strong {
		font-size: 1.05rem;
	}

	.founder-hero__stats span {
		font-size: 0.75rem;
	}
}

/* Prevent iOS zoom on form focus + wrap long emails */
.contact-form input,
.contact-form select,
.contact-form textarea,
.sub-form input,
.sub-form select,
.sub-form textarea {
	font-size: 16px;
}

.contact-card a,
.footer-contact a {
	overflow-wrap: anywhere;
	word-break: break-word;
}




