@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');

:root {
	--color-primary-bg: #0f0f12;
	--color-card-bg: #1a1a1f;
	--color-secondary-bg: #1a1a1f;
	--color-primary: #8b5cf6;
	--color-accent: #8b5cf6;
	--color-secondary: #4c1d95;
	--color-text-primary: #ffffff;
	--color-text-secondary: #a1a1aa;
	--color-text-muted: #71717a;
	--color-border: #27272a;

	--btn-primary-bg: #8b5cf6;
	--btn-primary-text: #ffffff;
	--btn-secondary-bg: transparent;
	--btn-secondary-border: #8b5cf6;
	--btn-secondary-text: #8b5cf6;

	--font-family: 'Sora', sans-serif;
	--fs-xs: 0.75rem;
	--fs-sm: 0.875rem;
	--fs-base: 1rem;
	--fs-md: 1.125rem;
	--fs-lg: 1.25rem;
	--fs-xl: 1.5rem;
	--fs-2xl: 2.5rem;
	--fs-3xl: 4rem;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;

	--radius-sm: 4px;
	--radius-default: 8px;
	--radius-lg: 16px;

	--shadow-accent: 0 4px 24px rgba(139, 92, 246, 0.15);
	--shadow-deep: 0 8px 40px rgba(0, 0, 0, 0.4);

	--container-max: 1120px;
	--section-padding: 64px 0;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	font-weight: var(--fw-regular);
	font-size: var(--fs-base);
	color: var(--color-text-primary);
	background-color: var(--color-primary-bg);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.25s ease;
}

a:hover {
	color: var(--color-text-primary);
}

.lyt-container-847 {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 24px;
}

.sec-block-310 {
	padding: var(--section-padding);
}

/* ---------- BUTTONS ---------- */

.btn-prime-461 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: var(--btn-primary-bg);
	color: var(--btn-primary-text);
	font-family: var(--font-family);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	border: none;
	border-radius: var(--radius-default);
	cursor: pointer;
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.15s ease;
	text-decoration: none;
}

.btn-prime-461:hover {
	background: #7c3aed;
	box-shadow: var(--shadow-accent);
	color: #fff;
	transform: translateY(-1px);
}

.btn-ghost-582 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	background: var(--btn-secondary-bg);
	color: var(--btn-secondary-text);
	font-family: var(--font-family);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	border: 2px solid var(--btn-secondary-border);
	border-radius: var(--radius-default);
	cursor: pointer;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.15s ease;
	text-decoration: none;
}

.btn-ghost-582:hover {
	background: var(--color-primary);
	color: #fff;
	transform: translateY(-1px);
}

/* ---------- HEADER ---------- */

.hdr-wrap-115 {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(15, 15, 18, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-border);
}

.hdr-inner-226 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.hdr-logo-337 {
	font-size: var(--fs-lg);
	font-weight: var(--fw-bold);
	color: var(--color-text-primary);
	text-decoration: none;
	white-space: nowrap;
}

.hdr-logo-337 span {
	color: var(--color-primary);
}

.nav-links-448 {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.nav-links-448 a {
	color: var(--color-text-secondary);
	font-size: var(--fs-sm);
	font-weight: var(--fw-medium);
	transition: color 0.25s ease;
}

.nav-links-448 a:hover,
.nav-links-448 a.active-link {
	color: var(--color-primary);
}

.hdr-cta-559 {
	display: flex;
	align-items: center;
}

.mob-toggle-660 {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.mob-toggle-660 span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-text-primary);
	margin: 5px 0;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}

/* ---------- HERO ---------- */

.hero-wrap-701 {
	padding: 80px 0 64px;
}

.hero-split-340 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.hero-text-451 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero-badge-562 {
	display: inline-block;
	font-size: var(--fs-xs);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	background: rgba(139, 92, 246, 0.12);
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 24px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hero-wrap-701 h1 {
	font-size: var(--fs-3xl);
	font-weight: var(--fw-bold);
	line-height: 1.1;
	margin-bottom: 24px;
	background: linear-gradient(
		135deg,
		var(--color-text-primary) 0%,
		var(--color-primary) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub-812 {
	font-size: var(--fs-md);
	color: var(--color-text-secondary);
	max-width: 520px;
	margin-bottom: 36px;
	line-height: 1.8;
}

.hero-actions-923 {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-visual-673 {
	position: relative;
}

.hero-visual-673 img {
	width: 100%;
	border-radius: var(--radius-lg);
	aspect-ratio: 4/3;
	object-fit: cover;
	border: 1px solid var(--color-border);
}

.hero-visual-673::after {
	content: '';
	position: absolute;
	inset: 12px -12px -12px 12px;
	border: 2px solid var(--color-primary);
	border-radius: var(--radius-lg);
	z-index: -1;
	opacity: 0.3;
}

/* ---------- GALLERY SHOWCASE ---------- */

.gallery-section-784 {
	padding: var(--section-padding);
	border-top: 1px solid var(--color-border);
}

.gallery-section-784 h2 {
	font-size: var(--fs-2xl);
	font-weight: var(--fw-bold);
	margin-bottom: 12px;
}

.gallery-header-895 {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 16px;
}

.gallery-header-895 p {
	color: var(--color-text-secondary);
	max-width: 480px;
}

.gallery-mosaic-906 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 280px 280px;
	gap: 16px;
}

.gallery-mosaic-906 .gal-item-017:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.gal-item-017 {
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	border: 1px solid var(--color-border);
	background: var(--color-card-bg);
}

.gal-item-017 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gal-item-017:hover img {
	transform: scale(1.05);
}

/* ---------- STATS ---------- */

.stats-strip-128 {
	padding: 48px 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.stats-grid-239 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.stat-item-340 .stat-num-451 {
	font-size: var(--fs-2xl);
	font-weight: var(--fw-bold);
	color: var(--color-primary);
	display: block;
	margin-bottom: 4px;
}

.stat-item-340 .stat-label-562 {
	font-size: var(--fs-sm);
	color: var(--color-text-muted);
}

/* ---------- PARTNER STRIP ---------- */

.partner-strip-150 {
	padding: 32px 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	text-align: center;
}

.partner-strip-150 p {
	color: var(--color-text-muted);
	font-size: var(--fs-sm);
}

.partner-strip-150 a {
	color: var(--color-primary);
	font-weight: var(--fw-medium);
}

/* ---------- FEATURE GRID ---------- */

.feat-section-200 {
	padding: var(--section-padding);
}

.feat-section-200 h2 {
	text-align: center;
	font-size: var(--fs-2xl);
	font-weight: var(--fw-bold);
	margin-bottom: 16px;
}

.feat-section-200 > .lyt-container-847 > p {
	text-align: center;
	color: var(--color-text-secondary);
	max-width: 560px;
	margin: 0 auto 48px;
}

.feat-grid-311 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.feat-card-422 {
	background: var(--color-card-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: row;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.feat-card-422:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-accent);
}

.feat-img-533 {
	width: 180px;
	min-height: 160px;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-secondary);
}

.feat-img-533 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feat-body-644 {
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feat-card-422 h3 {
	font-size: var(--fs-md);
	font-weight: var(--fw-semibold);
	margin-bottom: 10px;
}

.feat-card-422 p {
	font-size: var(--fs-sm);
	color: var(--color-text-secondary);
	line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */

.testi-section-600 {
	padding: var(--section-padding);
}

.testi-section-600 h2 {
	text-align: center;
	font-size: var(--fs-2xl);
	font-weight: var(--fw-bold);
	margin-bottom: 48px;
}

.testi-grid-711 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.testi-card-822 {
	background: var(--color-card-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 32px;
}

.testi-card-822 p {
	color: var(--color-text-secondary);
	font-size: var(--fs-sm);
	line-height: 1.8;
	margin-bottom: 20px;
	font-style: italic;
}

.testi-author-933 {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testi-avatar-044 {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--fs-sm);
	font-weight: var(--fw-bold);
	color: var(--color-primary);
	flex-shrink: 0;
}

.testi-meta-155 strong {
	display: block;
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
}

.testi-meta-155 span {
	font-size: var(--fs-xs);
	color: var(--color-text-muted);
}

/* ---------- CTA BANNER ---------- */

.cta-banner-260 {
	padding: var(--section-padding);
	text-align: center;
}

.cta-inner-371 {
	background: linear-gradient(
		135deg,
		var(--color-secondary) 0%,
		var(--color-primary) 100%
	);
	border-radius: var(--radius-lg);
	padding: 64px 40px;
}

.cta-inner-371 h2 {
	font-size: var(--fs-2xl);
	font-weight: var(--fw-bold);
	margin-bottom: 16px;
}

.cta-inner-371 p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 540px;
	margin: 0 auto 32px;
}

.cta-inner-371 .btn-prime-461 {
	background: #fff;
	color: var(--color-secondary);
}

.cta-inner-371 .btn-prime-461:hover {
	background: #f0f0f0;
}

/* ---------- FOOTER ---------- */

.ftr-wrap-480 {
	border-top: 1px solid var(--color-border);
	padding: 64px 0 0;
}

.ftr-grid-591 {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
}

.ftr-brand-702 {
	font-size: var(--fs-lg);
	font-weight: var(--fw-bold);
	margin-bottom: 16px;
}

.ftr-brand-702 span {
	color: var(--color-primary);
}

.ftr-tagline-813 {
	color: var(--color-text-secondary);
	font-size: var(--fs-sm);
	line-height: 1.8;
}

.ftr-col-924 h4 {
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-text-primary);
}

.ftr-col-924 ul {
	list-style: none;
}

.ftr-col-924 ul li {
	margin-bottom: 12px;
}

.ftr-col-924 ul li a {
	color: var(--color-text-secondary);
	font-size: var(--fs-sm);
	transition: color 0.25s ease;
}

.ftr-col-924 ul li a:hover {
	color: var(--color-primary);
}

.ftr-col-924 p {
	color: var(--color-text-secondary);
	font-size: var(--fs-sm);
	line-height: 1.8;
}

.ftr-partners-146 {
	border-top: 1px solid var(--color-border);
	padding: 20px 0;
	text-align: center;
}

.ftr-partners-146 p {
	color: var(--color-text-muted);
	font-size: var(--fs-xs);
	line-height: 1.7;
	max-width: 720px;
	margin: 0 auto;
}

.ftr-bottom-035 {
	border-top: 1px solid var(--color-border);
	padding: 24px 0;
	text-align: center;
}

.ftr-bottom-035 p {
	color: var(--color-text-muted);
	font-size: var(--fs-xs);
}

/* ---------- PAGE HEADER ---------- */

.page-hero-501 {
	padding: 80px 0 48px;
	text-align: center;
}

.page-hero-501 h1 {
	font-size: var(--fs-2xl);
	font-weight: var(--fw-bold);
	margin-bottom: 16px;
}

.page-hero-501 p {
	color: var(--color-text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* ---------- ABOUT ---------- */

.about-narrative-602 {
	padding: var(--section-padding);
}

.about-narrative-602 .about-inner-713 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.about-img-824 {
	width: 100%;
	aspect-ratio: 4/5;
	background: var(--color-card-bg);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	overflow: hidden;
}

.about-img-824 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-text-935 h2 {
	font-size: var(--fs-xl);
	font-weight: var(--fw-bold);
	margin-bottom: 20px;
}

.about-text-935 p {
	color: var(--color-text-secondary);
	margin-bottom: 16px;
	line-height: 1.8;
}

.about-sponsor-046 {
	padding: var(--section-padding);
	border-top: 1px solid var(--color-border);
}

.about-sponsor-046 .sponsor-inner-157 {
	background: var(--color-card-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 48px;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.about-sponsor-046 h2 {
	font-size: var(--fs-xl);
	font-weight: var(--fw-bold);
	margin-bottom: 16px;
}

.about-sponsor-046 p {
	color: var(--color-text-secondary);
	line-height: 1.8;
	margin-bottom: 12px;
}

/* ---------- BLOG ---------- */

.blog-grid-703 {
	padding: var(--section-padding);
}

.blog-list-814 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.blog-card-925 {
	background: var(--color-card-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.blog-card-925:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-accent);
}

.blog-thumb-036 {
	width: 100%;
	height: 200px;
	background: var(--color-secondary);
	overflow: hidden;
}

.blog-thumb-036 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-body-147 {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-tag-258 {
	display: inline-block;
	font-size: var(--fs-xs);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	background: rgba(139, 92, 246, 0.12);
	padding: 4px 12px;
	border-radius: var(--radius-sm);
	margin-bottom: 12px;
	width: fit-content;
}

.blog-body-147 h3 {
	font-size: var(--fs-md);
	font-weight: var(--fw-semibold);
	margin-bottom: 8px;
}

.blog-body-147 h3 a {
	color: var(--color-text-primary);
}

.blog-body-147 h3 a:hover {
	color: var(--color-primary);
}

.blog-body-147 p {
	color: var(--color-text-secondary);
	font-size: var(--fs-sm);
	line-height: 1.7;
	margin-bottom: 16px;
	flex: 1;
}

.blog-date-369 {
	font-size: var(--fs-xs);
	color: var(--color-text-muted);
}

/* ---------- SINGLE POST ---------- */

.post-content-804 {
	padding: var(--section-padding);
	max-width: 760px;
	margin: 0 auto;
}

.post-content-804 h1 {
	font-size: var(--fs-2xl);
	font-weight: var(--fw-bold);
	margin-bottom: 16px;
	line-height: 1.2;
}

.post-meta-915 {
	color: var(--color-text-muted);
	font-size: var(--fs-sm);
	margin-bottom: 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border);
}

.post-content-804 h2 {
	font-size: var(--fs-xl);
	font-weight: var(--fw-semibold);
	margin: 40px 0 16px;
}

.post-content-804 p {
	color: var(--color-text-secondary);
	line-height: 1.9;
	margin-bottom: 20px;
}

.post-content-804 blockquote {
	border-left: 3px solid var(--color-primary);
	padding: 16px 24px;
	margin: 32px 0;
	background: var(--color-card-bg);
	border-radius: 0 var(--radius-default) var(--radius-default) 0;
}

.post-content-804 blockquote p {
	color: var(--color-text-primary);
	font-style: italic;
	margin-bottom: 0;
}

.post-nav-026 {
	display: flex;
	justify-content: space-between;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
	margin-top: 48px;
}

.post-nav-026 a {
	font-size: var(--fs-sm);
	font-weight: var(--fw-medium);
}

/* ---------- CONTACT ---------- */

.contact-section-905 {
	padding: var(--section-padding);
}

.contact-grid-016 {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
}

.contact-info-127 h2 {
	font-size: var(--fs-xl);
	font-weight: var(--fw-bold);
	margin-bottom: 24px;
}

.contact-detail-238 {
	margin-bottom: 24px;
}

.contact-detail-238 h3 {
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.contact-detail-238 p {
	color: var(--color-text-secondary);
	font-size: var(--fs-sm);
	line-height: 1.7;
}

.contact-form-349 {
	background: var(--color-card-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 40px;
}

.form-group-450 {
	margin-bottom: 20px;
}

.form-group-450 label {
	display: block;
	font-size: var(--fs-sm);
	font-weight: var(--fw-medium);
	margin-bottom: 8px;
	color: var(--color-text-secondary);
}

.form-group-450 input,
.form-group-450 select,
.form-group-450 textarea {
	width: 100%;
	padding: 12px 16px;
	background: var(--color-primary-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-default);
	color: var(--color-text-primary);
	font-family: var(--font-family);
	font-size: var(--fs-sm);
	transition: border-color 0.25s ease;
	outline: none;
}

.form-group-450 input:focus,
.form-group-450 select:focus,
.form-group-450 textarea:focus {
	border-color: var(--color-primary);
}

.form-group-450 textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group-450 select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a1a1aa' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

/* ---------- LEGAL PAGES ---------- */

.legal-content-106 {
	padding: var(--section-padding);
	max-width: 760px;
	margin: 0 auto;
}

.legal-content-106 h1 {
	font-size: var(--fs-2xl);
	font-weight: var(--fw-bold);
	margin-bottom: 32px;
}

.legal-content-106 h2 {
	font-size: var(--fs-lg);
	font-weight: var(--fw-semibold);
	margin: 32px 0 12px;
}

.legal-content-106 p {
	color: var(--color-text-secondary);
	line-height: 1.9;
	margin-bottom: 16px;
}

.legal-content-106 ul {
	color: var(--color-text-secondary);
	padding-left: 24px;
	margin-bottom: 16px;
}

.legal-content-106 ul li {
	margin-bottom: 8px;
	line-height: 1.7;
}

/* ---------- COOKIE BANNER ---------- */

.cookie-bar-207 {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: var(--color-card-bg);
	border-top: 1px solid var(--color-border);
	padding: 20px 0;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.cookie-bar-207.visible {
	transform: translateY(0);
}

.cookie-inner-318 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.cookie-inner-318 p {
	color: var(--color-text-secondary);
	font-size: var(--fs-sm);
	flex: 1;
	min-width: 240px;
}

.cookie-inner-318 p a {
	color: var(--color-primary);
	text-decoration: underline;
}

.cookie-actions-429 {
	display: flex;
	gap: 12px;
}

/* ---------- IMAGES FALLBACK ---------- */

img[src^='/images/'] {
	background: var(--color-card-bg);
}

img[src^='/images/']:not([src$='.svg']) {
	object-fit: cover;
}

/* Hide broken images gracefully */
img {
	font-size: 0;
}

img::after {
	content: '';
	display: block;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
	.hero-split-340 {
		grid-template-columns: 1fr;
	}

	.hero-visual-673::after {
		display: none;
	}

	.gallery-mosaic-906 {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 240px 240px;
	}

	.gallery-mosaic-906 .gal-item-017:nth-child(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}

	.feat-grid-311 {
		grid-template-columns: 1fr;
	}

	.ftr-grid-591 {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-narrative-602 .about-inner-713 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	:root {
		--fs-3xl: 2.5rem;
		--fs-2xl: 1.75rem;
	}

	.nav-links-448 {
		display: none;
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--color-primary-bg);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 32px;
		z-index: 999;
	}

	.nav-links-448.open {
		display: flex;
	}

	.nav-links-448 a {
		font-size: var(--fs-lg);
	}

	.mob-toggle-660 {
		display: block;
	}

	.hdr-cta-559 .btn-prime-461 {
		display: none;
	}

	.hero-wrap-701 {
		padding: 48px 0 40px;
	}

	.feat-card-422 {
		flex-direction: column;
	}

	.feat-img-533 {
		width: 100%;
		min-height: 140px;
	}

	.gallery-mosaic-906 {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.gallery-mosaic-906 .gal-item-017 {
		height: 200px;
	}

	.gallery-mosaic-906 .gal-item-017:nth-child(1) {
		grid-column: auto;
		grid-row: auto;
		height: 240px;
	}

	.stats-grid-239 {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.testi-grid-711 {
		grid-template-columns: 1fr;
	}

	.blog-list-814 {
		grid-template-columns: 1fr;
	}

	.contact-grid-016 {
		grid-template-columns: 1fr;
	}

	.ftr-grid-591 {
		grid-template-columns: 1fr;
	}

	.page-hero-501 {
		padding: 48px 0 32px;
	}
}

@media (max-width: 480px) {
	:root {
		--fs-3xl: 2rem;
		--fs-2xl: 1.5rem;
	}

	.lyt-container-847 {
		padding: 0 16px;
	}

	.hero-wrap-701 h1 {
		font-size: var(--fs-2xl);
	}
}
