/* ═══════════════════════════════════════════════════════════════
   GLOBAL RENTIER — Custom Elementor Widgets Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── Shared: Widget label with gold line ─── */
[class*="__label"] {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.gr-about__label::before,
.gr-video-section__label::before,
.gr-cal__label::before,
.gr-pgallery__label::before,
.gr-founder__label::before,
.gr-offers__label::before,
.gr-wmap__label::before,
.gr-vgrid__label::before,
.gr-faq__label::before,
.gr-pbar__label::before,
.gr-cinfo__label::before,
.gr-banner__label::before,
.gr-sgrid__label::before,
.gr-locgrid__label::before,
.gr-propshow__label::before,
.gr-process__label::before,
.gr-benefits__label::before,
.gr-semgrid__label::before,
.gr-semdyn__cta-label::before,
.gr-semagenda__label::before {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
}

/* ─── Shared: Widget titles — lighter weight ─── */
.gr-about__title,
.gr-video-section__title,
.gr-cal__title,
.gr-pgallery__title,
.gr-founder__title,
.gr-offers__title,
.gr-wmap__title,
.gr-vgrid__title,
.gr-faq__title {
	font-weight: 400;
}

/* ─── Shared: em.gold in widget titles ─── */
[class*="__title"] em,
[class*="__title"] i {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

/* ─── Service Card Widget ─── */
.gr-service-card {
	background-color: var(--gr-card, #111111);
	border: 1px solid var(--gr-border, #2A2A35);
	padding: 48px 36px;
	transition: border-color 0.4s ease, transform 0.4s ease;
	position: relative;
	overflow: hidden;
}

.gr-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gr-gold, #C8A759), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gr-service-card:hover {
	border-color: var(--gr-gold, #C8A759);
	transform: translateY(-4px);
}

.gr-service-card:hover::before {
	opacity: 1;
}

.gr-service-card__icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 24px;
	line-height: 1;
	border: 1px solid rgba(200, 169, 81, 0.15);
}

.gr-service-card__icon i {
	font-size: inherit;
	color: inherit;
}

.gr-service-card__icon svg {
	width: 2rem;
	height: 2rem;
	fill: var(--gr-gold, #C8A759);
}

.gr-service-card__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 16px;
	line-height: 1.3;
}

.gr-service-card__text {
	font-size: 0.9375rem;
	color: var(--gr-text, #C8C8D0);
	line-height: 1.7;
}

/* ── Service Card responsive ── */
@media (max-width: 768px) {
	.gr-service-card {
		padding: 32px 24px;
	}
	.gr-service-card__icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	.gr-service-card__icon svg {
		width: 1.5rem;
		height: 1.5rem;
	}
	.gr-service-card__title {
		font-size: 1.25rem;
	}
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES WIDGET — Full section with icon cards
   ═══════════════════════════════════════════════════════════════ */

.gr-services {
	max-width: var(--gr-container, 1200px);
	margin: 0 auto;
}

.gr-services__header {
	text-align: center;
	margin-bottom: 80px;
}

.gr-services__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-services__label::before {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
}

.gr-services__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.2;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 24px;
}

.gr-services__title em,
.gr-services__title i {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

.gr-services__divider {
	width: 80px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto 20px;
}

.gr-services__desc {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--gr-text, #C8C8D0);
	max-width: 600px;
	margin: 0 auto;
}

/* Grid */
.gr-services__grid {
	display: grid;
	gap: 24px;
	align-items: stretch;
}

.gr-services--cols-2 .gr-services__grid { grid-template-columns: repeat(2, 1fr); }
.gr-services--cols-3 .gr-services__grid { grid-template-columns: repeat(3, 1fr); }
.gr-services--cols-4 .gr-services__grid { grid-template-columns: repeat(4, 1fr); }

/* Card */
.gr-services__card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	padding: 48px 36px;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.gr-services__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gr-gold, #C8A759), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gr-services__card:hover {
	background: rgba(200, 167, 89, 0.04);
	border-color: rgba(200, 167, 89, 0.15);
	transform: translateY(-2px);
}

.gr-services__card:hover::before {
	opacity: 1;
}

a.gr-services__card { cursor: pointer; }

.gr-services__icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
	line-height: 1;
	flex-shrink: 0;
	transition: background 0.3s ease;
}

.gr-services__card:hover .gr-services__icon {
	background: transparent;
}

.gr-services__icon i {
	font-size: inherit;
	color: inherit;
}

.gr-services__icon svg {
	fill: var(--gr-gold, #C8A759);
}

.gr-services__card-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 12px;
	line-height: 1.3;
}

.gr-services__card-desc {
	font-size: 0.9375rem;
	color: var(--gr-text, #C8C8D0);
	line-height: 1.7;
	flex: 1;
}

.gr-services__arrow {
	display: inline-block;
	margin-top: auto;
	padding-top: 16px;
	font-size: 1.25rem;
	color: var(--gr-gold, #C8A759);
	transition: transform 0.3s ease;
}

.gr-services__card:hover .gr-services__arrow {
	transform: translateX(8px);
}

/* CTA */
.gr-services__cta {
	text-align: center;
	margin-top: 48px;
}

.gr-services__cta-btn {
	display: inline-block;
	padding: 16px 40px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gr-dark, #0A0A0A);
	background: linear-gradient(135deg, var(--gr-gold, #C8A759), #D4B96A);
	border: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gr-services__cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(200, 169, 81, 0.3);
}

/* Light scheme */
.gr-services--scheme-light .gr-services__title {
	color: var(--gr-dark, #0A0A0A);
}

.gr-services--scheme-light .gr-services__desc {
	color: #4A4A5A;
}

.gr-services--scheme-light .gr-services__card {
	background: #FFFFFF;
	border-color: #E0E0E8;
}

.gr-services--scheme-light .gr-services__card:hover {
	border-color: var(--gr-gold, #C8A759);
}

.gr-services--scheme-light .gr-services__card-title {
	color: var(--gr-dark, #0A0A0A);
}

.gr-services--scheme-light .gr-services__card-desc {
	color: #4A4A5A;
}

.gr-services--scheme-light .gr-services__label {
	color: var(--gr-gold-dark, #A88B3D);
}

/* Responsive */
@media (max-width: 1024px) {
	.gr-services--cols-4 .gr-services__grid { grid-template-columns: repeat(2, 1fr); }
	.gr-services--cols-3 .gr-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.gr-services__grid { grid-template-columns: 1fr !important; }
}


/* ─── Testimonial Widget ─── */
.gr-testimonial {
	padding: 36px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gr-testimonial:hover {
	border-color: rgba(200, 167, 89, 0.15);
}

/* Stars row */
.gr-testimonial__stars {
	display: flex;
	gap: 2px;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-testimonial__stars svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.gr-testimonial__quote-mark {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 4rem;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
	opacity: 0.15;
	position: absolute;
	top: 16px;
	right: 24px;
}

.gr-testimonial__content {
	font-size: 0.9rem;
	font-style: italic;
	color: var(--gr-text, #CCCCCC);
	line-height: 1.7;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.gr-testimonial__footer {
	display: flex;
	align-items: center;
	gap: 16px;
}

.gr-testimonial__image {
	width: 48px;
	height: 48px;
	overflow: hidden;
	flex-shrink: 0;
	border: 1px solid rgba(200, 167, 89, 0.2);
}

.gr-testimonial__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gr-testimonial__author {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	font-style: normal;
	display: block;
}

.gr-testimonial__role {
	font-size: 0.75rem;
	color: var(--gr-text-muted, #8A8A8A);
	display: block;
	margin-top: 2px;
}

/* ── Testimonial responsive ── */
@media (max-width: 768px) {
	.gr-testimonial {
		padding: 28px 24px;
	}
	.gr-testimonial__quote-mark {
		font-size: 3rem;
		top: 12px;
		right: 16px;
	}
	.gr-testimonial__content {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.gr-testimonial {
		padding: 24px 20px;
	}
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION WIDGET
   ═══════════════════════════════════════════════════════════ */

.gr-tsec {
	max-width: var(--gr-container-wide, 1400px);
	margin: 0 auto;
	padding: 0 40px;
}

/* ── Header ── */
.gr-tsec__header {
	text-align: center;
	margin-bottom: 60px;
}

.gr-tsec__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-tsec__label::before,
.gr-tsec__label::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
	opacity: 0.4;
}

.gr-tsec__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	line-height: 1.2;
	margin-bottom: 20px;
}

.gr-tsec__title em,
.gr-tsec__title i {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

.gr-tsec__divider {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto;
}

/* ── Video ── */
.gr-tsec__video {
	max-width: 900px;
	margin: 0 auto 64px;
}

.gr-tsec__video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.gr-tsec__video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.gr-tsec__video-caption {
	text-align: center;
	font-size: 0.8125rem;
	color: var(--gr-text-muted, #8A8A8A);
	margin-top: 16px;
	letter-spacing: 0.02em;
}

/* ── Cards grid — 3 columns ── */
.gr-tsec__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ── Card base ── */
.gr-tsec__card {
	position: relative;
	padding: 40px 32px 32px;
	display: flex;
	flex-direction: column;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            border-color 0.5s ease,
	            box-shadow 0.5s ease;
	animation: grTsecFadeIn 0.6s ease both;
	animation-delay: var(--card-delay, 0s);
}

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

/* ── Glass Premium style (default) ── */
.gr-tsec--glass .gr-tsec__card {
	background: linear-gradient(
		160deg,
		rgba(255, 255, 255, 0.04) 0%,
		rgba(255, 255, 255, 0.01) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.gr-tsec--glass .gr-tsec__card:hover {
	border-color: rgba(200, 167, 89, 0.2);
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
	            0 0 40px rgba(200, 167, 89, 0.04);
}

/* ── Gold Border style ── */
.gr-tsec--border .gr-tsec__card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-top: 2px solid var(--gr-gold, #C8A759);
}

.gr-tsec--border .gr-tsec__card:hover {
	border-color: rgba(200, 167, 89, 0.3);
	border-top-color: var(--gr-gold, #C8A759);
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* ── Solid Dark style ── */
.gr-tsec--solid .gr-tsec__card {
	background: var(--gr-card, #111111);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.gr-tsec--solid .gr-tsec__card:hover {
	border-color: rgba(200, 167, 89, 0.15);
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ── Card accent line ── */
.gr-tsec__card-accent {
	position: absolute;
	top: 0;
	left: 32px;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--gr-gold, #C8A759), transparent);
	opacity: 0.6;
}

.gr-tsec--border .gr-tsec__card-accent {
	display: none;
}

/* ── Stars ── */
.gr-tsec__stars {
	display: flex;
	gap: 3px;
	margin-bottom: 20px;
}

.gr-tsec__stars svg {
	width: 15px;
	height: 15px;
}

.gr-tsec__star--filled {
	fill: var(--gr-gold, #C8A759);
}

.gr-tsec__star--empty {
	fill: rgba(255, 255, 255, 0.1);
}

/* ── Quote icon ── */
.gr-tsec__quote-icon {
	margin-bottom: 16px;
}

.gr-tsec__quote-icon svg {
	width: 28px;
	height: 28px;
	color: var(--gr-gold, #C8A759);
	opacity: 0.25;
}

/* ── Quote text ── */
.gr-tsec__quote {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.9375rem;
	font-style: italic;
	color: var(--gr-text, #CCCCCC);
	line-height: 1.8;
	margin: 0 0 auto;
	padding-bottom: 28px;
	position: relative;
}

/* ── Author ── */
.gr-tsec__author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gr-tsec__avatar {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	overflow: hidden;
	border: 1.5px solid rgba(200, 167, 89, 0.3);
	border-radius: 50%;
}

.gr-tsec__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.gr-tsec__avatar--initials {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.08);
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.125rem;
	color: var(--gr-gold, #C8A759);
}

.gr-tsec__name {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	font-style: normal;
	display: block;
	letter-spacing: 0.01em;
}

.gr-tsec__role {
	font-size: 0.75rem;
	color: var(--gr-text-muted, #8A8A8A);
	display: block;
	margin-top: 3px;
}

/* ── Testimonials Section Responsive ── */
@media (max-width: 1024px) {
	.gr-tsec__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
	.gr-tsec__card {
		padding: 32px 24px 28px;
	}
}

@media (max-width: 768px) {
	.gr-tsec {
		padding: 0 24px;
	}
	.gr-tsec__header {
		margin-bottom: 40px;
	}
	.gr-tsec__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 520px;
		margin: 0 auto;
	}
	.gr-tsec__video {
		margin-bottom: 40px;
	}
}

/* ─── CTA Box Widget ─── */
.gr-cta-box {
	background: linear-gradient(135deg, var(--gr-black, #0A0A0A) 0%, rgba(200, 167, 89, 0.08) 50%, var(--gr-black, #0A0A0A) 100%);
	border: none;
	padding: 140px 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Gold decorative lines top and bottom */
.gr-cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gr-gold, #C8A759), transparent);
	opacity: 0.3;
}

.gr-cta-box::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gr-gold, #C8A759), transparent);
	opacity: 0.3;
}

.gr-cta-box--gold-border {
	border-color: var(--gr-gold, #C8A759);
}

.gr-cta-box__label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-cta-box__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 20px;
	line-height: 1.2;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.gr-cta-box__title em,
.gr-cta-box__title i {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

.gr-cta-box__text {
	font-size: 1rem;
	color: var(--gr-text, #C8C8D0);
	max-width: 600px;
	margin: 0 auto 36px;
	line-height: 1.7;
}

.gr-cta-box__btn {
	display: inline-block;
	padding: 16px 44px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	background-color: var(--gr-gold, #C8A759);
	color: var(--gr-black, #0A0A0A);
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gr-cta-box__btn:hover {
	background-color: var(--gr-gold-light, #D4B85C);
	color: var(--gr-black, #0A0A0A);
}

/* ── CTA Box — Split layout (text + form) ── */
.gr-cta-box--split {
	text-align: left;
	padding: 100px 60px;
}

.gr-cta-box__split-inner {
	display: flex;
	align-items: flex-start;
	gap: 80px;
	max-width: 1440px;
	margin: 0 auto;
}

.gr-cta-box__left {
	flex: 1 1 42%;
	min-width: 0;
	padding-top: 20px;
}

.gr-cta-box--split .gr-cta-box__title {
	margin-left: 0;
	margin-right: 0;
	max-width: none;
}

.gr-cta-box--split .gr-cta-box__text {
	margin-left: 0;
	margin-right: 0;
	max-width: none;
	margin-bottom: 28px;
}

/* Bullet points list */
.gr-cta-box__bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gr-cta-box__bullet {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--gr-text, #C8C8D0);
}

.gr-cta-box__bullet-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gr-gold, #C8A759);
	font-size: 0.85rem;
}

.gr-cta-box__bullet-icon i,
.gr-cta-box__bullet-icon svg {
	color: var(--gr-gold, #C8A759) !important;
	fill: var(--gr-gold, #C8A759) !important;
}

.gr-cta-box__bullet-text {
	color: var(--gr-text, #C8C8D0);
}

/* Right column — form embed */
.gr-cta-box__right {
	flex: 1 1 58%;
	min-width: 0;
}

.gr-cta-box__form-heading {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.25rem;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 20px;
	font-weight: 400;
}

.gr-cta-box__form-wrap {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(200, 167, 89, 0.15);
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.gr-cta-box__form-wrap iframe {
	display: block;
	width: 100% !important;
	height: 100% !important;
	min-height: inherit;
	border: none;
}

.gr-cta-box__form-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: inherit;
	padding: 40px;
	text-align: center;
}

.gr-cta-box__form-placeholder p {
	color: var(--gr-text, #C8C8D0);
	opacity: 0.5;
	font-size: 0.9rem;
	font-style: italic;
}

/* ── CTA Box responsive ── */
@media (max-width: 1024px) {
	.gr-cta-box {
		padding: 48px 36px;
	}
	.gr-cta-box--split {
		padding: 60px 36px;
	}
	.gr-cta-box__split-inner {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.gr-cta-box {
		padding: 40px 24px;
	}
	.gr-cta-box__title {
		font-size: clamp(1.5rem, 5vw, 2.25rem);
	}
	.gr-cta-box__btn {
		padding: 14px 32px;
		width: 100%;
		text-align: center;
	}

	/* Split layout stacks on mobile */
	.gr-cta-box--split {
		padding: 48px 24px;
	}
	.gr-cta-box__split-inner {
		flex-direction: column;
		gap: 36px;
	}
	.gr-cta-box__left,
	.gr-cta-box__right {
		flex: 1 1 100%;
	}
	.gr-cta-box__left {
		padding-top: 0;
	}
}

/* ─── Stats Counter Widget ─── */
.gr-stats-counter {
	text-align: center;
	padding: 48px 32px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gold gradient line on top — visible on hover */
.gr-stats-counter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gr-gold, #C8A759), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gr-stats-counter:hover::before {
	opacity: 1;
}

.gr-stats-counter:hover {
	border-color: rgba(200, 167, 89, 0.15);
	transform: translateY(-4px);
}

.gr-stats-counter__number {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 3rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
	margin-bottom: 8px;
}

.gr-stats-counter__suffix {
	font-size: 2rem;
	color: var(--gr-gold, #C8A759);
}

.gr-stats-counter__label {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--gr-text, #CCCCCC);
	margin-bottom: 12px;
}

.gr-stats-counter__divider {
	width: 70px;
	height: 1px;
	background-color: var(--gr-gold, #C8A759);
	margin: 16px auto;
	opacity: 0.5;
}

.gr-stats-counter__desc {
	font-size: 0.78rem;
	line-height: 1.6;
	color: var(--gr-text-muted, #8A8A8A);
}

.gr-stats-counter--light .gr-stats-counter__number,
.gr-stats-counter--light .gr-stats-counter__suffix {
	color: #0A0A0A;
}
.gr-stats-counter--light .gr-stats-counter__label {
	color: #4A4A5A;
}
.gr-stats-counter--light .gr-stats-counter__divider {
	background-color: #D0D0D8;
}

/* ── Stats Counter responsive ── */
@media (max-width: 768px) {
	.gr-stats-counter {
		padding: 32px 24px;
	}
	.gr-stats-counter__number {
		font-size: clamp(2.25rem, 8vw, 3rem);
	}
	.gr-stats-counter__suffix {
		font-size: clamp(1.25rem, 4vw, 2rem);
	}
	.gr-stats-counter__label {
		font-size: 0.75rem;
	}
}

/* ─── Process Step Widget ─── */
.gr-process-step {
	padding: 48px 32px;
	background: var(--gr-black, #0A0A0A);
	position: relative;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gr-process-step:hover {
	background: rgba(200, 167, 89, 0.04);
}

.gr-process-step__number {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 4rem;
	font-weight: 700;
	color: rgba(200, 167, 89, 0.1);
	line-height: 1;
	margin-bottom: 24px;
}

.gr-process-step__content {
	flex: 1;
}

.gr-process-step__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 12px;
}

.gr-process-step__text {
	font-size: 0.85rem;
	color: var(--gr-text-muted, #8A8A8A);
	line-height: 1.7;
}

.gr-process-step--light {
	border-bottom-color: #E0E0E8;
}
.gr-process-step--light .gr-process-step__number {
	color: var(--gr-gold-dark, #A88B3D);
}
.gr-process-step--light .gr-process-step__title {
	color: #0A0A0A;
}
.gr-process-step--light .gr-process-step__text {
	color: #4A4A5A;
}

/* ── Process Step responsive ── */
@media (max-width: 768px) {
	.gr-process-step {
		gap: 20px;
		padding: 28px 0;
	}
	.gr-process-step__number {
		font-size: 2rem;
		width: 50px;
	}
	.gr-process-step__title {
		font-size: 1.125rem;
	}
}

@media (max-width: 480px) {
	.gr-process-step {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
	.gr-process-step__number {
		width: auto;
	}
}

/* ─── Team Member Widget ─── */
.gr-team-member {
	text-align: center;
}

.gr-team-member__photo {
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	margin-bottom: 24px;
	border: 1px solid var(--gr-border, #2A2A35);
	transition: border-color 0.3s ease;
}

.gr-team-member:hover .gr-team-member__photo {
	border-color: var(--gr-gold, #C8A759);
}

.gr-team-member__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(30%);
	transition: filter 0.4s ease;
}

.gr-team-member:hover .gr-team-member__photo img {
	filter: grayscale(0%);
}

.gr-team-member__name {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.375rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 4px;
}

.gr-team-member__role {
	font-size: 0.8125rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-team-member__bio {
	font-size: 0.875rem;
	color: var(--gr-text-muted, #7A7A8A);
	line-height: 1.7;
}

.gr-team-member--light .gr-team-member__photo {
	border-color: #E0E0E8;
}
.gr-team-member--light:hover .gr-team-member__photo {
	border-color: var(--gr-gold, #C8A759);
}
.gr-team-member--light .gr-team-member__name {
	color: #0A0A0A;
}
.gr-team-member--light .gr-team-member__role {
	color: var(--gr-gold-dark, #A88B3D);
}
.gr-team-member--light .gr-team-member__bio {
	color: #4A4A5A;
}

/* ── Team Member responsive ── */
@media (max-width: 768px) {
	.gr-team-member__name {
		font-size: 1.25rem;
	}
	.gr-team-member__photo {
		margin-bottom: 16px;
	}
}

/* ─── Team Section Widget ─── */

/* Header — mirrors gr-tsec pattern */
.gr-team__header {
	text-align: center;
	margin-bottom: 60px;
}

.gr-team__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-team__label::before,
.gr-team__label::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
	opacity: 0.4;
}

.gr-team__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	line-height: 1.2;
	margin-bottom: 20px;
}

.gr-team__title em,
.gr-team__title i {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

.gr-team__divider {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto;
}

/* Grid */
.gr-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

/* Card */
.gr-team__card {
	text-align: center;
}

.gr-team__photo {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	margin-bottom: 20px;
	background: rgba(255,255,255,0.03);
}

.elementor-widget .gr-team__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.6s ease;
}

.gr-team__card:hover .gr-team__photo img {
	transform: scale(1.04);
}

.gr-team__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.03);
	color: var(--gr-text-muted, #7A7A8A);
}

/* Overlay */
.gr-team__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 55%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gr-team__card:hover .gr-team__overlay {
	opacity: 1;
}

.gr-team__desc {
	font-size: 0.8125rem;
	color: rgba(255,255,255,0.9);
	line-height: 1.65;
	margin-bottom: 14px;
}

.gr-team__contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	border-top: 1px solid rgba(200,167,89,0.25);
	padding-top: 12px;
}

.gr-team__link {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	color: var(--gr-gold, #C8A759) !important;
	text-decoration: none !important;
	transition: color 0.3s ease;
	margin-bottom: 0 !important;
}

.gr-team__link:hover {
	color: #fff !important;
}

.gr-team__link svg {
	flex-shrink: 0;
	fill: currentColor;
}

/* Info below photo */
.gr-team__info {
	padding: 0 4px;
}

.gr-team__name {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 4px;
	line-height: 1.3;
}

.gr-team__role {
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
}

/* Light scheme */
.gr-team--light .gr-team__title {
	color: #0A0A0A;
}

.gr-team--light .gr-team__title em,
.gr-team--light .gr-team__title i {
	color: var(--gr-gold-dark, #A88B3D);
}

.gr-team--light .gr-team__name {
	color: #0A0A0A;
}

.gr-team--light .gr-team__role {
	color: var(--gr-gold-dark, #A88B3D);
}

.gr-team--light .gr-team__label {
	color: var(--gr-gold-dark, #A88B3D);
}

.gr-team--light .gr-team__label::before,
.gr-team--light .gr-team__label::after {
	background: var(--gr-gold-dark, #A88B3D);
}

.gr-team--light .gr-team__divider {
	background: var(--gr-gold-dark, #A88B3D);
}

/* Responsive */
@media (max-width: 1024px) {
	.gr-team__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.gr-team__header {
		margin-bottom: 40px;
	}
	.gr-team__overlay {
		padding: 20px;
	}
	.gr-team__desc {
		font-size: 0.78rem;
	}
}

@media (max-width: 600px) {
	.gr-team__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.gr-team__photo {
		aspect-ratio: 3 / 4;
	}
	.gr-team__overlay {
		padding: 16px;
	}
	.gr-team__desc {
		font-size: 0.75rem;
		margin-bottom: 10px;
	}
	.gr-team__name {
		font-size: 1rem;
	}
	.gr-team__role {
		font-size: 0.65rem;
	}
	.gr-team__link {
		font-size: 0.7rem;
	}
}

@media (max-width: 400px) {
	.gr-team__grid {
		grid-template-columns: 1fr;
		max-width: 300px;
		margin: 0 auto;
	}
}

/* ─── Investment Card Widget ─── */
.gr-investment-card {
	background-color: var(--gr-card, #111111);
	border: 1px solid var(--gr-border, #2A2A35);
	overflow: hidden;
	transition: border-color 0.4s ease, transform 0.4s ease;
}

.gr-investment-card:hover {
	border-color: var(--gr-gold, #C8A759);
	transform: translateY(-4px);
}

.gr-investment-card__image {
	width: 100%;
	height: 320px;
	overflow: hidden;
	position: relative;
}

.gr-investment-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.gr-investment-card:hover .gr-investment-card__image img {
	transform: scale(1.05);
}

.gr-investment-card__badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: var(--gr-gold, #C8A759);
	color: var(--gr-black, #0A0A0A);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	padding: 6px 16px;
}

.gr-investment-card__body {
	padding: 32px;
}

.gr-investment-card__location {
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 8px;
}

.gr-investment-card__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 12px;
	line-height: 1.3;
}

.gr-investment-card__description {
	font-size: 0.875rem;
	color: var(--gr-text, #C8C8D0);
	line-height: 1.7;
	margin-bottom: 24px;
}

.gr-investment-card__meta {
	display: flex;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--gr-border, #2A2A35);
}

.gr-investment-card__meta-item {
	flex: 1;
}

.gr-investment-card__meta-label {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--gr-text-muted, #7A7A8A);
	margin-bottom: 4px;
}

.gr-investment-card__meta-value {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--gr-gold, #C8A759);
}

.gr-investment-card__cta {
	display: block;
	text-align: center;
	padding: 16px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	border-top: 1px solid var(--gr-border, #2A2A35);
	transition: all 0.3s ease;
	text-decoration: none;
}

.gr-investment-card__cta:hover {
	background-color: var(--gr-gold, #C8A759);
	color: var(--gr-black, #0A0A0A);
}

/* ── Investment Card responsive ── */
@media (max-width: 768px) {
	.gr-investment-card__image {
		height: 200px;
	}
	.gr-investment-card__body {
		padding: 24px;
	}
	.gr-investment-card__title {
		font-size: 1.25rem;
	}
	.gr-investment-card__meta {
		flex-direction: column;
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.gr-investment-card__image {
		height: 180px;
	}
	.gr-investment-card__body {
		padding: 20px;
	}
}

/* ─── Gallery Widget ─── */
.gr-gallery {
	width: 100%;
}

.gr-gallery__grid {
	display: grid;
	gap: 6px;
}

.gr-gallery__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gr-gallery__grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
.gr-gallery__grid--cols-4 { grid-template-columns: repeat(2, 1fr); }

/* Masonry rhythm — every 5th item spans full width for visual variety */
.gr-gallery__item:nth-child(5n+1) {
	grid-column: span 2;
}

.gr-gallery__item:nth-child(5n+1) .gr-gallery__image-wrap {
	aspect-ratio: 5 / 2;
}

@media (max-width: 768px) {
	.gr-gallery__grid--cols-2,
	.gr-gallery__grid--cols-3,
	.gr-gallery__grid--cols-4 {
		grid-template-columns: 1fr;
		gap: 4px;
	}
	.gr-gallery__item:nth-child(5n+1) {
		grid-column: span 1;
	}
	.gr-gallery__item:nth-child(5n+1) .gr-gallery__image-wrap {
		aspect-ratio: 16 / 9;
	}
}

.gr-gallery__item {
	overflow: hidden;
}

.gr-gallery__item--hidden {
	display: none;
}

.gr-gallery__item--hidden.gr-gallery__item--visible {
	display: block;
	animation: grGalleryFadeIn 0.4s ease;
}

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

.gr-gallery__image-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	cursor: pointer;
	background-color: var(--gr-card, #111111);
	border: none;
}

.gr-gallery__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--gr-ease-premium, cubic-bezier(0.16, 1, 0.3, 1));
}

.gr-gallery__image-wrap:hover img {
	transform: scale(1.05);
}

.gr-gallery__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: var(--gr-text-muted, #7A7A8A);
	font-size: 0.875rem;
}

.gr-gallery__placeholder i {
	font-size: 2rem;
	color: var(--gr-border, #2A2A35);
}

.gr-gallery__caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 32px;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.85) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gr-gallery__image-wrap:hover .gr-gallery__caption {
	opacity: 1;
}

.gr-gallery__zoom {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 10, 10, 0.6);
	border: 1px solid rgba(200, 169, 81, 0.3);
	color: var(--gr-gold, #C8A759);
	font-size: 0.75rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gr-gallery__image-wrap:hover .gr-gallery__zoom {
	opacity: 1;
}

/* ── Expand / Collapse toggle bar ── */
.gr-gallery__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 8px;
	padding: 16px 0;
	background: var(--gr-card, #111111);
	border: 1px solid var(--gr-border, #2A2A35);
	color: var(--gr-gold, #C8A759);
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.gr-gallery__toggle:hover {
	background: var(--gr-dark-alt, #151B26);
	border-color: var(--gr-gold, #C8A759);
}

.gr-gallery__toggle-count {
	font-weight: 400;
	opacity: 0.7;
}

.gr-gallery__toggle-icon {
	font-size: 0.625rem;
	transition: transform 0.3s ease;
}

.gr-gallery__toggle-icon--open {
	transform: rotate(180deg);
}

/* ─── Lightbox ─── */
.gr-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gr-lightbox--open {
	opacity: 1;
	visibility: visible;
}

.gr-lightbox__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.gr-lightbox__container {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	gap: 24px;
	z-index: 1;
}

.gr-lightbox__content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gr-lightbox__img {
	max-width: 80vw;
	max-height: 80vh;
	object-fit: contain;
	border: 1px solid var(--gr-border, #2A2A35);
	animation: grLightboxIn 0.3s ease;
}

@keyframes grLightboxIn {
	from { opacity: 0; transform: scale(0.95); }
	to   { opacity: 1; transform: scale(1); }
}

.gr-lightbox__caption {
	margin-top: 16px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.875rem;
	color: var(--gr-text, #C8C8D0);
	text-align: center;
}

.gr-lightbox__close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--gr-border, #2A2A35);
	color: var(--gr-white, #FFFFFF);
	font-size: 1rem;
	cursor: pointer;
	transition: border-color 0.3s ease, color 0.3s ease;
}

.gr-lightbox__close:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
}

.gr-lightbox__nav {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(26, 26, 36, 0.8);
	border: 1px solid var(--gr-border, #2A2A35);
	color: var(--gr-white, #FFFFFF);
	font-size: 1rem;
	cursor: pointer;
	flex-shrink: 0;
	transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.gr-lightbox__nav:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
	background: rgba(200, 169, 81, 0.1);
}

.gr-lightbox__counter {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--gr-text-muted, #7A7A8A);
}

@media (max-width: 768px) {
	.gr-lightbox__nav {
		width: 36px;
		height: 36px;
		font-size: 0.875rem;
	}
	.gr-lightbox__container {
		gap: 8px;
	}
	.gr-lightbox__img {
		max-width: 85vw;
	}
}

/* ═══════════════════════════════════════════════════════════════
   HERO WIDGET — Premium Fullscreen with Slideshow & Gold Accents
   ═══════════════════════════════════════════════════════════════ */

.gr-hero {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	min-height: 800px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.gr-hero__bg {
	position: absolute;
	inset: -10%;
	width: 120%;
	height: 120%;
	z-index: 0;
	will-change: transform;
	pointer-events: none;
}

.gr-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
	transform: scale(1);
}

.gr-hero__slide--active {
	opacity: 1;
	z-index: 1;
}

/* Outgoing slide — subtle zoom-out + fade for cinematic feel */
.gr-hero__slide--leaving {
	opacity: 0;
	transform: scale(1.04);
	z-index: 0;
	transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When NOT using Ken Burns (pure fade), add a gentle scale on entry */
.gr-hero[data-transition="fade"] .gr-hero__slide--active {
	animation: grFadeEntry 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes grFadeEntry {
	0%   { transform: scale(1.03); }
	100% { transform: scale(1); }
}

/* Ken Burns zoom — JS handles per-slide transform variation, CSS provides the easing */
.gr-hero[data-transition="zoom"] .gr-hero__slide {
	/* transform is driven by JS for unique Ken Burns per slide */
}

.gr-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

/* ── Gold decorative accents ── */
.gr-hero__accent {
	position: absolute;
	z-index: 3;
	pointer-events: none;
}

.gr-hero__accent--top-left {
	top: 40px;
	left: 40px;
	width: 80px;
	height: 80px;
	border-top: 1px solid var(--gr-gold, #C8A759);
	border-left: 1px solid var(--gr-gold, #C8A759);
	opacity: 0.15;
}

.gr-hero__accent--top-right {
	top: 40px;
	right: 40px;
	width: 80px;
	height: 80px;
	border-top: 1px solid var(--gr-gold, #C8A759);
	border-right: 1px solid var(--gr-gold, #C8A759);
	opacity: 0.15;
}

.gr-hero__accent--bottom-line {
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--gr-gold, #C8A759) 30%, var(--gr-gold, #C8A759) 70%, transparent 100%);
	opacity: 0.25;
}

/* ── Floating gold particles ── */
.gr-hero__gold-particles {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

.gr-hero__gold-particles span {
	position: absolute;
	width: 3px;
	height: 3px;
	background: var(--gr-gold, #C8A759);
	opacity: 0;
	animation: none;
	display: none;
}

.gr-hero__gold-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.gr-hero__gold-particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; }
.gr-hero__gold-particles span:nth-child(3) { left: 55%; top: 30%; animation-delay: 3s; animation-duration: 8s; width: 2px; height: 2px; }
.gr-hero__gold-particles span:nth-child(4) { left: 75%; top: 70%; animation-delay: 4.5s; animation-duration: 10s; }
.gr-hero__gold-particles span:nth-child(5) { left: 90%; top: 40%; animation-delay: 2s; animation-duration: 7.5s; width: 2px; height: 2px; }

@keyframes grParticleFloat {
	0%   { opacity: 0; transform: translateY(0) scale(1); }
	20%  { opacity: 0.45; }
	50%  { opacity: 0.25; transform: translateY(-40px) scale(1.5); }
	80%  { opacity: 0.4; }
	100% { opacity: 0; transform: translateY(-80px) scale(0.5); }
}

/* ── Content ── */
.gr-hero__container {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: var(--gr-container-wide, 1400px);
	margin: 0 auto;
	padding: 140px 60px 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: inherit;
	height: 100%;
}

.gr-hero__content {
	max-width: 720px;
}

.gr-hero--align-center .gr-hero__content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.gr-hero--align-center .gr-hero__actions {
	justify-content: center;
}

.gr-hero--align-center .gr-hero__divider {
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(90deg, transparent, var(--gr-gold, #C8A759), transparent);
	transform-origin: center center;
}

.gr-hero__label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 32px;
	padding: 10px 22px;
	border: 1px solid rgba(200, 167, 89, 0.35);
	opacity: 0;
	transform: translateY(20px);
	animation: grHeroFadeUp 0.8s ease 0.5s forwards;
}

/* Badge dot animation */
.gr-hero__label::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--gr-gold, #C8A759);
	border-radius: 50%;
	animation: grBlink 2s ease-in-out infinite;
}

@keyframes grBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.gr-hero__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2.8rem, 5.5vw, 5rem);
	font-weight: 400;
	line-height: 1.1;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 28px;
	opacity: 0;
	transform: translateY(30px);
	animation: grHeroFadeUp 0.8s ease 0.7s forwards;
}

.gr-hero__title em,
.gr-hero__title i {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

.gr-hero__subtitle {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 1.125rem;
	font-weight: 300;
	letter-spacing: 0.12em;
	color: var(--gr-gold-light, #D4B85C);
	margin-bottom: 20px;
	animation: grHeroFadeUp 1s ease 0.55s both;
}

.gr-hero__divider {
	width: 100px;
	height: 2px;
	background: linear-gradient(90deg, var(--gr-gold, #C8A759), transparent);
	margin-bottom: 24px;
	transform-origin: left center;
	animation: grHeroDivider 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.65s both;
}

.gr-hero__desc {
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 48px;
	max-width: 560px;
	opacity: 0;
	transform: translateY(30px);
	animation: grHeroFadeUp 0.8s ease 0.9s forwards;
}

.gr-hero--align-center .gr-hero__desc {
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}

.gr-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	opacity: 0;
	transform: translateY(30px);
	animation: grHeroFadeUp 0.8s ease 1.1s forwards;
}

/* ── Buttons ── */
.gr-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 20px 48px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.35s ease;
}

.gr-hero__btn--primary {
	background: linear-gradient(135deg, var(--gr-gold, #C8A759), var(--gr-gold-dark, #A68B3E));
	color: var(--gr-black, #0A0A0A);
	border: none;
	font-weight: 700;
}

.gr-hero__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(200, 167, 89, 0.3);
}

.gr-hero__btn--outline {
	background: transparent;
	color: var(--gr-white, #FFFFFF);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.gr-hero__btn--outline:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
}

/* ── Slide dots ── */
.gr-hero__dots {
	position: absolute;
	bottom: 80px;
	right: 60px;
	display: flex;
	gap: 12px;
	z-index: 6;
}

.gr-hero__dot {
	width: 12px;
	height: 12px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.gr-hero__dot--active,
.gr-hero__dot:hover {
	background: var(--gr-gold, #C8A759);
	border-color: var(--gr-gold, #C8A759);
}

/* ── Scroll indicator ── */
.gr-hero__scroll {
	position: absolute;
	bottom: 40px;
	left: 60px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 6;
}

.gr-hero__scroll-text {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.gr-hero__scroll-line {
	width: 60px;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
	position: relative;
	overflow: hidden;
}

.gr-hero__scroll-line::after {
	content: '';
	position: absolute;
	left: -100%;
	top: 0;
	width: 50%;
	height: 100%;
	background: var(--gr-gold, #C8A759);
	animation: grScrollLine 2.5s ease-in-out infinite;
}

@keyframes grScrollLine {
	0%   { left: -50%; }
	100% { left: 100%; }
}

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

@keyframes grHeroDivider {
	0%   { opacity: 0; transform: translateY(30px) scaleX(0); }
	40%  { opacity: 1; transform: translateY(0) scaleX(0); }
	100% { opacity: 1; transform: translateY(0) scaleX(1); }
}

/* ── Progress bar navigation ── */
.gr-hero__progress {
	position: absolute;
	bottom: 80px;
	right: 60px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 6;
}

.gr-hero__progress-bar {
	width: 120px;
	height: 2px;
	background: rgba(255,255,255,0.15);
	position: relative;
	overflow: hidden;
}

.gr-hero__progress-bar::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: var(--gr-gold, #C8A759);
	transform-origin: left;
	animation: grProgressFill linear infinite;
	animation-duration: inherit;
}

@keyframes grProgressFill {
	from { transform: scaleX(0); }
	to   { transform: scaleX(1); }
}

.gr-hero__progress-current,
.gr-hero__progress-total {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
}

.gr-hero__progress-total {
	color: var(--gr-text-muted, #8E8E9E);
	font-size: 0.875rem;
}

/* ── Number counter navigation ── */
.gr-hero__counter {
	position: absolute;
	bottom: 80px;
	right: 60px;
	display: flex;
	align-items: center;
	gap: 16px;
	z-index: 6;
}

.gr-hero__counter-current {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 2rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
	transition: opacity 0.3s ease;
}

.gr-hero__counter-line {
	width: 40px;
	height: 1px;
	background: rgba(255,255,255,0.2);
}

.gr-hero__counter-total {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1rem;
	font-weight: 400;
	color: var(--gr-text-muted, #8E8E9E);
	line-height: 1;
}

/* ── Hero responsive ── */
@media (max-width: 1024px) {
	.gr-hero__container {
		padding: 100px 40px 60px;
	}
	.gr-hero__accent--top-left,
	.gr-hero__accent--top-right {
		width: 50px;
		height: 50px;
		top: 20px;
	}
	.gr-hero__accent--top-left { left: 20px; }
	.gr-hero__accent--top-right { right: 20px; }
	.gr-hero__dots { right: 40px; bottom: 60px; }
	.gr-hero__scroll { left: 40px; bottom: 30px; }
	.gr-hero__progress,
	.gr-hero__counter {
		right: 40px;
		bottom: 60px;
	}
}

@media (max-width: 768px) {
	.gr-hero__container {
		padding: 100px 24px 60px;
	}
	.gr-hero__title {
		font-size: clamp(2.25rem, 8vw, 3.25rem);
	}
	.gr-hero__btn {
		padding: 16px 32px;
		font-size: 0.75rem;
	}
	.gr-hero__accent--top-left,
	.gr-hero__accent--top-right {
		display: none;
	}
	.gr-hero__dots {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		bottom: 60px;
	}
	.gr-hero__scroll {
		left: 50%;
		transform: translateX(-50%);
		bottom: 20px;
	}
	.gr-hero__progress,
	.gr-hero__counter {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		bottom: 60px;
	}
}

@media (max-width: 480px) {
	.gr-hero__actions {
		flex-direction: column;
	}
	.gr-hero__btn {
		justify-content: center;
		width: 100%;
	}
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT / SPLIT WIDGET — Premium Image + Text Layout
   ═══════════════════════════════════════════════════════════════ */

.gr-about {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
	color: var(--gr-text, #C8C8D0);
}

.gr-about--bg-dark     { background-color: var(--gr-black, #0A0A0A); }
.gr-about--bg-dark-alt { background-color: var(--gr-dark-alt, #151B26); }
.gr-about--bg-card     { background-color: var(--gr-card, #111111); }
.gr-about--bg-light    { background-color: #FFFFFF; }

/* ── Light scheme overrides ── */
.gr-about--bg-light .gr-about__label {
	color: var(--gr-gold-dark, #A88B3D);
}
.gr-about--bg-light .gr-about__title {
	color: var(--gr-black, #0A0A0A);
}
.gr-about--bg-light .gr-about__desc,
.gr-about--bg-light .gr-about__desc p {
	color: #4A4A5A;
}
.gr-about--bg-light .gr-about__feature {
	color: #111111;
}
.gr-about--bg-light .gr-about__feature-icon {
	color: var(--gr-gold-dark, #A88B3D);
}
.gr-about--bg-light .gr-about__btn {
	color: var(--gr-gold-dark, #A88B3D);
	border-bottom-color: rgba(168, 139, 61, 0.3);
}
.gr-about--bg-light .gr-about__btn:hover {
	color: #8A7232;
	border-bottom-color: var(--gr-gold-dark, #A88B3D);
}
.gr-about--bg-light .gr-about__stat-number {
	color: var(--gr-gold-dark, #A88B3D);
}
.gr-about--bg-light .gr-about__stat-label {
	color: #6A6A7A;
}
.gr-about--bg-light .gr-about__stats {
	border-top-color: #E0E0E8;
}
.gr-about--bg-light .gr-about__image-wrap--framed {
	border-color: #E0E0E8;
}
.gr-about--bg-light .gr-about__image-secondary {
	border-color: #FFFFFF;
}
.gr-about--bg-light .gr-about__placeholder {
	background: #F0F0F4;
	color: #C0C0C8;
}
.gr-about--bg-light .gr-about__gold-line {
	background: var(--gr-gold-dark, #A88B3D);
}

/* ── Decorative pattern ── */
.gr-about__pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.03;
	background-image:
		linear-gradient(30deg, var(--gr-gold, #C8A759) 12%, transparent 12.5%, transparent 87%, var(--gr-gold, #C8A759) 87.5%, var(--gr-gold, #C8A759)),
		linear-gradient(150deg, var(--gr-gold, #C8A759) 12%, transparent 12.5%, transparent 87%, var(--gr-gold, #C8A759) 87.5%, var(--gr-gold, #C8A759)),
		linear-gradient(30deg, var(--gr-gold, #C8A759) 12%, transparent 12.5%, transparent 87%, var(--gr-gold, #C8A759) 87.5%, var(--gr-gold, #C8A759)),
		linear-gradient(150deg, var(--gr-gold, #C8A759) 12%, transparent 12.5%, transparent 87%, var(--gr-gold, #C8A759) 87.5%, var(--gr-gold, #C8A759)),
		linear-gradient(60deg, rgba(200,169,81,0.5) 25%, transparent 25.5%, transparent 75%, rgba(200,169,81,0.5) 75%, rgba(200,169,81,0.5)),
		linear-gradient(60deg, rgba(200,169,81,0.5) 25%, transparent 25.5%, transparent 75%, rgba(200,169,81,0.5) 75%, rgba(200,169,81,0.5));
	background-size: 80px 140px;
	background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

/* ── Inner layout ── */
.gr-about__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: var(--gr-container-wide, 1400px);
	margin: 0 auto;
	padding: 0 60px;
	align-items: center;
}

.gr-about--img-right .gr-about__inner {
	direction: rtl;
}

.gr-about--img-right .gr-about__inner > * {
	direction: ltr;
}

/* ── Image side ── */
.gr-about__media {
	position: relative;
}

.gr-about__image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
}

.elementor-widget .gr-about__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.gr-about__image-wrap:hover img {
	transform: scale(1.03);
}

.gr-about__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gr-card, #111111);
	color: var(--gr-border, #2A2A35);
	font-size: 3rem;
}

/* Gold frame accent */
.gr-about__image-wrap--framed {
	border: 1px solid var(--gr-border, #2A2A35);
}

/* Gold offset border accent — like reference site */
.gr-about__frame {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 100%;
	height: 100%;
	border: 1px solid var(--gr-gold, #C8A759);
	opacity: 0.3;
	pointer-events: none;
	z-index: -1;
}

.gr-about__frame::after {
	display: none;
}

.gr-about__image-wrap--framed .gr-about__frame {
	top: -20px;
	left: -20px;
	width: 100%;
	height: 100%;
	right: auto;
	bottom: auto;
}

.gr-about__image-wrap--framed .gr-about__frame::after {
	display: none;
}

/* Secondary image overlay */
.gr-about__image-secondary {
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 45%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 3px solid var(--gr-black, #0A0A0A);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	z-index: 3;
}

.gr-about__image-secondary img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Experience badge */
.gr-about__badge {
	position: absolute;
	top: 30px;
	right: -20px;
	background: var(--gr-gold, #C8A759);
	padding: 20px 24px;
	text-align: center;
	z-index: 4;
	min-width: 100px;
}

.gr-about__badge-number {
	display: block;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 2rem;
	font-weight: 700;
	color: var(--gr-black, #0A0A0A);
	line-height: 1;
}

.gr-about__badge-label {
	display: block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gr-black, #0A0A0A);
	margin-top: 4px;
	opacity: 0.7;
}

/* ── Text side ── */
.gr-about__text {
	position: relative;
}

.gr-about__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-about__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 400;
	line-height: 1.15;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 24px;
}

.gr-about__title em,
.gr-about__title i {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

.gr-about__gold-line {
	width: 60px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
	margin-bottom: 24px;
}

.gr-about__desc {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--gr-text, #C8C8D0);
	margin-bottom: 32px;
}

.gr-about__desc p {
	margin-bottom: 16px;
}

.gr-about__desc p:last-child {
	margin-bottom: 0;
}

/* ── Features checklist ── */
.gr-about__features {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 32px;
}

.gr-about__feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0;
	background: none;
	border: none;
	color: var(--gr-text, #C8C8D0);
	font-size: 0.95rem;
	line-height: 1.5;
}

.gr-about__feature-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gr-gold, #C8A759);
}

/* ── Button ── */
.gr-about__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gr-gold, #C8A759);
	padding: 14px 0;
	border-bottom: 1px solid rgba(200, 169, 81, 0.3);
	transition: all 0.3s ease;
	margin-bottom: 48px;
}

.gr-about__btn:hover {
	border-bottom-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold-light, #D4B85C);
}

.gr-about__btn-arrow {
	transition: transform 0.3s ease;
}

.gr-about__btn:hover .gr-about__btn-arrow {
	transform: translateX(4px);
}

/* ── Stats row ── */
.gr-about__stats {
	display: flex;
	gap: 40px;
	padding-top: 40px;
	border-top: 1px solid var(--gr-border, #2A2A35);
}

.gr-about__stat {
	display: flex;
	flex-direction: column;
}

.gr-about__stat-number {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 2rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
	margin-bottom: 4px;
}

.gr-about__stat-label {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gr-text-muted, #7A7A8A);
}

/* ── About responsive ── */
@media (max-width: 1024px) {
	.gr-about {
		padding: 80px 0;
	}
	.gr-about__inner {
		gap: 50px;
		padding: 0 40px;
	}
	.gr-about__badge {
		right: 0;
	}
	.gr-about__image-secondary {
		bottom: -20px;
		right: -15px;
		width: 40%;
	}
}

@media (max-width: 768px) {
	.gr-about {
		padding: 60px 0;
	}
	.gr-about__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 24px;
	}
	.gr-about--img-right .gr-about__inner {
		direction: ltr;
	}
	.gr-about__image-wrap {
		aspect-ratio: 3 / 4;
		max-width: 400px;
		margin: 0 auto;
	}
	.gr-about__badge {
		top: auto;
		bottom: -15px;
		right: 20px;
		padding: 14px 18px;
	}
	.gr-about__badge-number {
		font-size: 1.5rem;
	}
	.gr-about__image-secondary {
		width: 35%;
		bottom: -15px;
		right: auto;
		left: 20px;
	}
	.gr-about__stats {
		gap: 24px;
		flex-wrap: wrap;
	}
	.gr-about__stat-number {
		font-size: 1.5rem;
	}
	.gr-about__image-wrap--framed .gr-about__frame {
		top: -8px;
		left: -8px;
		width: 50px;
		height: 50px;
	}
	.gr-about__features {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}


/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER WIDGET — Premium section opener
   ═══════════════════════════════════════════════════════════════ */

.gr-sh {
	position: relative;
	padding: 20px 0;
	overflow: hidden;
}

.gr-sh--bg-dark     { background-color: var(--gr-dark, #111118); padding: 80px 40px; }
.gr-sh--bg-dark-alt { background-color: var(--gr-dark-alt, #151B26); padding: 80px 40px; }
.gr-sh--bg-card     { background-color: var(--gr-card, #111111); padding: 80px 40px; }

.gr-sh__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.15;
}

.gr-sh__bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%);
}

.gr-sh__inner {
	position: relative;
	z-index: 1;
	max-width: var(--gr-container, 1200px);
	margin: 0 auto;
}

/* Alignment */
.gr-sh--align-center .gr-sh__inner { text-align: center; }
.gr-sh--align-left .gr-sh__inner { text-align: left; }

/* Big decorative section number */
.gr-sh__number {
	position: absolute;
	top: -20px;
	right: 0;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 10rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	opacity: 0.04;
	line-height: 1;
	pointer-events: none;
	z-index: 0;
}

.gr-sh--align-center .gr-sh__number {
	right: 50%;
	transform: translateX(50%);
}

/* Decorative center line (above label) */
.gr-sh__deco-line {
	width: 1px;
	height: 60px;
	background: linear-gradient(180deg, transparent, var(--gr-gold, #C8A759));
	margin: 0 auto 20px;
}

/* Gold bar for left-aligned */
.gr-sh__gold-bar {
	width: 80px;
	height: 3px;
	background: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-sh__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-sh__label::before {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
}

.gr-sh__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-weight: 400;
	line-height: 1.2;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 24px;
}

.gr-sh__title em,
.gr-sh__title i {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

.gr-sh--size-large .gr-sh__title  { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
.gr-sh--size-medium .gr-sh__title { font-size: clamp(1.75rem, 3vw, 2.75rem); }
.gr-sh--size-small .gr-sh__title  { font-size: clamp(1.5rem, 2.5vw, 2rem); }

/* Diamond ornament */
.gr-sh__diamond {
	font-size: 0.5rem;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
	letter-spacing: 0.5em;
	opacity: 0.6;
}

.gr-sh__desc {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--gr-text, #C8C8D0);
	max-width: 700px;
}

.gr-sh--align-center .gr-sh__desc {
	margin-left: auto;
	margin-right: auto;
}

/* Light color scheme (for light backgrounds) */
.gr-sh--scheme-light .gr-sh__title {
	color: var(--gr-dark, #0A0A0A);
}

.gr-sh--scheme-light .gr-sh__desc {
	color: #4A4A5A;
}

.gr-sh--scheme-light .gr-sh__deco-line {
	background: linear-gradient(180deg, transparent, var(--gr-gold, #C8A759));
}

.gr-sh--scheme-light .gr-sh__number {
	color: var(--gr-gold, #C8A759);
	opacity: 0.08;
}

/* ── Section Header responsive ── */
@media (max-width: 1024px) {
	.gr-sh--bg-dark,
	.gr-sh--bg-dark-alt,
	.gr-sh--bg-card {
		padding: 60px 32px;
	}
	.gr-sh__number {
		font-size: 7rem;
	}
}

@media (max-width: 768px) {
	.gr-sh--bg-dark,
	.gr-sh--bg-dark-alt,
	.gr-sh--bg-card {
		padding: 48px 24px;
	}
	.gr-sh__number {
		font-size: 5rem;
	}
	.gr-sh__title {
		font-size: clamp(1.5rem, 5vw, 2.5rem);
	}
	.gr-sh__deco-line {
		height: 35px;
	}
}


/* ═══════════════════════════════════════════════════════════════
   FEATURE BOX WIDGET — Image bg card with overlay & hover
   ═══════════════════════════════════════════════════════════════ */

.gr-fbox {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	text-decoration: none;
	cursor: default;
}

a.gr-fbox { cursor: pointer; }

/* Variant: Image */
.gr-fbox--image {
	min-height: 400px;
}

.gr-fbox__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.7s ease;
}

.gr-fbox:hover .gr-fbox__bg {
	transform: scale(1.08);
}

.gr-fbox__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.85) 70%, rgba(10,10,10,0.95) 100%);
	transition: background 0.4s ease;
}

.gr-fbox:hover .gr-fbox__overlay {
	background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.9) 100%);
}

/* Variant: Solid */
.gr-fbox--solid {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gr-fbox--solid:hover {
	background: rgba(200, 167, 89, 0.04);
	border-color: rgba(200, 167, 89, 0.15);
}

/* Variant: Outline */
.gr-fbox--outline {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gr-fbox--outline:hover {
	background: rgba(200, 167, 89, 0.04);
	border-color: rgba(200, 167, 89, 0.15);
}

.gr-fbox__content {
	position: relative;
	z-index: 2;
	padding: 40px 36px;
}

.gr-fbox--solid .gr-fbox__content,
.gr-fbox--outline .gr-fbox__content {
	padding: 48px 36px;
}

.gr-fbox__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.08);
	font-size: 1.4rem;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 24px;
	line-height: 1;
}

.gr-fbox__icon i {
	font-size: inherit;
	color: inherit;
}

.gr-fbox__icon svg {
	width: 2rem;
	height: 2rem;
	fill: var(--gr-gold, #C8A759);
}

.gr-fbox__gold-line {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
	transition: width 0.4s ease;
}

.gr-fbox:hover .gr-fbox__gold-line {
	width: 90px;
}

.gr-fbox__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 12px;
	line-height: 1.3;
}

.gr-fbox__desc {
	font-size: 0.88rem;
	color: var(--gr-text-muted, #8A8A8A);
	line-height: 1.7;
}

.gr-fbox--image .gr-fbox__desc {
	color: rgba(255, 255, 255, 0.75);
}

.gr-fbox__arrow {
	display: inline-block;
	margin-top: 20px;
	font-size: 1.25rem;
	color: var(--gr-gold, #C8A759);
	transition: transform 0.3s ease;
}

.gr-fbox:hover .gr-fbox__arrow {
	transform: translateX(8px);
}

/* Light color scheme (for light backgrounds) */
.gr-fbox--scheme-light .gr-fbox__title {
	color: var(--gr-dark, #0A0A0A);
}

.gr-fbox--scheme-light .gr-fbox__desc {
	color: #4A4A5A;
}

.gr-fbox--scheme-light.gr-fbox--outline {
	border-color: #E0E0E8;
	background: #FAFAFA;
}

.gr-fbox--scheme-light.gr-fbox--solid {
	background: #F8F7F4;
}

.gr-fbox--scheme-light.gr-fbox--image .gr-fbox__overlay {
	background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.92) 60%) !important;
}

.gr-fbox--scheme-light.gr-fbox--outline:hover {
	border-color: var(--gr-gold, #C8A759);
	background: #FFFFFF;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.gr-fbox--scheme-light .gr-fbox__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(200, 169, 81, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
}

.gr-fbox--scheme-light .gr-fbox__gold-line {
	background: var(--gr-gold, #C8A759);
}

/* ── Feature Box responsive ── */
@media (max-width: 1024px) {
	.gr-fbox--image {
		min-height: 320px;
	}
}

@media (max-width: 768px) {
	.gr-fbox--image {
		min-height: 260px;
	}
	.gr-fbox__content {
		padding: 28px 24px;
	}
	.gr-fbox--solid .gr-fbox__content,
	.gr-fbox--outline .gr-fbox__content {
		padding: 32px 24px;
	}
	.gr-fbox__title {
		font-size: 1.25rem;
	}
}

@media (max-width: 480px) {
	.gr-fbox--image {
		min-height: 220px;
	}
}


/* ═══════════════════════════════════════════════════════════════
   BANNER / DIVIDER WIDGET — Fullwidth parallax image band
   ═══════════════════════════════════════════════════════════════ */

.gr-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.gr-banner--h-small  { min-height: 300px; }
.gr-banner--h-medium { min-height: 450px; }
.gr-banner--h-large  { min-height: 600px; }

.gr-banner__bg {
	position: absolute;
	inset: -20%;
	width: 140%;
	height: 140%;
	background-size: cover;
	background-position: center;
}

.gr-banner--parallax .gr-banner__bg {
	background-attachment: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
}

@supports (-webkit-overflow-scrolling: touch) {
	.gr-banner--parallax .gr-banner__bg {
		background-attachment: scroll;
	}
}

/* Overlay variants */
.gr-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.gr-banner--ov-dark .gr-banner__overlay {
	background: rgba(10, 10, 10, 0.7);
}

.gr-banner--ov-gradient .gr-banner__overlay {
	background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%);
}

.gr-banner--ov-gold-tint .gr-banner__overlay {
	background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(200,169,81,0.15) 100%);
}

/* Gold edge lines */
.gr-banner__edge {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	z-index: 3;
	background: linear-gradient(90deg, transparent 0%, rgba(200,169,81,0.5) 30%, rgba(200,169,81,0.5) 70%, transparent 100%);
}

.gr-banner__edge--top { top: 0; }
.gr-banner__edge--bottom { bottom: 0; }

.gr-banner__container {
	position: relative;
	z-index: 2;
	max-width: var(--gr-container, 1200px);
	margin: 0 auto;
	padding: 60px 40px;
	width: 100%;
}

.gr-banner__content {
	max-width: 600px;
}

.gr-banner--ov-dark .gr-banner__content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.gr-banner__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-banner__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.75rem, 3.5vw, 3rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 16px;
}

.gr-banner__desc {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--gr-text, #C8C8D0);
	margin-bottom: 32px;
}

.gr-banner__btn {
	display: inline-block;
	padding: 16px 40px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	background: var(--gr-gold, #C8A759);
	color: var(--gr-black, #0A0A0A);
	border: 2px solid var(--gr-gold, #C8A759);
	transition: all 0.35s ease;
}

.gr-banner__btn:hover {
	background: transparent;
	color: var(--gr-gold, #C8A759);
}

@media (max-width: 768px) {
	.gr-banner__container { padding: 40px 24px; }
	.gr-banner--ov-gradient .gr-banner__overlay {
		background: rgba(10, 10, 10, 0.75);
	}
}


/* ═══════════════════════════════════════════════════════════════
   IMAGE CARD WIDGET — Image-first with hover overlay
   ═══════════════════════════════════════════════════════════════ */

.gr-icard {
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Aspect ratios */
.gr-icard--ar-16-9 { aspect-ratio: 16 / 9; }
.gr-icard--ar-4-3  { aspect-ratio: 4 / 3; }
.gr-icard--ar-1-1  { aspect-ratio: 1 / 1; }
.gr-icard--ar-4-5  { aspect-ratio: 4 / 5; }
.gr-icard--ar-3-4  { aspect-ratio: 3 / 4; }

.gr-icard__image {
	position: absolute;
	inset: 0;
}

.gr-icard__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.gr-icard:hover .gr-icard__image img {
	transform: scale(1.08);
}

.gr-icard__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gr-card, #111111);
	color: var(--gr-border, #2A2A35);
	font-size: 3rem;
}

/* Badge */
.gr-icard__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 5;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 8px 16px;
}

.gr-icard__badge--gold {
	background: var(--gr-gold, #C8A759);
	color: var(--gr-black, #0A0A0A);
}

.gr-icard__badge--dark {
	background: rgba(10, 10, 10, 0.8);
	color: var(--gr-white, #FFFFFF);
	border: 1px solid var(--gr-border, #2A2A35);
}

.gr-icard__badge--outline {
	background: transparent;
	color: var(--gr-white, #FFFFFF);
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(4px);
}

/* Always-visible bottom bar */
.gr-icard__bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 36px;
	background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.1) 100%);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gr-icard:hover .gr-icard__bar {
	background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 100%);
}

.gr-icard__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 8px;
	line-height: 1.2;
}

.gr-icard__subtitle {
	font-size: 0.8125rem;
	color: var(--gr-gold, #C8A759);
	letter-spacing: 0.05em;
}

/* Hover overlay */
.gr-icard__overlay {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	align-items: flex-end;
	padding: 32px 24px;
	background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.92) 55%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gr-icard:hover .gr-icard__overlay {
	opacity: 1;
}

.gr-icard__overlay-inner {
	transform: translateY(16px);
	transition: transform 0.4s ease;
}

.gr-icard:hover .gr-icard__overlay-inner {
	transform: translateY(0);
}

.gr-icard__overlay-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 8px;
}

.gr-icard__overlay-line {
	width: 30px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin-bottom: 12px;
}

.gr-icard__overlay-desc {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 12px;
}

.gr-icard__features {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
}

.gr-icard__features li {
	font-size: 0.75rem;
	color: var(--gr-gold, #C8A759);
	letter-spacing: 0.05em;
}

.gr-icard__features li::before {
	content: '·';
	margin-right: 6px;
	color: var(--gr-gold, #C8A759);
}

.gr-icard__overlay-link {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
}

/* ── Image Card responsive ── */
@media (max-width: 768px) {
	.gr-icard__overlay {
		padding: 24px 20px;
	}
	.gr-icard__bar {
		padding: 20px 20px 16px;
	}
	.gr-icard__overlay-title {
		font-size: 1.25rem;
	}
}


/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS — Fade-in on scroll + counting numbers
   ═══════════════════════════════════════════════════════════════ */

/* Elements with data-gr-animate will start hidden */
[data-gr-animate] {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-gr-animate="fade-left"] {
	opacity: 0;
	transform: translateX(-40px);
}

[data-gr-animate="fade-right"] {
	opacity: 0;
	transform: translateX(40px);
}

[data-gr-animate="scale"] {
	opacity: 0;
	transform: scale(0.9);
}

[data-gr-animate="fade-up"] {
	opacity: 0;
	transform: translateY(40px);
}

/* When visible */
[data-gr-animate].gr-animated {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* Staggered delay classes */
[data-gr-delay="100"] { transition-delay: 0.1s; }
[data-gr-delay="200"] { transition-delay: 0.2s; }
[data-gr-delay="300"] { transition-delay: 0.3s; }
[data-gr-delay="400"] { transition-delay: 0.4s; }
[data-gr-delay="500"] { transition-delay: 0.5s; }
[data-gr-delay="600"] { transition-delay: 0.6s; }
[data-gr-delay="700"] { transition-delay: 0.7s; }
[data-gr-delay="800"] { transition-delay: 0.8s; }
[data-gr-delay="900"]  { transition-delay: 0.9s; }
[data-gr-delay="1000"] { transition-delay: 1.0s; }
[data-gr-delay="1200"] { transition-delay: 1.2s; }

/* Slide-up (dramatic entrance) */
[data-gr-animate="slide-up"] {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Text reveal (clip from bottom) */
[data-gr-animate="text-reveal"] {
	opacity: 0;
	clip-path: inset(0 0 100% 0);
	transition: opacity 0.8s ease, clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-gr-animate="text-reveal"].gr-animated {
	opacity: 1;
	clip-path: inset(0 0 0 0);
}

/* Gold shimmer effect for premium elements */
@keyframes grGoldShimmer {
	0%   { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

.gr-shimmer {
	background: linear-gradient(
		90deg,
		var(--gr-gold, #C8A759) 0%,
		var(--gr-gold-light, #D4B85C) 25%,
		#E8D48A 50%,
		var(--gr-gold-light, #D4B85C) 75%,
		var(--gr-gold, #C8A759) 100%
	);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: grGoldShimmer 3s ease infinite;
}

/* Counter animation class */
.gr-count {
	display: inline-block;
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM 7 — Premium Dark Theme Styling
   ═══════════════════════════════════════════════════════════════ */

.gr-cf7-form {
	width: 100%;
}

.gr-cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.gr-cf7-col {
	display: flex;
	flex-direction: column;
}

.gr-cf7-col--full {
	grid-column: 1 / -1;
}

.gr-cf7-form label {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gr-text-muted, #7A7A8A);
	margin-bottom: 8px;
}

.gr-cf7-input,
.gr-cf7-select,
.gr-cf7-textarea,
.gr-cf7-form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
	width: 100%;
	padding: 14px 18px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.9375rem;
	color: var(--gr-white, #FFFFFF);
	background: var(--gr-dark-alt, #151B26);
	border: 1px solid var(--gr-border, #2A2A35);
	border-radius: 0;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	-webkit-appearance: none;
	appearance: none;
}

.gr-cf7-input:focus,
.gr-cf7-select:focus,
.gr-cf7-textarea:focus,
.gr-cf7-form .wpcf7-form-control:not(.wpcf7-submit):focus {
	border-color: var(--gr-gold, #C8A759);
	box-shadow: 0 0 0 1px rgba(200, 169, 81, 0.2);
}

.gr-cf7-input::placeholder,
.gr-cf7-textarea::placeholder {
	color: var(--gr-text-muted, #7A7A8A);
	opacity: 0.6;
}

.gr-cf7-textarea {
	min-height: 140px;
	resize: vertical;
}

.gr-cf7-select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A8A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

/* Submit button */
.gr-cf7-submit,
.gr-cf7-form .wpcf7-submit {
	display: inline-block;
	width: auto;
	min-width: 200px;
	padding: 16px 40px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--gr-gold, #C8A759);
	color: var(--gr-black, #0A0A0A);
	border: 2px solid var(--gr-gold, #C8A759);
	border-radius: 0;
	cursor: pointer;
	transition: all 0.35s ease;
}

.gr-cf7-submit:hover,
.gr-cf7-form .wpcf7-submit:hover {
	background: transparent;
	color: var(--gr-gold, #C8A759);
}

/* Acceptance / consent */
.gr-cf7-form .wpcf7-acceptance {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.gr-cf7-form .wpcf7-acceptance input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}

.gr-cf7-form .wpcf7-acceptance .wpcf7-list-item-label,
.gr-cf7-consent {
	font-size: 0.8125rem;
	color: var(--gr-text-muted, #7A7A8A);
	line-height: 1.6;
}

.gr-cf7-consent a,
.gr-cf7-form .wpcf7-acceptance a {
	color: var(--gr-gold, #C8A759);
	text-decoration: none;
}

/* Validation messages */
.gr-cf7-form .wpcf7-not-valid-tip {
	font-size: 0.75rem;
	color: #E74C3C;
	margin-top: 6px;
}

.gr-cf7-form .wpcf7-response-output {
	margin-top: 24px;
	padding: 16px 20px;
	font-size: 0.875rem;
	border: 1px solid var(--gr-border, #2A2A35);
}

.gr-cf7-form .wpcf7-mail-sent-ok {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
}

/* Spinner */
.gr-cf7-form .wpcf7-spinner {
	margin-left: 16px;
}

/* Compact variant */
.gr-cf7-form--compact .gr-cf7-row {
	margin-bottom: 16px;
}

.gr-cf7-form--compact .gr-cf7-input {
	padding: 12px 16px;
}

.gr-cf7-form--compact .gr-cf7-submit,
.gr-cf7-form--compact .wpcf7-submit {
	width: 100%;
	margin-top: 22px;
}

@media (max-width: 768px) {
	.gr-cf7-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}


/* ═══════════════════════════════════════════════════════════════
   PARALLAX DIVIDER — Fixed background image section break
   ═══════════════════════════════════════════════════════════════ */

.gr-pdiv {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	clip-path: inset(0);
	-webkit-clip-path: inset(0);
}

.gr-pdiv__bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.gr-pdiv::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(26,35,50,0.15) 0%, rgba(26,35,50,0.05) 50%, rgba(26,35,50,0.15) 100%);
	pointer-events: none;
	z-index: 1;
}

.gr-pdiv__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

/* ── Content layer ── */
.gr-pdiv__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--gr-container, 1200px);
	margin: 0 auto;
	padding: 40px;
	text-align: center;
}

/* ── Quote variant ── */
.gr-pdiv__quote {
	max-width: 700px;
	margin: 0 auto;
}

.gr-pdiv__quote-mark {
	display: block;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 5rem;
	line-height: 0.6;
	color: var(--gr-gold, #C8A759);
	opacity: 0.4;
	margin-bottom: 16px;
}

.gr-pdiv__quote-text {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.25rem, 2.5vw, 2rem);
	font-weight: 500;
	font-style: italic;
	line-height: 1.5;
	color: var(--gr-white, #FFFFFF);
	margin: 0;
}

.gr-pdiv__quote-author {
	display: block;
	margin-top: 24px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8125rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
}

/* ── Stats variant ── */
.gr-pdiv__stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
}

.gr-pdiv__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 120px;
}

.gr-pdiv__stat-number {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
	margin-bottom: 8px;
}

.gr-pdiv__stat-label {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

/* ── Logo / brand variant ── */
.gr-pdiv__logo {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gr-pdiv__logo-text {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 600;
	letter-spacing: 0.2em;
	color: var(--gr-white, #FFFFFF);
}

.gr-pdiv__logo-line {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 20px 0;
}

.gr-pdiv__logo-sub {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	opacity: 0.8;
}

/* ── CTA variant ── */
.gr-pdiv__cta {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.gr-pdiv__cta-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 32px;
	line-height: 1.15;
}

.gr-pdiv__cta-btn {
	position: relative;
	z-index: 3;
	display: inline-block;
	padding: 18px 40px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gr-black, #0A0A0A);
	background: var(--gr-gold, #C8A759);
	transition: background 0.3s ease, transform 0.3s ease;
}

.gr-pdiv__cta-btn:hover {
	background: var(--gr-gold-light, #D4B85C);
	transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.gr-pdiv__content {
		padding: 30px 24px;
	}
	.gr-pdiv__stats {
		gap: 30px 40px;
	}
}

/* ═══════════════════════════════════════════════════════════════
   Video Section Widget
   ═══════════════════════════════════════════════════════════════ */
.gr-video-section {
	text-align: center;
}

/* ── Header ── */
.gr-video-section__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-video-section__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 400;
	line-height: 1.2;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 16px;
}

.gr-video-section__divider {
	width: 80px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto 20px;
}

.gr-video-section__desc {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--gr-text-muted, #7A7A8A);
	max-width: 600px;
	margin: 0 auto 40px;
}

/* ── Player wrapper ── */
.gr-video-section__player {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	cursor: pointer;
	background: #000;
	border-radius: 4px;
}

.gr-video-section__player--16-9 {
	aspect-ratio: 16 / 9;
}

.gr-video-section__player--21-9 {
	aspect-ratio: 21 / 9;
}

.gr-video-section__player--4-3 {
	aspect-ratio: 4 / 3;
}

.gr-video-section__thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gr-video-section__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.5);
	transition: background 0.4s ease;
	pointer-events: none;
}

.gr-video-section__player:hover .gr-video-section__overlay {
	background: rgba(10, 10, 10, 0.35);
}

/* ── Play button ── */
.gr-video-section__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	border: none;
	background: none;
	color: var(--gr-gold, #C8A759);
	cursor: pointer;
	transition: transform 0.4s ease, color 0.3s ease;
	line-height: 1;
}

.gr-video-section__play svg circle {
	transition: stroke 0.3s ease, opacity 0.3s ease;
}

.gr-video-section__player:hover .gr-video-section__play {
	transform: translate(-50%, -50%) scale(1.1);
	color: var(--gr-gold, #C8A759);
}

.gr-video-section__player:hover .gr-video-section__play svg circle {
	stroke: var(--gr-gold, #C8A759);
	opacity: 1;
}

/* ── Iframe (after click) ── */
.gr-video-section__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.gr-video-section__html-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
	background: #000;
}

.gr-video-section__html-video--bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gr-video-section__player--active {
	cursor: default;
}

/* ── Gold border frame around player ── */
.gr-video-section__player::before {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid rgba(200, 167, 89, 0.12);
	z-index: 1;
	pointer-events: none;
	transition: border-color 0.4s ease;
}

.gr-video-section__player:hover::before {
	border-color: rgba(200, 167, 89, 0.4);
}

.gr-video-section__player--active::before {
	display: none;
}

/* ── CTA button ── */
.gr-video-section__cta {
	margin-top: 40px;
	text-align: center;
}

.gr-video-section__btn {
	display: inline-block;
	padding: 16px 40px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gr-black, #0A0A0A);
	background: var(--gr-gold, #C8A759);
	text-decoration: none;
	transition: background 0.3s ease, transform 0.3s ease;
}

.gr-video-section__btn:hover {
	background: var(--gr-gold-light, #D4B85C);
	transform: translateY(-2px);
}

/* ── Light scheme ── */
.gr-video-section--light .gr-video-section__title {
	color: var(--gr-black, #0A0A0A);
}

.gr-video-section--light .gr-video-section__desc {
	color: #4A4A5A;
}

.gr-video-section--light .gr-video-section__label {
	color: var(--gr-gold-dark, #A88B3D);
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.gr-video-section__player {
		max-width: 100%;
	}

	.gr-video-section__play svg {
		width: 52px;
		height: 52px;
	}
}


/* ═══════════════════════════════════════════════════════════════
   Calendar Widget
   ═══════════════════════════════════════════════════════════════ */
.gr-cal {
	background: var(--gr-dark, #0A0A0A);
	color: #fff;
	padding: 80px 48px;
	max-width: 1400px;
	margin: 0 auto;
}

/* ─── Header ─── */
.gr-cal__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}
.gr-cal__header-text {
	flex: 1;
	min-width: 260px;
}
.gr-cal__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: var(--gr-gold, #C8A759);
	text-transform: uppercase;
	margin-bottom: 12px;
}
.gr-cal__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	line-height: 1.15;
	margin: 0 0 12px 0;
}
.gr-cal__subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #9A9AB0;
	line-height: 1.6;
	max-width: 520px;
	margin: 0;
}

/* ─── Navigation ─── */
.gr-cal__nav {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}
.gr-cal__nav-month {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	min-width: 180px;
	text-align: center;
}
.gr-cal__nav-btn {
	width: 44px;
	height: 44px;
	border: 1px solid #2A2A35;
	background: transparent;
	color: #9A9AB0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.gr-cal__nav-btn:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
	background: rgba(200, 169, 81, 0.06);
}

/* ─── Calendar Grid ─── */
.gr-cal__grid {
	border: 1px solid #1E1E2A;
	margin-bottom: 56px;
}
.gr-cal__weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	border-bottom: 1px solid #1E1E2A;
	background: rgba(255, 255, 255, 0.02);
}
.gr-cal__weekdays span {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #8A8A9A;
	text-align: center;
	padding: 16px 8px;
}
.gr-cal__days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

/* ─── Day Cells ─── */
.gr-cal__day {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	padding: 12px 4px;
	border-right: 1px solid #111111;
	border-bottom: 1px solid #111111;
	cursor: default;
	transition: background 0.2s ease;
}
.gr-cal__day:nth-child(7n) {
	border-right: none;
}
.gr-cal__day--empty {
	background: rgba(0, 0, 0, 0.15);
}
.gr-cal__day-num {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #7A7A8A;
	line-height: 1;
}
.gr-cal__day--today .gr-cal__day-num {
	color: #fff;
	font-weight: 700;
}
.gr-cal__day--today::after {
	content: '';
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 4px;
	background: #fff;
	border-radius: 50%;
}
.gr-cal__day--past .gr-cal__day-num {
	color: #6A6A7A;
}

/* Event dot */
.gr-cal__day-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--gr-gold, #C8A759);
	border-radius: 50%;
	margin-top: 6px;
}
.gr-cal__day--has-event {
	cursor: pointer;
}
.gr-cal__day--has-event .gr-cal__day-num {
	color: var(--gr-gold, #C8A759);
	font-weight: 600;
}
.gr-cal__day--has-event:hover {
	background: rgba(200, 169, 81, 0.06);
}

/* Selected day */
.gr-cal__day--selected {
	background: rgba(200, 169, 81, 0.1);
}
.gr-cal__day--selected::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gr-gold, #C8A759);
}

/* ─── Events Section ─── */
.gr-cal__events {
	margin-top: 8px;
}
.gr-cal__events-title {
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 32px 0;
	padding-bottom: 16px;
	border-bottom: 1px solid #1E1E2A;
}

/* ─── Event Card ─── */
.gr-cal__event {
	display: flex;
	align-items: stretch;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	margin-bottom: 2px;
	opacity: 0;
	transform: translateY(16px);
	position: relative;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gr-cal__event:hover {
	border-color: rgba(200, 167, 89, 0.2);
	background: rgba(200, 167, 89, 0.03);
}
.gr-cal__event--animate {
	animation: grCalCardIn 0.5s ease forwards;
}
@keyframes grCalCardIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.gr-cal__event:last-child {
	margin-bottom: 0;
}
.gr-cal__event--highlight {
	background: rgba(200, 169, 81, 0.04);
}
.gr-cal__event--highlight::before {
	content: '';
	position: absolute;
	left: -16px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--gr-gold, #C8A759);
	animation: grCalHighlight 1.5s ease forwards;
}
@keyframes grCalHighlight {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

/* Date badge */
.gr-cal__event-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 40px;
	background: rgba(200, 167, 89, 0.06);
	border-right: 1px solid rgba(200, 167, 89, 0.15);
	min-width: 120px;
}
.gr-cal__event-day {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
}
.gr-cal__event-dayname {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gr-gold-light, #E8CC67);
	margin-top: 2px;
}
.gr-cal__event-month {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.7rem;
	color: var(--gr-text-muted, #8A8A8A);
	margin-top: 2px;
}

/* Event content */
.gr-cal__event-content {
	flex: 1;
	min-width: 0;
	padding: 28px 36px;
}
.gr-cal__event-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}
.gr-cal__event-format {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 3px 10px;
	border: 1px solid;
}
.gr-cal__event-format--stacjonarny {
	color: #5B9BD5;
	border-color: rgba(91, 155, 213, 0.3);
	background: rgba(91, 155, 213, 0.06);
}
.gr-cal__event-format--online {
	color: #6BC87D;
	border-color: rgba(107, 200, 125, 0.3);
	background: rgba(107, 200, 125, 0.06);
}
.gr-cal__event-format--hybrydowy {
	color: var(--gr-gold, #C8A759);
	border-color: rgba(200, 169, 81, 0.3);
	background: rgba(200, 169, 81, 0.06);
}
.gr-cal__event-past-badge {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: #8A8A9A;
	letter-spacing: 0.5px;
}

.gr-cal__event-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.15rem;
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin: 0 0 8px 0;
	line-height: 1.3;
}
.gr-cal__event--past .gr-cal__event-title {
	color: #7A7A8A;
}
.gr-cal__event-excerpt {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.85rem;
	color: var(--gr-text-muted, #8A8A8A);
	line-height: 1.6;
	margin: 0 0 12px 0;
}

/* Meta items */
.gr-cal__event-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-bottom: 20px;
}
.gr-cal__event-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.75rem;
	color: var(--gr-text-muted, #8A8A8A);
}
.gr-cal__event-meta-item svg {
	flex-shrink: 0;
	color: #5A5A6E;
}

/* CTA buttons */
.gr-cal__event-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.gr-cal__event-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 32px;
	background: transparent;
	border: 1px solid var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gr-cal__event-btn:hover {
	background: var(--gr-gold, #C8A759);
	color: var(--gr-black, #0A0A0A);
}
.gr-cal__event-link {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #9A9AB0;
	text-decoration: none;
	transition: color 0.3s ease;
}
.gr-cal__event-link:hover {
	color: var(--gr-gold, #C8A759);
}

/* Thumbnail in event card */
.gr-cal__event-thumb {
	display: none;
}

/* Show thumbnail when card has image — on wider screens */
.gr-cal__event:has(.gr-cal__event-thumb) {
	grid-template-columns: 80px 1fr 160px;
}
.gr-cal__event .gr-cal__event-thumb {
	display: block;
	overflow: hidden;
	align-self: start;
}
.gr-cal__event-thumb img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	display: block;
	filter: grayscale(20%);
	transition: filter 0.3s ease;
}
.gr-cal__event:hover .gr-cal__event-thumb img {
	filter: grayscale(0);
}

/* ─── Empty State ─── */
.gr-cal__empty {
	text-align: center;
	padding: 64px 24px;
	color: #8A8A9A;
}
.gr-cal__empty svg {
	margin-bottom: 16px;
	opacity: 0.5;
}
.gr-cal__empty p {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #8A8A9A;
	margin: 0;
}

/* ─── Light Scheme ─── */
.gr-cal--light {
	background: #FFFFFF;
	color: #0A0A0A;
}
.gr-cal--light .gr-cal__label {
	color: var(--gr-gold-dark, #A88B3D);
}
.gr-cal--light .gr-cal__title {
	color: #0A0A0A;
}
.gr-cal--light .gr-cal__desc {
	color: #4A4A5A;
}
.gr-cal--light .gr-cal__nav-month {
	color: #0A0A0A;
}
.gr-cal--light .gr-cal__nav-btn {
	border-color: #D0D0D8;
	color: #4A4A5A;
}
.gr-cal--light .gr-cal__nav-btn:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
}
.gr-cal--light .gr-cal__grid {
	border-color: #E0E0E8;
}
.gr-cal--light .gr-cal__weekdays {
	border-bottom-color: #E0E0E8;
	background: #F8F7F4;
}
.gr-cal--light .gr-cal__weekdays span {
	color: #6A6A7A;
}
.gr-cal--light .gr-cal__day {
	border-color: #F0F0F0;
}
.gr-cal--light .gr-cal__day--empty {
	background: #FAFAFA;
}
.gr-cal--light .gr-cal__day-num {
	color: #4A4A5A;
}
.gr-cal--light .gr-cal__day--today .gr-cal__day-num {
	color: #0A0A0A;
}
.gr-cal--light .gr-cal__day--today::after {
	background: #0A0A0A;
}
.gr-cal--light .gr-cal__day--past .gr-cal__day-num {
	color: #B0B0B8;
}
.gr-cal--light .gr-cal__day--has-event:hover {
	background: rgba(200, 169, 81, 0.08);
}
.gr-cal--light .gr-cal__day--selected {
	background: rgba(200, 169, 81, 0.1);
}
.gr-cal--light .gr-cal__events-title {
	color: #0A0A0A;
	border-bottom-color: #E0E0E8;
}
.gr-cal--light .gr-cal__event {
	border-bottom-color: #E0E0E8;
}
.gr-cal--light .gr-cal__event-dayname {
	color: #6A6A7A;
}
.gr-cal--light .gr-cal__event-month {
	color: #6A6A7A;
}
.gr-cal--light .gr-cal__event-title {
	color: #0A0A0A;
}
.gr-cal--light .gr-cal__event--past .gr-cal__event-title {
	color: #6A6A7A;
}
.gr-cal--light .gr-cal__event-past-badge {
	color: #8A8A9A;
}
.gr-cal--light .gr-cal__event-desc {
	color: #4A4A5A;
}
.gr-cal--light .gr-cal__event-meta-item {
	color: #4A4A5A;
}
.gr-cal--light .gr-cal__event-meta-item svg {
	color: #8A8A9A;
}
.gr-cal--light .gr-cal__event-link {
	color: #6A6A7A;
}
.gr-cal--light .gr-cal__event-btn {
	background: #0A0A0A;
	color: #FFFFFF;
	border-color: #0A0A0A;
}
.gr-cal--light .gr-cal__event-btn:hover {
	background: var(--gr-gold, #C8A759);
	border-color: var(--gr-gold, #C8A759);
	color: #0A0A0A;
}
.gr-cal--light .gr-cal__empty {
	color: #6A6A7A;
}
.gr-cal--light .gr-cal__empty p {
	color: #6A6A7A;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
	.gr-cal {
		padding: 60px 32px;
	}
	.gr-cal__event:has(.gr-cal__event-thumb) {
		grid-template-columns: 80px 1fr;
	}
	.gr-cal__event-thumb {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.gr-cal {
		padding: 40px 20px;
	}
	.gr-cal__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.gr-cal__nav {
		width: 100%;
		justify-content: space-between;
	}
	.gr-cal__nav-month {
		font-size: 18px;
		min-width: 140px;
	}
	.gr-cal__day {
		min-height: 52px;
		padding: 8px 2px;
	}
	.gr-cal__day-num {
		font-size: 13px;
	}
	.gr-cal__day-dot {
		width: 5px;
		height: 5px;
		margin-top: 4px;
	}
	.gr-cal__events-title {
		font-size: 22px;
		margin-bottom: 24px;
	}
	.gr-cal__event {
		flex-direction: column;
	}
	.gr-cal__event-date {
		flex-direction: row;
		gap: 8px;
		padding: 16px 20px;
		min-width: auto;
		border-right: none;
		border-bottom: 1px solid rgba(200, 167, 89, 0.15);
	}
	.gr-cal__event-day {
		font-size: 1.5rem;
	}
	.gr-cal__event-content {
		padding: 20px;
	}
	.gr-cal__event-title {
		font-size: 1rem;
	}
	.gr-cal__event-meta {
		gap: 6px 14px;
	}
	.gr-cal__event-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.gr-cal__event-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.gr-cal {
		padding: 32px 16px;
	}
	.gr-cal__weekdays span {
		font-size: 10px;
		padding: 10px 2px;
		letter-spacing: 0;
	}
	.gr-cal__day {
		min-height: 44px;
		padding: 6px 2px;
	}
	.gr-cal__day-num {
		font-size: 12px;
	}
	.gr-cal__event {
		grid-template-columns: 1fr;
		gap: 12px 0;
	}
	.gr-cal__event-date {
		flex-direction: row;
		gap: 8px;
		align-items: baseline;
	}
	.gr-cal__event-day {
		font-size: 22px;
	}
}

/* ─── Gold Line Reveal Animation ─── */
.gr-reveal-line {
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.gr-reveal-line--visible {
	transform: scaleX(1);
}

/* Vertical deco-line: scale Y instead */
.gr-sh__deco-line.gr-reveal-line {
	transform: scaleY(0);
	transform-origin: center bottom;
}

.gr-sh__deco-line.gr-reveal-line--visible {
	transform: scaleY(1);
}

/* Center-aligned elements expand from center */
.gr-hero--align-center .gr-reveal-line,
.gr-services__divider.gr-reveal-line {
	transform-origin: center center;
}


/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO GALLERY WIDGET — Tabbed gallery with categories
   ═══════════════════════════════════════════════════════════════ */

.gr-pgallery {
	max-width: var(--gr-container, 1200px);
	margin: 0 auto;
}

/* Header */
.gr-pgallery__header {
	text-align: center;
	margin-bottom: 48px;
}

.gr-pgallery__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-pgallery__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 16px;
}

.gr-pgallery__divider {
	width: 80px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto 20px;
}

.gr-pgallery__desc {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--gr-text, #C8C8D0);
	max-width: 600px;
	margin: 0 auto;
}

.gr-pgallery--light .gr-pgallery__label {
	color: var(--gr-gold-dark, #A88B3D);
}
.gr-pgallery--light .gr-pgallery__title {
	color: #0A0A0A;
}
.gr-pgallery--light .gr-pgallery__desc {
	color: #4A4A5A;
}
.gr-pgallery--light .gr-pgallery__tab {
	color: #4A4A5A;
	background: #F8F7F4;
	border-color: #E0E0E8;
}
.gr-pgallery--light .gr-pgallery__tab:hover {
	border-color: var(--gr-gold, #C8A759);
}
.gr-pgallery--light .gr-pgallery__btn {
	color: #0A0A0A;
	border-color: #0A0A0A;
}
.gr-pgallery--light .gr-pgallery__btn:hover {
	background: #0A0A0A;
	color: #FFFFFF;
}

/* Tabs */
.gr-pgallery__tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.gr-pgallery__tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--gr-text, #C8C8D0);
	background: var(--gr-card, #111111);
	border: 1px solid var(--gr-border, #2A2A35);
	cursor: pointer;
	transition: all 0.3s ease;
}

.gr-pgallery__tab i {
	font-size: 0.875rem;
	color: var(--gr-gold, #C8A759);
	transition: color 0.3s ease;
}

.gr-pgallery__tab:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-white, #FFFFFF);
}

.gr-pgallery__tab--active {
	background: linear-gradient(135deg, var(--gr-gold, #C8A759), #D4B96A);
	color: var(--gr-dark, #0A0A0A);
	border-color: var(--gr-gold, #C8A759);
	font-weight: 600;
}

.gr-pgallery__tab--active i {
	color: var(--gr-dark, #0A0A0A);
}

/* Panels */
.gr-pgallery__panel {
	display: none;
	animation: grPgalleryFadeIn 0.4s ease;
}

.gr-pgallery__panel--active {
	display: block;
}

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

/* Grid */
.gr-pgallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.gr-pgallery__item {
	overflow: hidden;
}

.gr-pgallery__image-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--gr-border, #2A2A35);
	cursor: pointer;
}

.gr-pgallery__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gr-pgallery__image-wrap:hover img {
	transform: scale(1.08);
}

.gr-pgallery__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gr-card, #111111);
	color: var(--gr-text-muted, #7A7A8A);
	font-size: 2rem;
}

.gr-pgallery__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px 16px;
	background: linear-gradient(transparent, rgba(10, 10, 10, 0.85));
	color: var(--gr-white, #FFFFFF);
	font-size: 0.8125rem;
	font-weight: 500;
}

.gr-pgallery__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 169, 81, 0.15);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gr-pgallery__overlay i {
	font-size: 1.5rem;
	color: var(--gr-gold, #C8A759);
}

.gr-pgallery__image-wrap:hover .gr-pgallery__overlay {
	opacity: 1;
}

/* Action button */
.gr-pgallery__action {
	text-align: center;
	margin-top: 32px;
}

.gr-pgallery__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 36px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	color: var(--gr-dark, #0A0A0A);
	background: linear-gradient(135deg, var(--gr-gold, #C8A759), #D4B96A);
	border: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gr-pgallery__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(200, 169, 81, 0.3);
	color: var(--gr-dark, #0A0A0A);
}

.gr-pgallery__btn-arrow {
	font-size: 1.125rem;
	transition: transform 0.3s ease;
}

.gr-pgallery__btn:hover .gr-pgallery__btn-arrow {
	transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
	.gr-pgallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.gr-pgallery__grid { grid-template-columns: 1fr; }
	.gr-pgallery__tabs { gap: 6px; }
	.gr-pgallery__tab { padding: 10px 16px; font-size: 0.8125rem; }
}


/* ═══════════════════════════════════════════════════════════════
   FOUNDER WIDGET — Premium founder / CEO section
   ═══════════════════════════════════════════════════════════════ */

.gr-founder {
	max-width: var(--gr-container, 1200px);
	margin: 0 auto;
}

.gr-founder__inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
}

.gr-founder--img-right .gr-founder__inner {
	direction: rtl;
}

.gr-founder--img-right .gr-founder__inner > * {
	direction: ltr;
}

/* Photo */
.gr-founder__media {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.gr-founder__photo-wrap {
	position: relative;
	width: 100%;
	max-width: 420px;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.gr-founder__photo-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.95);
	transition: filter 0.4s ease;
}

.gr-founder__photo-wrap:hover img {
	filter: brightness(1);
}

.gr-founder__frame {
	position: absolute;
	bottom: -15px;
	right: -15px;
	width: 100%;
	height: 100%;
	border: 1px solid var(--gr-gold, #C8A759);
	pointer-events: none;
	opacity: 0.25;
	z-index: -1;
}

.gr-founder__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gr-card, #111111);
	color: var(--gr-text-muted, #7A7A8A);
	font-size: 4rem;
}

/* Social */
.gr-founder__social {
	display: flex;
	gap: 12px;
}

.gr-founder__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--gr-border, #2A2A35);
	color: var(--gr-text, #C8C8D0);
	text-decoration: none;
	transition: all 0.3s ease;
}

.gr-founder__social-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	flex-shrink: 0;
}

.gr-founder__social-link:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
	background: rgba(200, 169, 81, 0.08);
}

/* Text column */
.gr-founder__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 12px;
}

.gr-founder__name {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	line-height: 1.15;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 8px;
}

.gr-founder__role {
	font-size: 1rem;
	color: var(--gr-gold, #C8A759);
	font-weight: 500;
	margin-bottom: 20px;
}

.gr-founder__gold-line {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin-bottom: 24px;
}

.gr-founder__bio {
	font-size: 0.9375rem;
	color: var(--gr-text, #C8C8D0);
	line-height: 1.8;
	margin-bottom: 28px;
}

.gr-founder__bio p {
	margin-bottom: 16px;
}

.gr-founder__bio p:last-child {
	margin-bottom: 0;
}

/* Quote */
.gr-founder__quote {
	position: relative;
	padding: 32px;
	margin: 40px 0;
	background: rgba(200, 167, 89, 0.03);
	border-left: 3px solid var(--gr-gold, #C8A759);
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.25rem;
	font-style: italic;
	color: var(--gr-gold-lighter, #F3E2A1);
	line-height: 1.6;
}

.gr-founder__quote cite {
	display: block;
	margin-top: 16px;
	font-size: 0.82rem;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-style: normal;
	color: var(--gr-text-muted, #8A8A8A);
	letter-spacing: 0.05em;
}

.gr-founder__quote-mark {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 3rem;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
	opacity: 0.4;
	position: absolute;
	top: 8px;
	left: 12px;
}

/* Achievements / Highlights */
.gr-founder__achievements {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 40px;
}

.gr-founder__ach {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.gr-founder__ach-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.1);
	color: var(--gr-gold, #C8A759);
	font-size: 1rem;
}

.gr-founder__ach-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.gr-founder__ach-number {
	display: block;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 4px;
}

.gr-founder__ach-text {
	display: block;
	font-size: 0.8rem;
	color: var(--gr-text-muted, #8A8A8A);
	line-height: 1.5;
}

/* ─── Founder Light Scheme ─── */
.gr-founder--light .gr-founder__label {
	color: var(--gr-gold-dark, #A88B3D);
}
.gr-founder--light .gr-founder__name {
	color: #0A0A0A;
}
.gr-founder--light .gr-founder__role {
	color: #4A4A5A;
}
.gr-founder--light .gr-founder__bio,
.gr-founder--light .gr-founder__bio p {
	color: #3A3A4A;
}
.gr-founder--light .gr-founder__quote {
	color: #0A0A0A;
}
.gr-founder--light .gr-founder__quote::before {
	color: var(--gr-gold-dark, #A88B3D);
}
.gr-founder--light .gr-founder__gold-line {
	background: var(--gr-gold-dark, #A88B3D);
}
.gr-founder--light .gr-founder__ach-number {
	color: #0A0A0A;
}
.gr-founder--light .gr-founder__ach-text {
	color: #4A4A5A;
}
.gr-founder--light .gr-founder__frame {
	border-color: var(--gr-gold-dark, #A68B3E);
	opacity: 0.2;
}
.gr-founder--light .gr-founder__social-link {
	color: #4A4A5A;
	border-color: #E0E0E8;
}
.gr-founder--light .gr-founder__social-link:hover {
	color: var(--gr-gold, #C8A759);
	border-color: var(--gr-gold, #C8A759);
}

/* Responsive */
@media (max-width: 1024px) {
	.gr-founder__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.gr-founder--img-right .gr-founder__inner {
		direction: ltr;
	}
	.gr-founder__photo-wrap {
		max-width: 360px;
		margin: 0 auto;
	}
	.gr-founder__social {
		justify-content: center;
	}
	.gr-founder__achievements {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.gr-founder__achievements {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}


/* ═══════════════════════════════════════════════════════════════
   OFFERS SECTION WIDGET — Investment offer cards grid
   ═══════════════════════════════════════════════════════════════ */

.gr-offers {
	max-width: var(--gr-container, 1200px);
	margin: 0 auto;
}

/* Header */
.gr-offers__header {
	text-align: center;
	margin-bottom: 56px;
}

.gr-offers__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-offers__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 16px;
}

.gr-offers__divider {
	width: 80px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto 20px;
}

.gr-offers__desc {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--gr-text, #C8C8D0);
	max-width: 600px;
	margin: 0 auto;
}

/* Grid */
.gr-offers__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* Card */
.gr-offers__card {
	background: var(--gr-card, #111111);
	border: 1px solid var(--gr-border, #2A2A35);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.4s ease, transform 0.4s ease;
	position: relative;
}

.gr-offers__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gr-gold, #C8A759), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gr-offers__card:hover {
	border-color: var(--gr-gold, #C8A759);
	transform: translateY(-4px);
}

.gr-offers__card:hover::before {
	opacity: 1;
}

/* Card image */
.gr-offers__card-image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.gr-offers__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gr-offers__card:hover .gr-offers__card-image img {
	transform: scale(1.05);
}

.gr-offers__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 6px 16px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gr-dark, #0A0A0A);
	background: linear-gradient(135deg, var(--gr-gold, #C8A759), #D4B96A);
}

/* Card body */
.gr-offers__card-body {
	padding: 28px 28px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.gr-offers__location {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8125rem;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 12px;
	font-weight: 500;
}

.gr-offers__location i {
	font-size: 0.75rem;
}

.gr-offers__card-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 12px;
	line-height: 1.3;
}

.gr-offers__card-desc {
	font-size: 0.9375rem;
	color: var(--gr-text, #C8C8D0);
	line-height: 1.7;
	margin-bottom: 20px;
	flex: 1;
}

/* Meta */
.gr-offers__meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid var(--gr-border, #2A2A35);
}

.gr-offers__meta-item {
	text-align: center;
}

.gr-offers__meta-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gr-text-muted, #7A7A8A);
	margin-bottom: 4px;
}

.gr-offers__meta-value {
	display: block;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
}

/* Card CTA */
.gr-offers__card-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 28px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gr-gold, #C8A759);
	background: rgba(200, 169, 81, 0.06);
	border-top: 1px solid var(--gr-border, #2A2A35);
	transition: all 0.3s ease;
}

.gr-offers__card-cta span {
	transition: transform 0.3s ease;
}

.gr-offers__card-cta:hover {
	background: rgba(200, 169, 81, 0.12);
	color: var(--gr-gold, #C8A759);
}

.gr-offers__card-cta:hover span {
	transform: translateX(6px);
}

/* Section CTA */
.gr-offers__cta {
	text-align: center;
	margin-top: 48px;
}

.gr-offers__cta-btn {
	display: inline-block;
	padding: 16px 40px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gr-dark, #0A0A0A);
	background: linear-gradient(135deg, var(--gr-gold, #C8A759), #D4B96A);
	border: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gr-offers__cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(200, 169, 81, 0.3);
	color: var(--gr-dark, #0A0A0A);
}

/* Responsive */
@media (max-width: 1024px) {
	.gr-offers__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 640px) {
	.gr-offers__meta { grid-template-columns: 1fr; gap: 8px; }
}


/* ═══════════════════════════════════════════════════════════════
   WORLD MAP WIDGET — Interactive map with location pins
   ═══════════════════════════════════════════════════════════════ */
.gr-wmap {
	max-width: var(--gr-container-wide, 1400px);
	margin: 0 auto;
	padding: 0 40px;
}

.gr-wmap__header {
	text-align: center;
	margin-bottom: 80px;
}

.gr-wmap__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-wmap__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 20px;
	line-height: 1.15;
}

.gr-wmap__divider {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto 20px;
}

.gr-wmap__desc {
	font-size: 1rem;
	color: var(--gr-text-muted, #8A8A8A);
	line-height: 1.7;
	max-width: 560px;
	margin: 0 auto;
}

/* ── Map container ── */
.gr-wmap__container {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	aspect-ratio: 2 / 1;
}

.gr-wmap__svg-wrap {
	position: absolute;
	inset: 0;
	transition: opacity 0.5s ease;
}

.gr-wmap__svg-wrap svg {
	width: 100%;
	height: 100%;
	color: rgba(200, 167, 89, 1);
}

.gr-wmap__svg-wrap svg path {
	stroke-width: 1.2;
	stroke-opacity: 1;
	fill-opacity: 0.15;
}

/* ── Pins ── */
.gr-wmap__pins {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.gr-wmap__pin {
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: all;
	cursor: pointer;
	background: none;
	border: none;
	padding: 20px;
	z-index: 2;
}

.gr-wmap__pin-dot {
	display: block;
	width: 10px;
	height: 10px;
	background: var(--gr-gold, #C8A759);
	border-radius: 50%;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 12px rgba(200, 167, 89, 0.5), 0 0 4px rgba(200, 167, 89, 0.8);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gr-wmap__pin:hover .gr-wmap__pin-dot {
	transform: scale(1.5);
	box-shadow: 0 0 24px rgba(200, 167, 89, 0.7), 0 0 8px rgba(200, 167, 89, 0.9);
}

.gr-wmap__pin-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	border: 1.5px solid var(--gr-gold, #C8A759);
	border-radius: 50%;
	animation: grMapPulse 2.5s ease-out infinite;
	pointer-events: none;
}

@keyframes grMapPulse {
	0%   { width: 10px; height: 10px; opacity: 0.7; }
	100% { width: 44px; height: 44px; opacity: 0; }
}

.gr-wmap__pin-label {
	position: absolute;
	top: calc(50% + 18px);
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	opacity: 1;
	transition: opacity 0.3s ease, color 0.3s ease;
	pointer-events: none;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.gr-wmap__pin:hover .gr-wmap__pin-label {
	color: var(--gr-gold, #C8A759);
}

/* ── Modal ── */
.gr-wmap__modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gr-wmap__modal--open {
	opacity: 1;
	visibility: visible;
}

.gr-wmap__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.gr-wmap__modal-content {
	position: relative;
	background: var(--gr-card, #111111);
	border: 1px solid rgba(255, 255, 255, 0.06);
	max-width: 520px;
	width: 90%;
	overflow: hidden;
	transform: translateY(20px) scale(0.97);
	transition: transform 0.4s var(--gr-ease-premium, cubic-bezier(0.16, 1, 0.3, 1));
}

.gr-wmap__modal--open .gr-wmap__modal-content {
	transform: translateY(0) scale(1);
}

.gr-wmap__modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(10, 10, 10, 0.6);
	border: none;
	color: var(--gr-text-muted, #8A8A8A);
	font-size: 1.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	transition: color 0.3s ease, background 0.3s ease;
}

.gr-wmap__modal-close:hover {
	color: var(--gr-gold, #C8A759);
	background: rgba(10, 10, 10, 0.8);
}

.gr-wmap__modal-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
}

.gr-wmap__modal-body {
	padding: 32px;
}

.gr-wmap__modal-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin-bottom: 12px;
}

.gr-wmap__modal-desc {
	font-size: 0.9375rem;
	color: var(--gr-text, #CCCCCC);
	line-height: 1.7;
	margin-bottom: 20px;
}

.gr-wmap__modal-count {
	font-size: 0.875rem;
	color: var(--gr-text-muted, #8A8A8A);
	margin-bottom: 24px;
}

.gr-wmap__modal-count-num {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	margin-right: 8px;
}

.gr-wmap__modal-btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gr-black, #0A0A0A);
	background: var(--gr-gold, #C8A759);
	transition: background 0.3s ease, transform 0.3s ease;
}

.gr-wmap__modal-btn:hover {
	background: var(--gr-gold-light, #E8CC67);
	transform: translateY(-2px);
}

/* ── World Map Responsive ── */
@media (max-width: 768px) {
	.gr-wmap {
		padding: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.gr-wmap__header {
		position: sticky;
		left: 0;
		margin-bottom: 40px;
		padding: 0 24px;
	}
	.gr-wmap__container {
		min-width: 700px;
		aspect-ratio: 2 / 1;
	}
	.gr-wmap__pin-label {
		font-size: 0.55rem;
	}
	.gr-wmap__modal {
		position: fixed;
	}
	.gr-wmap__modal-content {
		width: 95%;
		max-height: 90vh;
		overflow-y: auto;
	}
}

@media (max-width: 480px) {
	.gr-wmap__container {
		min-width: 600px;
	}
}

/* ═══════════════════════════════════════════════════════════
   VIDEO GRID WIDGET
   ═══════════════════════════════════════════════════════════ */

.gr-vgrid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

/* ── Header ── */
.gr-vgrid__header {
	text-align: center;
	margin-bottom: 80px;
}

.gr-vgrid__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-vgrid__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--gr-text, #F5F5F5);
	margin: 0 0 20px;
}

.gr-vgrid__divider {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto 20px;
}

.gr-vgrid__desc {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--gr-text-muted, #A0A0A8);
	max-width: 600px;
	margin: 0 auto;
}

/* ── Grid ── */
.gr-vgrid__grid {
	display: grid;
	gap: 28px;
}

.gr-vgrid__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gr-vgrid__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.gr-vgrid__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Card ── */
.gr-vgrid__card {
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.gr-vgrid__card--hidden {
	display: none;
}

.gr-vgrid__card-inner {
	display: block;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 0;
	margin: 0;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	text-align: left;
	color: inherit;
	font-family: inherit;
	transition: transform 0.4s var(--gr-ease-premium, cubic-bezier(0.23, 1, 0.32, 1)),
	            border-color 0.4s ease, background 0.4s ease;
}

.gr-vgrid__card-inner:hover {
	transform: translateY(-4px);
	border-color: rgba(200, 167, 89, 0.2);
	background: rgba(200, 167, 89, 0.03);
}

/* First video card — featured, spans full width */
.gr-vgrid__card:first-child {
	grid-column: 1 / -1;
}

.gr-vgrid__card:first-child .gr-vgrid__card-thumb {
	padding-bottom: 45%;
}

/* Thumbnail */
.gr-vgrid__card-thumb {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	background: #111;
	overflow: hidden;
}

.gr-vgrid__card-thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--gr-ease-premium, cubic-bezier(0.23, 1, 0.32, 1));
}

.gr-vgrid__card-inner:hover .gr-vgrid__card-thumb img {
	transform: scale(1.06);
}

.gr-vgrid__card-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #141414 0%, #0e0e0e 100%);
}

/* Play button overlay */
.gr-vgrid__card-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(255, 255, 255, 0.9);
	transition: color 0.4s ease, transform 0.4s ease;
	z-index: 2;
	filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

.gr-vgrid__card-play svg {
	width: 56px;
	height: 56px;
}

.gr-vgrid__card-inner:hover .gr-vgrid__card-play {
	color: var(--gr-gold, #C8A759);
	transform: translate(-50%, -50%) scale(1.12);
	filter: drop-shadow(0 4px 20px rgba(200, 167, 89, 0.3));
}

/* Duration badge */
.gr-vgrid__card-duration {
	position: absolute;
	bottom: 10px;
	right: 10px;
	padding: 4px 10px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 4px;
	z-index: 2;
	backdrop-filter: blur(4px);
}

/* Card body */
.gr-vgrid__card-body {
	padding: 20px 22px 24px;
}

.gr-vgrid__card-cat {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 8px;
}

.gr-vgrid__card-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--gr-text, #F5F5F5);
	margin: 0 0 8px;
}

.gr-vgrid__card-desc {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--gr-text-muted, #A0A0A8);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ── Load More ── */
.gr-vgrid__more-wrap {
	text-align: center;
	margin-top: 48px;
}

.gr-vgrid__more-btn {
	display: inline-block;
	padding: 14px 40px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	background: transparent;
	border: 1px solid var(--gr-gold, #C8A759);
	border-radius: 0;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.gr-vgrid__more-btn:hover {
	background: var(--gr-gold, #C8A759);
	color: var(--gr-black, #0A0A0A);
	transform: translateY(-2px);
}

.gr-vgrid__more-count {
	opacity: 0.6;
	margin-left: 4px;
}

/* ── Video Lightbox ── */
.gr-vgrid__modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gr-vgrid__modal--open {
	opacity: 1;
	visibility: visible;
}

.gr-vgrid__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

/* Close button — floats top-right of viewport */
.gr-vgrid__modal-close {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 10;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.gr-vgrid__modal-close:hover {
	background: rgba(200, 167, 89, 0.15);
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
}

.gr-vgrid__modal-close svg {
	width: 20px;
	height: 20px;
}

/* Content wrapper — centered in viewport */
.gr-vgrid__modal-content {
	position: relative;
	z-index: 2;
	width: 90%;
	max-width: 1000px;
	overflow: hidden;
	transform: translateY(24px) scale(0.95);
	transition: transform 0.45s var(--gr-ease-premium, cubic-bezier(0.16, 1, 0.3, 1));
}

.gr-vgrid__modal--open .gr-vgrid__modal-content {
	transform: translateY(0) scale(1);
}

/* Title below video */
.gr-vgrid__modal-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	margin: 16px 0 0;
	text-align: center;
	letter-spacing: 0.02em;
}

/* Video player area — 16:9 container with subtle border */
.gr-vgrid__modal-player {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #000;
	border: 1px solid rgba(200, 167, 89, 0.12);
	overflow: hidden;
}

/* ── Video Grid Responsive ── */
@media (max-width: 1024px) {
	.gr-vgrid__grid--cols-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
	.gr-vgrid {
		padding: 0 20px;
	}
	.gr-vgrid__grid--cols-3,
	.gr-vgrid__grid--cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.gr-vgrid__grid {
		gap: 16px;
	}
	.gr-vgrid__header {
		margin-bottom: 40px;
	}
	.gr-vgrid__card-body {
		padding: 14px 16px 18px;
	}
	.gr-vgrid__card-title {
		font-size: 0.95rem;
	}
	.gr-vgrid__modal-content {
		width: 96%;
		max-width: none;
	}
	.gr-vgrid__modal-close {
		top: 12px;
		right: 12px;
		width: 40px;
		height: 40px;
	}
	.gr-vgrid__modal-title {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.gr-vgrid__grid--cols-2,
	.gr-vgrid__grid--cols-3,
	.gr-vgrid__grid--cols-4 {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════════════════════
   FAQ / ACCORDION WIDGET
   ═══════════════════════════════════════════════════════════ */

.gr-faq {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 40px;
}

/* ── Header ── */
.gr-faq__header {
	text-align: center;
	margin-bottom: 72px;
}

.gr-faq__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-faq__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px;
}

.gr-faq--dark .gr-faq__title { color: var(--gr-text, #F5F5F5); }
.gr-faq--light .gr-faq__title { color: var(--gr-black, #0A0A0A); }

.gr-faq__divider {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto 20px;
}

.gr-faq__desc {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 1rem;
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto;
}

.gr-faq--dark .gr-faq__desc { color: var(--gr-text-muted, #A0A0A8); }
.gr-faq--light .gr-faq__desc { color: #666; }

/* ── Items ── */
.gr-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.gr-faq__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gr-faq--light .gr-faq__item {
	border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* Question button */
.gr-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 24px 0;
	border: none;
	background: transparent;
	cursor: pointer;
	text-align: left;
	gap: 20px;
}

.gr-faq__question-text {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.4;
	flex: 1;
}

.gr-faq--dark .gr-faq__question-text { color: var(--gr-text, #F5F5F5); }
.gr-faq--light .gr-faq__question-text { color: var(--gr-black, #0A0A0A); }

.gr-faq__question:hover .gr-faq__question-text {
	color: var(--gr-gold, #C8A759);
}

/* Icon */
.gr-faq__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--gr-gold, #C8A759);
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.gr-faq__icon-v {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.gr-faq__item--open .gr-faq__icon-v {
	opacity: 0;
	transform: scaleY(0);
}

/* Answer */
.gr-faq__answer {
	overflow: hidden;
}

.gr-faq__answer-inner {
	padding: 0 0 24px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.95rem;
	line-height: 1.75;
}

.gr-faq--dark .gr-faq__answer-inner { color: var(--gr-text-muted, #A0A0A8); }
.gr-faq--light .gr-faq__answer-inner { color: #555; }

.gr-faq__answer-inner p {
	margin: 0 0 12px;
}

.gr-faq__answer-inner p:last-child {
	margin-bottom: 0;
}

.gr-faq__answer-inner ul,
.gr-faq__answer-inner ol {
	margin: 0 0 12px;
	padding-left: 24px;
}

.gr-faq__answer-inner li {
	margin-bottom: 6px;
}

/* ── FAQ Responsive ── */
@media (max-width: 768px) {
	.gr-faq {
		padding: 0 20px;
	}
	.gr-faq__header {
		margin-bottom: 40px;
	}
	.gr-faq__question {
		padding: 20px 0;
	}
	.gr-faq__question-text {
		font-size: 1rem;
	}
	.gr-faq__answer-inner {
		font-size: 0.9rem;
		padding-bottom: 20px;
	}
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF BAR WIDGET
   ═══════════════════════════════════════════════════════════ */

.gr-pbar {
	padding: 0 40px;
}

.gr-pbar__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
	max-width: 1200px;
	margin: 0 auto;
}

.gr-pbar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 48px;
	flex: 1;
	min-width: 200px;
}

/* Dividers variant */
.gr-pbar--dividers .gr-pbar__item {
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gr-pbar--dividers .gr-pbar__item:last-child {
	border-right: none;
}

.gr-pbar--dividers.gr-pbar--gold .gr-pbar__item {
	border-right-color: rgba(200, 169, 81, 0.2);
}

/* Icon */
.gr-pbar__icon {
	font-size: 1.5rem;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 12px;
}

/* Number */
.gr-pbar__number {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(200, 169, 81, 0.2);
}

.gr-pbar--dark .gr-pbar__number { color: var(--gr-text, #F5F5F5); }
.gr-pbar--gold .gr-pbar__number { color: var(--gr-gold, #C8A759); }
.gr-pbar--bordered .gr-pbar__number { color: var(--gr-text, #F5F5F5); }

/* Label */
.gr-pbar__label {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--gr-text-muted, #A0A0A8);
}

/* Bordered variant */
.gr-pbar--bordered .gr-pbar__inner {
	border: 1px solid rgba(200, 169, 81, 0.25);
	border-radius: 0;
	padding: 16px 0;
}

/* ── Proof Bar Responsive ── */
@media (max-width: 768px) {
	.gr-pbar {
		padding: 0 20px;
	}
	.gr-pbar__inner {
		flex-direction: column;
	}
	.gr-pbar__item {
		padding: 20px 32px;
		min-width: auto;
		width: 100%;
	}
	.gr-pbar--dividers .gr-pbar__item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}
	.gr-pbar--dividers .gr-pbar__item:last-child {
		border-bottom: none;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.gr-pbar__inner {
		flex-wrap: wrap;
	}
	.gr-pbar__item {
		flex: 0 0 50%;
		min-width: auto;
		padding: 24px 32px;
	}
	.gr-pbar--dividers .gr-pbar__item:nth-child(2n) {
		border-right: none;
	}
}

/* ═══════════════════════════════════════════════════════════
   CONTACT INFO WIDGET
   ═══════════════════════════════════════════════════════════ */

.gr-cinfo {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 40px;
}

/* ── Header ── */
.gr-cinfo__header {
	text-align: center;
	margin-bottom: 56px;
}

.gr-cinfo__label {
	display: inline-block;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-cinfo__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--gr-text, #F5F5F5);
	margin: 0 0 20px;
}

.gr-cinfo__divider {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto 20px;
}

.gr-cinfo__desc {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--gr-text-muted, #A0A0A8);
	max-width: 600px;
	margin: 0 auto;
}

/* ── Cards layout ── */
.gr-cinfo--cards .gr-cinfo__items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.gr-cinfo--cards .gr-cinfo__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 40px 28px;
	background: var(--gr-surface, #16161A);
	border-radius: 0;
	border: 1px solid rgba(255, 255, 255, 0.04);
	text-decoration: none;
	transition: transform 0.4s var(--gr-ease-premium, cubic-bezier(0.23, 1, 0.32, 1)),
	            border-color 0.3s ease;
}

.gr-cinfo--cards .gr-cinfo__item:hover {
	transform: translateY(-4px);
	border-color: rgba(200, 169, 81, 0.2);
}

/* ── List layout ── */
.gr-cinfo--list .gr-cinfo__items {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 600px;
	margin: 0 auto;
}

.gr-cinfo--list .gr-cinfo__item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	text-decoration: none;
	transition: padding-left 0.3s ease;
}

.gr-cinfo--list .gr-cinfo__item:hover {
	padding-left: 8px;
}

.gr-cinfo--list .gr-cinfo__item:last-child {
	border-bottom: none;
}

/* ── Centered layout ── */
.gr-cinfo--centered .gr-cinfo__items {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.gr-cinfo--centered .gr-cinfo__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
}

/* ── Shared item styles ── */
.gr-cinfo__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(200, 169, 81, 0.15);
	color: var(--gr-gold, #C8A759);
	font-size: 1.2rem;
	flex-shrink: 0;
	transition: background 0.3s ease;
}

.gr-cinfo__icon i {
	font-size: 1.2rem;
	line-height: 1;
}

.gr-cinfo__icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.gr-cinfo--cards .gr-cinfo__icon {
	margin-bottom: 20px;
}

.gr-cinfo--centered .gr-cinfo__icon {
	margin-bottom: 12px;
}

.gr-cinfo__item:hover .gr-cinfo__icon {
	background: rgba(200, 169, 81, 0.18);
}

.gr-cinfo__item-title {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin: 0 0 6px;
}

.gr-cinfo__item-text {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 1.05rem;
	line-height: 1.5;
	color: #FFFFFF;
	margin: 0;
}

/* ── CTA ── */
.gr-cinfo__cta {
	text-align: center;
	margin-top: 48px;
}

.gr-cinfo__cta-btn {
	display: inline-block;
	padding: 16px 40px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gr-black, #0A0A0A);
	background: var(--gr-gold, #C8A759);
	transition: background 0.3s ease, transform 0.3s ease;
}

.gr-cinfo__cta-btn:hover {
	background: var(--gr-gold-light, #D4B85C);
	transform: translateY(-2px);
}

/* ── Contact Info — Split layout (info + form) ── */
.gr-cinfo--split {
	padding: 0;
}

.gr-cinfo__split-inner {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.gr-cinfo__split-left {
	flex: 1 1 45%;
	min-width: 0;
}

.gr-cinfo__split-right {
	flex: 1 1 55%;
	min-width: 0;
}

.gr-cinfo--split .gr-cinfo__header {
	text-align: left;
	margin-bottom: 36px;
}

.gr-cinfo--split .gr-cinfo__items {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.gr-cinfo--split .gr-cinfo__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(200, 167, 89, 0.1);
	text-decoration: none;
	transition: all 0.3s ease;
}

.gr-cinfo--split .gr-cinfo__item:last-child {
	border-bottom: none;
}

.gr-cinfo--split .gr-cinfo__item:hover {
	padding-left: 8px;
}

.gr-cinfo--split .gr-cinfo__icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.15);
	border-radius: 50%;
	color: var(--gr-gold, #C8A759);
	font-size: 1rem;
	flex-shrink: 0;
}

.gr-cinfo--split .gr-cinfo__icon svg {
	width: 18px;
	height: 18px;
}

/* Form column */
.gr-cinfo__form-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 400;
	margin-bottom: 12px;
}

.gr-cinfo--scheme-dark .gr-cinfo__form-title {
	color: var(--gr-white, #FFFFFF);
}

.gr-cinfo--scheme-light .gr-cinfo__form-title {
	color: var(--gr-black, #0A0A0A);
}

.gr-cinfo__form-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 24px;
}

.gr-cinfo--scheme-dark .gr-cinfo__form-desc {
	color: var(--gr-text, #C8C8D0);
}

.gr-cinfo--scheme-light .gr-cinfo__form-desc {
	color: #555;
}

.gr-cinfo__form-wrap {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(200, 167, 89, 0.15);
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.gr-cinfo--scheme-light .gr-cinfo__form-wrap {
	background: rgba(0, 0, 0, 0.02);
	border-color: rgba(0, 0, 0, 0.1);
}

.gr-cinfo__form-wrap iframe {
	display: block;
	width: 100% !important;
	height: 100% !important;
	min-height: inherit;
	border: none;
}

.gr-cinfo__form-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: inherit;
	padding: 40px;
	text-align: center;
}

.gr-cinfo__form-placeholder p {
	color: var(--gr-text, #C8C8D0);
	opacity: 0.5;
	font-size: 0.9rem;
	font-style: italic;
}

/* ── Light scheme overrides ── */
.gr-cinfo--scheme-light .gr-cinfo__title {
	color: var(--gr-dark, #0A0A0A);
}

.gr-cinfo--scheme-light .gr-cinfo__desc {
	color: #4A4A5A;
}

.gr-cinfo--scheme-light .gr-cinfo__item-title {
	color: #0A0A0A;
	transition: color 0.3s ease;
}

.gr-cinfo--scheme-light .gr-cinfo__item-text {
	color: #0A0A0A;
	transition: color 0.3s ease;
}

.gr-cinfo--scheme-light .gr-cinfo__item:hover .gr-cinfo__item-title {
	color: var(--gr-gold, #C8A759);
}

.gr-cinfo--scheme-light .gr-cinfo__item:hover .gr-cinfo__item-text {
	color: var(--gr-gold, #C8A759);
}

.gr-cinfo--scheme-light.gr-cinfo--cards .gr-cinfo__item {
	background: #FFFFFF;
	border-color: #E0E0E8;
}

.gr-cinfo--scheme-light.gr-cinfo--cards .gr-cinfo__item:hover {
	border-color: var(--gr-gold, #C8A759);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.gr-cinfo--scheme-light.gr-cinfo--list .gr-cinfo__item {
	border-bottom-color: rgba(0, 0, 0, 0.08);
}

.gr-cinfo--scheme-light .gr-cinfo__icon {
	background: rgba(200, 167, 89, 0.15);
}

/* Color scheme overrides for split */
.gr-cinfo--scheme-light .gr-cinfo__split-left .gr-cinfo__item {
	border-bottom-color: rgba(0, 0, 0, 0.08);
}

.gr-cinfo--scheme-light .gr-cinfo__split-left .gr-cinfo__icon {
	background: rgba(200, 167, 89, 0.15);
}

/* ── Contact Info Responsive ── */
@media (max-width: 1024px) {
	.gr-cinfo__split-inner {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.gr-cinfo {
		padding: 0 20px;
	}
	.gr-cinfo__header {
		margin-bottom: 40px;
	}
	.gr-cinfo--cards .gr-cinfo__items {
		grid-template-columns: 1fr;
	}
	.gr-cinfo--cards .gr-cinfo__item {
		padding: 28px 20px;
	}

	/* Split layout stacks on mobile */
	.gr-cinfo__split-inner {
		flex-direction: column;
		gap: 48px;
	}
	.gr-cinfo__split-left,
	.gr-cinfo__split-right {
		flex: 1 1 100%;
	}
}


/* ============================================================
   PHOTO SWIPE — Horizontal Scroll Transition
   ============================================================ */
.gr-pswipe {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.gr-pswipe__sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
}

.gr-pswipe__track {
	display: flex;
	height: 100%;
	will-change: transform;
}

.gr-pswipe__panel {
	position: relative;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* ── Overlay ── */
.gr-pswipe__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.gr-pswipe__overlay--gradient {
	background: linear-gradient(
		to top,
		rgba(10, 10, 10, 0.85) 0%,
		rgba(10, 10, 10, 0.3) 40%,
		transparent 70%
	);
}

.gr-pswipe__overlay--full {
	background: rgba(10, 10, 10, 1);
}

/* ── Content (text overlay) ── */
.gr-pswipe__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 60px 80px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gr-pswipe__text {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 400;
	line-height: 1.2;
	color: #fff;
	margin: 0;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.gr-pswipe__subtext {
	font-family: 'Inter', sans-serif;
	font-size: clamp(14px, 1.2vw, 18px);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	max-width: 500px;
}

/* ── Navigation counter ── */
.gr-pswipe__nav {
	position: absolute;
	bottom: 40px;
	right: 60px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
}

.gr-pswipe__nav-current {
	font-size: 32px;
	font-weight: 600;
	color: #C9A84C;
	line-height: 1;
	min-width: 2ch;
	text-align: right;
}

.gr-pswipe__nav-sep {
	font-size: 18px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.3);
	margin: 0 2px;
}

.gr-pswipe__nav-total {
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.5);
	min-width: 2ch;
}

.gr-pswipe__nav-bar {
	width: 80px;
	height: 2px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 1px;
	margin-left: 16px;
	overflow: hidden;
}

.gr-pswipe__nav-fill {
	height: 100%;
	width: 0;
	background: #C9A84C;
	border-radius: 1px;
	transition: width 0.1s linear;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.gr-pswipe {
		height: auto !important;
	}
	.gr-pswipe__sticky {
		position: relative;
		height: auto !important;
	}
	.gr-pswipe__track {
		flex-direction: column;
		width: 100% !important;
		transform: none !important;
	}
	.gr-pswipe__panel {
		width: 100% !important;
		height: 50vh;
		min-height: 280px;
		max-height: 360px;
	}
	.gr-pswipe__content {
		padding: 24px 20px;
	}
	.gr-pswipe__text {
		font-size: 1.1rem;
	}
	.gr-pswipe__subtext {
		font-size: 0.85rem;
	}
	.gr-pswipe__nav {
		display: none;
	}
}

@media (max-width: 480px) {
	.gr-pswipe__panel {
		height: 40vh;
		min-height: 220px;
		max-height: 300px;
	}
	.gr-pswipe__content {
		padding: 20px 16px;
	}
	.gr-pswipe__text {
		font-size: 1rem;
	}
}


/* ═══════════════════════════════════════════════════════════════
   STATS GRID WIDGET (gr_stats_grid) — Why Cyprus
   ═══════════════════════════════════════════════════════════════ */

.gr-sgrid__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.gr-sgrid__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
	justify-content: center;
}

.gr-sgrid__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.2;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.gr-sgrid__desc {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #8A8A8A;
	margin: 0 auto;
}

.gr-sgrid__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-top: 64px;
}

.gr-sgrid__card {
	padding: 48px 32px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

.gr-sgrid__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gr-gold, #C8A759), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gr-sgrid__card:hover::before {
	opacity: 1;
}

.gr-sgrid__card:hover {
	border-color: rgba(200, 167, 89, 0.15);
	transform: translateY(-4px);
}

.gr-sgrid__number {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 3rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 8px;
}

.gr-sgrid__card-label {
	font-size: 0.85rem;
	font-weight: 500;
	color: #CCCCCC;
	margin-bottom: 12px;
}

.gr-sgrid__card-desc {
	font-size: 0.78rem;
	line-height: 1.6;
	color: #8A8A8A;
}

@media (max-width: 1024px) {
	.gr-sgrid__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.gr-sgrid__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   LOCATIONS GRID WIDGET (gr_locations_grid)
   ═══════════════════════════════════════════════════════════════ */

.gr-locgrid__header {
	margin-bottom: 0;
}

.gr-locgrid__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-locgrid__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.2;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.gr-locgrid__desc {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #8A8A8A;
	max-width: 600px;
}

.gr-locgrid__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 64px;
}

.gr-locgrid__card {
	position: relative;
	height: 480px;
	overflow: hidden;
	cursor: pointer;
	display: block;
	text-decoration: none;
	color: inherit;
}

.gr-locgrid__grid .gr-locgrid__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	transition: transform 0.6s ease;
}

.gr-locgrid__grid .gr-locgrid__card:hover img {
	transform: scale(1.08);
}

.gr-locgrid__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.gr-locgrid__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.1) 60%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 36px;
	transition: all 0.4s ease;
}

.gr-locgrid__card:hover .gr-locgrid__overlay {
	background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 60%);
}

.gr-locgrid__tag {
	display: inline-block;
	padding: 4px 12px;
	background: var(--gr-gold, #C8A759);
	color: #0A0A0A;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 12px;
	align-self: flex-start;
}

.gr-locgrid__name {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.6rem;
	font-weight: 400;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.gr-locgrid__card-desc {
	font-size: 0.85rem;
	color: #CCCCCC;
	line-height: 1.6;
	margin-bottom: 16px;
}

.gr-locgrid__stats {
	display: flex;
	gap: 24px;
}

.gr-locgrid__stat {
	display: flex;
	flex-direction: column;
}

.gr-locgrid__stat-val {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
}

.gr-locgrid__stat-lbl {
	font-size: 0.68rem;
	color: #8A8A8A;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
	.gr-locgrid__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.gr-locgrid__grid { grid-template-columns: 1fr; }
	.gr-locgrid__card { height: 400px; }
}


/* ═══════════════════════════════════════════════════════════════
   PROPERTY SHOWCASE WIDGET (gr_property_showcase)
   ═══════════════════════════════════════════════════════════════ */

.gr-propshow__header {
	margin-bottom: 0;
}

.gr-propshow__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-propshow__stitle {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.2;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.gr-propshow__sdesc {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #8A8A8A;
	max-width: 600px;
}

.gr-propshow__card {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 48px;
	margin-top: 64px;
	background: #111111;
	border: 1px solid rgba(200, 167, 89, 0.1);
	overflow: hidden;
}

.gr-propshow__main {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0A0A0A;
}

.gr-propshow__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.4s ease;
}

.gr-propshow__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #111111;
	color: #333;
	font-size: 3rem;
}

.gr-propshow__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	padding: 4px;
	background: rgba(0, 0, 0, 0.3);
}

.gr-propshow__thumb {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	background: #0A0A0A;
	padding: 0;
	transition: all 0.4s ease;
}

.gr-propshow__thumb.active {
	border-color: var(--gr-gold, #C8A759);
}

.gr-propshow__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gr-propshow__thumb-ph {
	display: block;
	width: 100%;
	height: 100%;
	background: #1a1a1a;
}

.gr-propshow__info {
	padding: 48px 48px 48px 0;
	display: flex;
	flex-direction: column;
}

.gr-propshow__badge {
	display: inline-block;
	align-self: flex-start;
	padding: 6px 16px;
	background: var(--gr-gold, #C8A759);
	color: #0A0A0A;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.gr-propshow__name {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.8rem;
	font-weight: 500;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.gr-propshow__location {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	color: #8A8A8A;
	margin-bottom: 24px;
}

.gr-propshow__location svg {
	color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}

.gr-propshow__highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 24px;
}

.gr-propshow__hl {
	padding: 16px;
	background: rgba(200, 167, 89, 0.04);
	border: 1px solid rgba(200, 167, 89, 0.1);
}

.gr-propshow__hl-val {
	display: block;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 2px;
}

.gr-propshow__hl-lbl {
	font-size: 0.7rem;
	color: #8A8A8A;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.gr-propshow__pdesc {
	font-size: 0.88rem;
	line-height: 1.7;
	color: #CCCCCC;
	margin-bottom: 24px;
}

.gr-propshow__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 40px;
	background: linear-gradient(135deg, var(--gr-gold, #C8A759), #A68B3E);
	color: #0A0A0A;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.4s ease;
	align-self: flex-start;
	margin-top: auto;
}

.gr-propshow__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(200, 167, 89, 0.3);
}

@media (max-width: 1024px) {
	.gr-propshow__card { grid-template-columns: 1fr; }
	.gr-propshow__info { padding: 36px; }
}
@media (max-width: 768px) {
	.gr-propshow__highlights { grid-template-columns: 1fr; }
	.gr-propshow__thumbs { grid-template-columns: repeat(3, 1fr); }
}


/* ═══════════════════════════════════════════════════════════════
   PROCESS SECTION WIDGET (gr_process_section)
   ═══════════════════════════════════════════════════════════════ */

.gr-process__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.gr-process__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
	justify-content: center;
}

.gr-process__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.2;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.gr-process__desc {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #8A8A8A;
	margin: 0 auto;
}

.gr-process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-top: 64px;
}

.gr-process__step {
	padding: 48px 32px;
	background: #0A0A0A;
	position: relative;
	transition: all 0.4s ease;
}

.gr-process__step:hover {
	background: rgba(200, 167, 89, 0.04);
}

/* Crescendo opacity — step 1 is dimmest, step 4 is brightest */
.gr-process__step:nth-child(1) { opacity: 0.40; }
.gr-process__step:nth-child(2) { opacity: 0.58; }
.gr-process__step:nth-child(3) { opacity: 0.78; }
.gr-process__step:nth-child(4) { opacity: 1; }

/* On hover, always show at full opacity */
.gr-process__step:hover { opacity: 1 !important; }

.gr-process__num {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 4rem;
	font-weight: 700;
	color: rgba(200, 167, 89, 0.1);
	line-height: 1;
	margin-bottom: 24px;
}

/* Progressive gold intensity on numbers */
.gr-process__step:nth-child(1) .gr-process__num { color: rgba(200, 167, 89, 0.07); }
.gr-process__step:nth-child(2) .gr-process__num { color: rgba(200, 167, 89, 0.12); }
.gr-process__step:nth-child(3) .gr-process__num { color: rgba(200, 167, 89, 0.18); }
.gr-process__step:nth-child(4) .gr-process__num { color: rgba(200, 167, 89, 0.28); }

.gr-process__step-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.2rem;
	font-weight: 400;
	color: #FFFFFF;
	margin-bottom: 12px;
}

.gr-process__step-desc {
	font-size: 0.85rem;
	line-height: 1.7;
	color: #8A8A8A;
}

@media (max-width: 1024px) {
	.gr-process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.gr-process__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   BENEFITS GRID WIDGET (gr_benefits_grid)
   ═══════════════════════════════════════════════════════════════ */

.gr-benefits {
	color: #FFFFFF;
}

.gr-benefits__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.gr-benefits__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
	justify-content: center;
}

.gr-benefits__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.2;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.gr-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: 64px;
}

.gr-benefits__card {
	padding: 48px 36px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	transition: all 0.4s ease;
	position: relative;
}

.gr-benefits__card:hover {
	background: rgba(200, 167, 89, 0.04);
	border-color: rgba(200, 167, 89, 0.15);
}

.gr-benefits__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.08);
	color: var(--gr-gold, #C8A759);
	font-size: 1.4rem;
	margin-bottom: 24px;
}

.gr-benefits__icon i,
.gr-benefits__icon svg {
	color: var(--gr-gold, #C8A759);
	fill: currentColor;
	font-size: 1.4rem;
	width: 28px;
	height: 28px;
}

.gr-benefits__card-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.2rem;
	font-weight: 400;
	color: #FFFFFF;
	margin-bottom: 12px;
}

.gr-benefits__card-desc {
	font-size: 0.88rem;
	line-height: 1.7;
	color: #8A8A8A;
}

@media (max-width: 1024px) {
	.gr-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.gr-benefits__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   SEMINARS GRID WIDGET (gr_seminars_grid)
   ═══════════════════════════════════════════════════════════════ */

.gr-semgrid__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.gr-semgrid__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
	justify-content: center;
}

.gr-semgrid__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.2;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.gr-semgrid__desc {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #8A8A8A;
	margin: 0 auto;
}

.gr-semgrid__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 64px;
}

.gr-semgrid__card {
	display: flex;
	align-items: stretch;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.4s ease;
}

.gr-semgrid__card:hover {
	border-color: rgba(200, 167, 89, 0.2);
	background: rgba(200, 167, 89, 0.03);
}

.gr-semgrid__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 32px 40px;
	background: rgba(200, 167, 89, 0.06);
	border-right: 1px solid rgba(200, 167, 89, 0.15);
	min-width: 120px;
}

.gr-semgrid__day {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
}

.gr-semgrid__month {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #E8CC67;
	margin-top: 2px;
}

.gr-semgrid__year {
	font-size: 0.7rem;
	color: #8A8A8A;
	margin-top: 2px;
}

.gr-semgrid__info {
	flex: 1;
	padding: 28px 36px;
}

.gr-semgrid__tag {
	display: inline-block;
	padding: 3px 10px;
	background: rgba(200, 167, 89, 0.12);
	color: var(--gr-gold, #C8A759);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.gr-semgrid__card-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.15rem;
	font-weight: 400;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.gr-semgrid__card-desc {
	font-size: 0.85rem;
	line-height: 1.6;
	color: #8A8A8A;
	margin-bottom: 12px;
}

.gr-semgrid__meta {
	display: flex;
	gap: 24px;
}

.gr-semgrid__meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	color: #8A8A8A;
}

.gr-semgrid__meta-item svg {
	color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}

.gr-semgrid__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	border-left: 1px solid rgba(255, 255, 255, 0.05);
	white-space: nowrap;
	transition: all 0.4s ease;
	text-decoration: none;
}

.gr-semgrid__cta:hover {
	background: var(--gr-gold, #C8A759);
	color: #0A0A0A;
}

@media (max-width: 768px) {
	.gr-semgrid__card { flex-direction: column; }
	.gr-semgrid__date {
		flex-direction: row;
		gap: 8px;
		padding: 16px;
		border-right: none;
		border-bottom: 1px solid rgba(200, 167, 89, 0.15);
		min-width: auto;
	}
	.gr-semgrid__cta {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		padding: 16px;
	}
}


/* ═══════════════════════════════════════════════════════════════
   INVESTMENTS GRID WIDGET — Dynamic CPT grid with filters + CTA
   ═══════════════════════════════════════════════════════════════ */

.gr-invgrid {
	position: relative;
}

/* ── Color schemes ── */
.gr-invgrid--dark {
	background: var(--gr-dark, #0B0B0F);
	color: var(--gr-white, #FFFFFF);
}
.gr-invgrid--light {
	background: #FFFFFF;
	color: #0A0A0A;
}

/* ── Filter pills ── */
.gr-invgrid__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 0 40px;
	justify-content: center;
}

.gr-invgrid__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 24px;
	border: 1px solid rgba(200, 167, 89, 0.25);
	background: transparent;
	color: var(--gr-text, #C8C8D0);
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.gr-invgrid--light .gr-invgrid__pill {
	color: #3A3A4A;
	border-color: #D0D0D0;
}

.gr-invgrid__pill:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
}

.gr-invgrid__pill--active {
	background: var(--gr-gold, #C8A759);
	color: #0A0A0A;
	border-color: var(--gr-gold, #C8A759);
	font-weight: 600;
}

/* ── Grid — masonry with visual rhythm ── */
.gr-invgrid__grid {
	display: grid;
	gap: 6px;
}
.gr-invgrid__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gr-invgrid__grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
.gr-invgrid__grid--cols-4 { grid-template-columns: repeat(3, 1fr); }

/* ── Card — full-image overlay style ── */
.gr-invgrid__card {
	display: block;
	overflow: hidden;
	position: relative;
	border: 1px solid transparent;
	transition: border-color 0.4s ease;
}
.gr-invgrid__card:hover {
	border-color: rgba(200, 167, 89, 0.3);
}

/* Every 5th card spans full width */
.gr-invgrid__card--wide {
	grid-column: 1 / -1;
}

/* ── Card Image — aspect-ratio based ── */
.gr-invgrid__card-image {
	position: relative;
	padding-bottom: 110%;
	overflow: hidden;
	background: var(--gr-dark-alt, #151B26);
}
.gr-invgrid__card--wide .gr-invgrid__card-image {
	padding-bottom: 48%;
}

.gr-invgrid__card-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gr-invgrid__card:hover .gr-invgrid__card-image img {
	transform: scale(1.05);
}

.gr-invgrid__card-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gr-dark-alt, #151B26);
	color: rgba(200, 167, 89, 0.15);
}

/* ── Badge & Status ── */
.gr-invgrid__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--gr-gold, #C8A759);
	color: #0A0A0A;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	padding: 6px 14px;
	text-transform: uppercase;
	z-index: 4;
}

.gr-invgrid__status {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(0, 0, 0, 0.65);
	color: #FFFFFF;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 5px 12px;
	backdrop-filter: blur(6px);
	z-index: 4;
}
.gr-invgrid__status--aktywny { color: #4ADE80; }
.gr-invgrid__status--w-budowie { color: #FBBF24; }
.gr-invgrid__status--ukonczone { color: #60A5FA; }
.gr-invgrid__status--wyprzedane { color: #F87171; }

/* ── Gradient overlay ── */
.gr-invgrid__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
		transparent 10%,
		rgba(10, 10, 10, 0.55) 45%,
		rgba(10, 10, 10, 0.92) 100%
	);
	display: flex;
	align-items: flex-end;
	z-index: 3;
	transition: background 0.4s ease;
}
.gr-invgrid__card:hover .gr-invgrid__overlay {
	background: linear-gradient(180deg,
		transparent 5%,
		rgba(10, 10, 10, 0.6) 40%,
		rgba(10, 10, 10, 0.95) 100%
	);
}

.gr-invgrid__overlay-inner {
	width: 100%;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transform: translateY(0);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gr-invgrid__card:hover .gr-invgrid__overlay-inner {
	transform: translateY(-4px);
}
.gr-invgrid__card--wide .gr-invgrid__overlay-inner {
	padding: 36px;
}

/* ── Overlay content: location, title, developer, desc ── */
.gr-invgrid__card-location {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 4px;
}

.gr-invgrid__card-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: #FFFFFF;
	margin: 0;
	line-height: 1.25;
}
.gr-invgrid__card--wide .gr-invgrid__card-title {
	font-size: 2rem;
}

.gr-invgrid__card-developer {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 3px;
}

.gr-invgrid__card-desc {
	font-size: 0.78rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.65);
	margin: 6px 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.gr-invgrid__card--wide .gr-invgrid__card-desc {
	-webkit-line-clamp: 3;
}

/* ── Overlay bottom: meta + CTA (always visible) ── */
.gr-invgrid__overlay-bottom {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gr-invgrid__card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
}

.gr-invgrid__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.72rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}
.gr-invgrid__meta-item svg {
	flex-shrink: 0;
	color: var(--gr-gold, #C8A759);
	opacity: 0.7;
}

/* ── Card CTA button ── */
a.gr-invgrid__card-btn,
a.gr-invgrid__card-btn:visited,
a.gr-invgrid__card-btn:link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 8px 20px;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0A0A0A !important;
	background: var(--gr-gold, #C8A759);
	text-decoration: none !important;
	white-space: nowrap;
	transition: all 0.3s ease;
}
a.gr-invgrid__card-btn:hover,
a.gr-invgrid__card-btn:focus {
	color: #0A0A0A !important;
	background: var(--gr-gold-light, #E8CC67);
	text-decoration: none !important;
}
a.gr-invgrid__card-btn span {
	color: #0A0A0A !important;
	transition: transform 0.3s ease;
}
a.gr-invgrid__card-btn:hover span {
	transform: translateX(4px);
}

/* ── Empty state ── */
.gr-invgrid__empty {
	text-align: center;
	padding: 80px 40px;
	color: var(--gr-text-muted, #8A8A8A);
	font-size: 1rem;
}

/* ── CTA Section ── */
.gr-invgrid__cta {
	margin-top: 60px;
	background: var(--gr-card, #111111);
	border: 1px solid rgba(200, 167, 89, 0.15);
	padding: 60px;
}
.gr-invgrid--light .gr-invgrid__cta {
	background: #F8F7F4;
	border-color: #E0D9C8;
}

.gr-invgrid__cta-inner {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.gr-invgrid__cta-text {
	flex: 1 1 50%;
}

.gr-invgrid__cta-form {
	flex: 1 1 50%;
	min-height: 500px;
}
.gr-invgrid__cta-form iframe,
.gr-invgrid__cta-form > div,
.gr-invgrid__cta-form > form {
	width: 100% !important;
	height: 100% !important;
	min-height: inherit !important;
	border: none;
}

.gr-invgrid__cta-label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--gr-gold, #C8A759);
	text-transform: uppercase;
	margin-bottom: 16px;
}
.gr-invgrid__cta-label::before {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
}

.gr-invgrid__cta-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 2rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin: 0 0 16px;
	line-height: 1.3;
}
.gr-invgrid--light .gr-invgrid__cta-title {
	color: #0A0A0A;
}

.gr-invgrid__cta-line {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-invgrid__cta-desc {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--gr-text, #C8C8D0);
	margin: 0 0 24px;
}
.gr-invgrid--light .gr-invgrid__cta-desc {
	color: #4A4A5A;
}

.gr-invgrid__cta-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gr-invgrid__cta-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--gr-text, #C8C8D0);
}
.gr-invgrid--light .gr-invgrid__cta-list li {
	color: #3A3A4A;
}

.gr-invgrid__cta-list svg {
	flex-shrink: 0;
	color: var(--gr-gold, #C8A759);
}

/* ── CTA Form Placeholder ── */
.gr-invgrid__cta-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 700px;
	background: rgba(200, 167, 89, 0.05);
	border: 2px dashed rgba(200, 167, 89, 0.2);
	text-align: center;
	padding: 40px;
}
.gr-invgrid__cta-placeholder-icon {
	color: rgba(200, 167, 89, 0.3);
	margin-bottom: 16px;
}
.gr-invgrid__cta-placeholder p {
	color: var(--gr-text-muted, #8A8A8A);
	font-size: 1rem;
	margin: 0 0 4px;
}
.gr-invgrid__cta-placeholder span {
	color: var(--gr-text-muted, #8A8A8A);
	font-size: 0.8rem;
	opacity: 0.6;
}

.gr-invgrid__cta-form iframe {
	width: 100%;
	min-height: 700px;
	border: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.gr-invgrid__grid--cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.gr-invgrid__grid--cols-2,
	.gr-invgrid__grid--cols-3,
	.gr-invgrid__grid--cols-4 {
		grid-template-columns: 1fr;
	}
	.gr-invgrid__card--wide {
		grid-column: span 1;
	}
	.gr-invgrid__card-image {
		padding-bottom: 130%;
	}
	.gr-invgrid__card--wide .gr-invgrid__card-image {
		padding-bottom: 130%;
	}
	.gr-invgrid__overlay-inner {
		padding: 24px;
	}
	.gr-invgrid__card-title {
		font-size: 1.3rem;
	}
	.gr-invgrid__card--wide .gr-invgrid__card-title {
		font-size: 1.5rem;
	}
	.gr-invgrid__card-desc {
		-webkit-line-clamp: 2;
		font-size: 0.75rem;
	}
	.gr-invgrid__cta {
		padding: 40px 24px;
	}
	.gr-invgrid__cta-inner {
		flex-direction: column;
		gap: 40px;
	}
	.gr-invgrid__cta-text,
	.gr-invgrid__cta-form {
		flex: 1 1 100%;
	}
	.gr-invgrid__cta-title {
		font-size: 1.5rem;
	}
	.gr-invgrid__filters {
		gap: 8px;
	}
	.gr-invgrid__pill {
		padding: 8px 16px;
		font-size: 0.8rem;
	}
}


/* ═══════════════════════════════════════════════════════════════
   SEMINARS DYNAMIC GRID — CPT-powered seminar listing
   ═══════════════════════════════════════════════════════════════ */

.gr-semdyn { position: relative; }
.gr-semdyn--dark { color: var(--gr-white, #FFFFFF); }
.gr-semdyn--light { color: #0A0A0A; }

/* Filter pills */
.gr-semdyn__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 0 40px;
	justify-content: center;
}
.gr-semdyn__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 24px;
	border: 1px solid rgba(200, 167, 89, 0.25);
	background: transparent;
	color: var(--gr-text, #C8C8D0);
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.gr-semdyn--light .gr-semdyn__pill {
	color: #3A3A4A;
	border-color: #D0D0D0;
}
.gr-semdyn__pill:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
}
.gr-semdyn__pill--active {
	background: var(--gr-gold, #C8A759);
	color: #0A0A0A;
	border-color: var(--gr-gold, #C8A759);
	font-weight: 600;
}

/* Grid */
.gr-semdyn__grid {
	display: grid;
	gap: 24px;
}
.gr-semdyn__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gr-semdyn__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Card */
.gr-semdyn__card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: var(--gr-card, #111111);
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transition: border-color 0.4s ease, transform 0.4s ease;
}
.gr-semdyn--light .gr-semdyn__card {
	background: #FFFFFF;
	border-color: #E0DDD6;
}
.gr-semdyn__card:hover {
	border-color: rgba(200, 167, 89, 0.4);
	transform: translateY(-4px);
}

/* Card image */
.gr-semdyn__card-image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #151B26;
}
.gr-semdyn__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gr-semdyn__card:hover .gr-semdyn__card-image img {
	transform: scale(1.05);
}
.gr-semdyn__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.6) 100%);
	z-index: 2;
}
.gr-semdyn__card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(200, 167, 89, 0.15);
}

/* Date badge */
.gr-semdyn__date-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 4;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(6px);
	padding: 10px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 56px;
	border: 1px solid rgba(200, 167, 89, 0.2);
}
.gr-semdyn__date-day {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
}
.gr-semdyn__date-month {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #E8CC67;
	margin-top: 2px;
	text-transform: uppercase;
}

/* Format badge */
.gr-semdyn__format-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 4;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 6px 14px;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(6px);
	color: #FFFFFF;
}
.gr-semdyn__format-badge--stacjonarny { color: #60A5FA; }
.gr-semdyn__format-badge--online { color: #4ADE80; }
.gr-semdyn__format-badge--hybrydowy { color: #FBBF24; }

/* Card body */
.gr-semdyn__card-body { padding: 24px; }
.gr-semdyn__card-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.2rem;
	font-weight: 600;
	color: #FFFFFF;
	margin: 0 0 8px;
	line-height: 1.3;
}
.gr-semdyn--light .gr-semdyn__card-title { color: #0A0A0A; }
.gr-semdyn__card-excerpt {
	font-size: 0.85rem;
	line-height: 1.6;
	color: #8A8A8A;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.gr-semdyn__card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	margin-bottom: 16px;
}
.gr-semdyn__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	color: #8A8A8A;
}
.gr-semdyn__meta-item svg {
	color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}
.gr-semdyn__card-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
}
.gr-semdyn__card-btn span {
	transition: transform 0.3s ease;
}
.gr-semdyn__card:hover .gr-semdyn__card-btn span {
	transform: translateX(4px);
}

/* Empty state */
.gr-semdyn__empty {
	text-align: center;
	padding: 80px 40px;
	color: var(--gr-text-muted, #8A8A8A);
	font-size: 1rem;
}

/* CTA section */
.gr-semdyn__cta {
	margin-top: 60px;
	background: var(--gr-card, #111111);
	border: 1px solid rgba(200, 167, 89, 0.15);
	padding: 60px;
}
.gr-semdyn--light .gr-semdyn__cta {
	background: #F8F7F4;
	border-color: #E0D9C8;
}
.gr-semdyn__cta-inner {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}
.gr-semdyn__cta-text { flex: 1 1 50%; }
.gr-semdyn__cta-form { flex: 1 1 50%; min-height: 500px; }
.gr-semdyn__cta-label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--gr-gold, #C8A759);
	text-transform: uppercase;
	margin-bottom: 16px;
}
.gr-semdyn__cta-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 2rem;
	font-weight: 600;
	color: var(--gr-white, #FFFFFF);
	margin: 0 0 16px;
	line-height: 1.3;
}
.gr-semdyn--light .gr-semdyn__cta-title { color: #0A0A0A; }
.gr-semdyn__cta-line {
	width: 60px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}
.gr-semdyn__cta-desc {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--gr-text, #C8C8D0);
	margin: 0 0 24px;
}
.gr-semdyn--light .gr-semdyn__cta-desc { color: #4A4A5A; }
.gr-semdyn__cta-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.gr-semdyn__cta-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--gr-text, #C8C8D0);
}
.gr-semdyn--light .gr-semdyn__cta-list li { color: #3A3A4A; }
.gr-semdyn__cta-list svg {
	flex-shrink: 0;
	color: var(--gr-gold, #C8A759);
}
.gr-semdyn__cta-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	background: rgba(200, 167, 89, 0.05);
	border: 2px dashed rgba(200, 167, 89, 0.2);
	text-align: center;
	padding: 40px;
}
.gr-semdyn__cta-placeholder-icon { color: rgba(200, 167, 89, 0.3); margin-bottom: 16px; }
.gr-semdyn__cta-placeholder p { color: #8A8A8A; font-size: 1rem; margin: 0 0 4px; }
.gr-semdyn__cta-placeholder span { color: #8A8A8A; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 1024px) {
	.gr-semdyn__grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.gr-semdyn__grid--cols-2,
	.gr-semdyn__grid--cols-3 { grid-template-columns: 1fr; }
	.gr-semdyn__cta { padding: 40px 24px; }
	.gr-semdyn__cta-inner { flex-direction: column; gap: 40px; }
	.gr-semdyn__cta-text,
	.gr-semdyn__cta-form { flex: 1 1 100%; }
	.gr-semdyn__cta-title { font-size: 1.5rem; }
	.gr-semdyn__filters { gap: 8px; }
	.gr-semdyn__pill { padding: 8px 16px; font-size: 0.8rem; }
}


/* ═══════════════════════════════════════════════════════════════
   SEMINAR DETAIL — Info card for single seminar pages
   ═══════════════════════════════════════════════════════════════ */

.gr-semdetail {
	position: relative;
	border: 1px solid rgba(200, 167, 89, 0.2);
	overflow: hidden;
}
.gr-semdetail--dark {
	background: var(--gr-card, #111111);
	color: var(--gr-white, #FFFFFF);
}
.gr-semdetail--light {
	background: #FFFFFF;
	color: #0A0A0A;
	border-color: #E0DDD6;
}

/* Gold accent */
.gr-semdetail__accent {
	height: 3px;
	background: linear-gradient(90deg, var(--gr-gold, #C8A759), transparent);
}

/* Header */
.gr-semdetail__header {
	padding: 32px 32px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
}
.gr-semdetail__date-block {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.gr-semdetail__date-formatted {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--gr-gold, #C8A759);
}
.gr-semdetail__format-badge {
	display: inline-block;
	padding: 4px 12px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	align-self: flex-start;
}
.gr-semdetail__format-badge--stacjonarny { color: #60A5FA; background: rgba(96,165,250,0.1); }
.gr-semdetail__format-badge--online { color: #4ADE80; background: rgba(74,222,128,0.1); }
.gr-semdetail__format-badge--hybrydowy { color: #FBBF24; background: rgba(251,191,36,0.1); }

/* Countdown */
.gr-semdetail__countdown {
	display: flex;
	gap: 16px;
	text-align: center;
}
.gr-semdetail__countdown-item {
	display: flex;
	flex-direction: column;
	min-width: 52px;
}
.gr-semdetail__countdown-num {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
}
.gr-semdetail__countdown-label {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8A8A8A;
	margin-top: 4px;
}
.gr-semdetail__countdown-past {
	font-size: 0.85rem;
	color: #F87171;
	font-weight: 500;
}

/* Info rows */
.gr-semdetail__rows {
	padding: 24px 32px;
	display: flex;
	flex-direction: column;
}
.gr-semdetail__row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.gr-semdetail--light .gr-semdetail__row { border-bottom-color: #E0DDD6; }
.gr-semdetail__row:last-child { border-bottom: none; }
.gr-semdetail__row-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--gr-gold, #C8A759);
	margin-top: 2px;
}
.gr-semdetail__row-icon svg { width: 20px; height: 20px; }
.gr-semdetail__row-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.gr-semdetail__row-label {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #8A8A8A;
}
.gr-semdetail__row-value {
	font-size: 0.95rem;
	font-weight: 500;
	color: #FFFFFF;
}
.gr-semdetail--light .gr-semdetail__row-value { color: #0A0A0A; }
.gr-semdetail__row-sub {
	font-size: 0.8rem;
	color: #8A8A8A;
	margin-top: 2px;
}
.gr-semdetail__row-link {
	font-size: 0.75rem;
	color: var(--gr-gold, #C8A759);
	text-decoration: none;
	margin-top: 4px;
}
.gr-semdetail__row-link:hover { text-decoration: underline; }

/* CTA button */
.gr-semdetail__btn {
	display: block;
	margin: 0 32px 32px;
	padding: 16px;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	background: var(--gr-gold, #C8A759);
	color: #0A0A0A;
	text-decoration: none;
	transition: background 0.3s ease;
}
.gr-semdetail__btn:hover {
	background: var(--gr-gold-light, #E8CC67);
	color: #0A0A0A;
}

/* Notice */
.gr-semdetail__notice {
	padding: 40px;
	text-align: center;
	color: #8A8A8A;
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.gr-semdetail__header { flex-direction: column; padding: 24px 24px 0; }
	.gr-semdetail__rows { padding: 16px 24px; }
	.gr-semdetail__btn { margin: 0 24px 24px; }
	.gr-semdetail__countdown { gap: 12px; }
	.gr-semdetail__countdown-num { font-size: 1.4rem; }
}


/* ═══════════════════════════════════════════════════════════════
   SEMINAR AGENDA — Timeline/schedule for single seminar pages
   ═══════════════════════════════════════════════════════════════ */

.gr-semagenda { position: relative; }
.gr-semagenda--dark { color: #FFFFFF; }
.gr-semagenda--light { color: #0A0A0A; }

/* Header */
.gr-semagenda__header { margin-bottom: 48px; }
.gr-semagenda__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}
.gr-semagenda__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 16px;
}
.gr-semagenda--light .gr-semagenda__title { color: #0A0A0A; }
.gr-semagenda__desc {
	font-size: 1rem;
	line-height: 1.7;
	color: #8A8A8A;
	max-width: 600px;
}

/* Timeline */
.gr-semagenda__timeline {
	position: relative;
	padding-left: 100px;
}
.gr-semagenda__timeline::before {
	content: '';
	position: absolute;
	left: 88px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--gr-gold, #C8A759) 0%, rgba(200,167,89,0.15) 100%);
}

/* Item */
.gr-semagenda__item {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding-bottom: 40px;
	padding-left: 12px;
}
.gr-semagenda__item:last-child { padding-bottom: 0; }

/* Time */
.gr-semagenda__time {
	position: absolute;
	left: -100px;
	width: 80px;
	text-align: right;
	padding-top: 2px;
}
.gr-semagenda__time-text {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gr-gold, #C8A759);
}
.gr-semagenda__dot {
	position: absolute;
	right: -18px;
	top: 6px;
	width: 12px;
	height: 12px;
	background: var(--gr-gold, #C8A759);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(200, 167, 89, 0.15);
}

/* Content */
.gr-semagenda__content { flex: 1; }
.gr-semagenda__icon {
	color: var(--gr-gold, #C8A759);
	font-size: 1.2rem;
	margin-bottom: 8px;
}
.gr-semagenda__item-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.15rem;
	font-weight: 500;
	margin: 0 0 6px;
}
.gr-semagenda--light .gr-semagenda__item-title { color: #1A1A1A; }
.gr-semagenda__item-desc {
	font-size: 0.88rem;
	line-height: 1.6;
	color: #8A8A8A;
	margin: 0;
}

@media (max-width: 768px) {
	.gr-semagenda__timeline { padding-left: 70px; }
	.gr-semagenda__timeline::before { left: 58px; }
	.gr-semagenda__time { left: -70px; width: 52px; }
	.gr-semagenda__time-text { font-size: 0.9rem; }
	.gr-semagenda__item { padding-bottom: 32px; }
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE REVEAL — Cinematic scroll-driven process slides
   ═══════════════════════════════════════════════════════════════ */

.gr-sreveal {
	position: relative;
}

.gr-sreveal__sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
}

/* ─── Slides ─── */
.gr-sreveal__slide {
	position: absolute;
	inset: 0;
	z-index: 1;
	transform: translateY(100%);
	will-change: transform, filter;
}

.gr-sreveal__slide--hero {
	transform: translateY(0);
	z-index: 2;
}

/* ─── Background ─── */
.gr-sreveal__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.gr-sreveal__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

@media (max-width: 768px) {
	.gr-sreveal__bg img {
		object-position: var(--bg-mob, center center);
	}
}

.gr-sreveal__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 100%);
}

/* ─── Content ─── */
.gr-sreveal__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 100px 60px 80px;
	z-index: 3;
	color: #fff;
}

.gr-sreveal__content--hero {
	max-width: 900px;
	margin: 0 auto;
}

.gr-sreveal__content--step {
	justify-content: flex-end;
	align-items: flex-start;
	text-align: left;
	padding: 0 60px 100px;
	max-width: 750px;
}

/* ─── Hero elements ─── */
.gr-sreveal__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #D4AF37;
	margin-bottom: 20px;
}

.gr-sreveal__label::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 1px;
	background: #D4AF37;
	vertical-align: middle;
	margin-right: 12px;
}

.gr-sreveal__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2.2rem, 5vw, 4rem);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 16px;
	color: var(--gr-white, #FFFFFF);
}

.gr-sreveal__title em {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

.gr-sreveal__subtitle {
	font-size: 1.15rem;
	color: rgba(255,255,255,0.7);
	margin: 0 0 12px;
	font-weight: 300;
}

.gr-sreveal__desc {
	font-size: 1rem;
	color: rgba(255,255,255,0.6);
	margin: 0 0 32px;
	max-width: 600px;
	line-height: 1.7;
}

.gr-sreveal__buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

/* ─── Step elements ─── */
.gr-sreveal__step-number {
	font-size: clamp(5rem, 12vw, 9rem);
	font-weight: 800;
	color: #D4AF37;
	line-height: 1;
	position: absolute;
	top: 40px;
	left: 60px;
	z-index: 2;
	pointer-events: none;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
}

.gr-sreveal__step-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin: 0 0 16px;
	line-height: 1.2;
}

.gr-sreveal__step-title em {
	font-style: normal;
	color: #D4AF37;
}

.gr-sreveal__step-desc {
	font-size: 1.05rem;
	color: rgba(255,255,255,0.75);
	line-height: 1.8;
	margin: 0;
	max-width: 550px;
}

/* ─── Progress dots ─── */
.gr-sreveal__progress {
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 10;
}

.gr-sreveal__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.35);
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gr-sreveal__dot:hover {
	border-color: rgba(255,255,255,0.7);
}

.gr-sreveal__dot--active {
	background: #D4AF37;
	border-color: #D4AF37;
	transform: scale(1.3);
	box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

/* ─── Mobile adjustments (sticky scroll stays active) ─── */
@media (max-width: 768px) {
	.gr-sreveal__content--step {
		padding: 0 24px 60px;
	}
	.gr-sreveal__step-number {
		font-size: 5rem;
		left: 24px;
		top: 24px;
	}
	.gr-sreveal__content--hero {
		padding: 80px 24px 60px;
	}
	.gr-sreveal__step-desc {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.gr-sreveal__title {
		font-size: 1.8rem;
	}
	.gr-sreveal__step-title {
		font-size: 1.5rem;
	}
	.gr-sreveal__step-number {
		font-size: 4rem;
	}
	.gr-sreveal__buttons {
		flex-direction: column;
		align-items: stretch;
	}
}


/* ═══════════════════════════════════════════════════════════════
   SECURITY HUB — Cross layout: 2 left, logo center, 2 right, 1 below
   ═══════════════════════════════════════════════════════════════ */

.gr-sechub {
	color: #fff;
}

/* ─── Header ─── */
.gr-sechub__header {
	text-align: center;
	margin-bottom: 72px;
}

.gr-sechub__label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #D4AF37;
	margin-bottom: 16px;
}

.gr-sechub__label::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 1px;
	background: #D4AF37;
	vertical-align: middle;
	margin-right: 12px;
}

.gr-sechub__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 400;
	color: var(--gr-white, #FFFFFF);
	margin: 0 0 16px;
	line-height: 1.2;
}

.gr-sechub__title em {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}

.gr-sechub__desc {
	font-size: 1rem;
	color: rgba(255,255,255,0.6);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ─── 3-column grid: left cards | logo | right cards ─── */
.gr-sechub__grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}

.gr-sechub__col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.gr-sechub__col--left {
	padding-right: 48px;
	position: relative;
}

.gr-sechub__col--right {
	padding-left: 48px;
	position: relative;
}

/* ─── Connecting lines from cards to logo ─── */
.gr-sechub__col--left::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 48px;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(212,175,55,0.25));
}

.gr-sechub__col--right::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 48px;
	height: 1px;
	background: linear-gradient(to left, transparent, rgba(212,175,55,0.25));
}

.gr-sechub__col--center {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ─── Logo wrap + rings ─── */
.gr-sechub__logo-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
}

.gr-sechub__ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 160px;
	height: 160px;
	border: 1px solid rgba(212,175,55,0.2);
	border-radius: 50%;
	pointer-events: none;
}

.gr-sechub__ring--outer {
	width: 200px;
	height: 200px;
	border-color: rgba(212,175,55,0.08);
}

.gr-sechub__logo {
	width: 90px;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

.gr-sechub__logo-text {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.1rem;
	font-weight: 700;
	color: #D4AF37;
	text-align: center;
	position: relative;
	z-index: 2;
}

/* ─── Cards ─── */
.gr-sechub__card {
	text-align: center;
	padding: 28px 20px;
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 12px;
	transition: border-color 0.3s ease, background 0.3s ease;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.gr-sechub__card:hover {
	border-color: rgba(212,175,55,0.2);
	background: rgba(212,175,55,0.03);
}

.gr-sechub__card-icon {
	font-size: 1.5rem;
	color: #D4AF37;
	margin-bottom: 16px;
	line-height: 1;
}
.gr-sechub__card-icon svg {
	width: 1.5em;
	height: 1.5em;
	fill: #D4AF37;
}

.gr-sechub__card-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 8px;
	line-height: 1.3;
}

.gr-sechub__card-desc {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.5);
	line-height: 1.6;
	margin: 0;
}

/* ─── Bottom card (5th pillar, under logo) ─── */
.gr-sechub__bottom {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	position: relative;
}

/* Vertical line from logo to bottom card */
.gr-sechub__bottom::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 50%;
	width: 1px;
	height: 20px;
	background: rgba(212,175,55,0.25);
}

.gr-sechub__card--bottom {
	max-width: 320px;
	width: 100%;
	min-height: auto;
}

/* ─── Tablet ─── */
@media (max-width: 960px) {
	.gr-sechub__col--left {
		padding-right: 28px;
	}
	.gr-sechub__col--right {
		padding-left: 28px;
	}
	.gr-sechub__col--left::after,
	.gr-sechub__col--right::before {
		width: 28px;
	}
	.gr-sechub__card {
		padding: 22px 16px;
		min-height: 160px;
	}
	.gr-sechub__logo-wrap {
		width: 150px;
		height: 150px;
	}
	.gr-sechub__ring {
		width: 130px;
		height: 130px;
	}
	.gr-sechub__ring--outer {
		width: 160px;
		height: 160px;
	}
	.gr-sechub__logo {
		width: 75px;
	}
}

/* ─── Mobile: header → logo → 5 cards stacked ─── */
@media (max-width: 768px) {
	.gr-sechub__header {
		margin-bottom: 40px;
	}
	.gr-sechub__grid {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
	.gr-sechub__col--left,
	.gr-sechub__col--right {
		width: 100%;
		gap: 12px;
		padding: 0;
	}
	.gr-sechub__col--left::after,
	.gr-sechub__col--right::before {
		display: none;
	}
	.gr-sechub__col--center {
		order: -1;
		margin-bottom: 28px;
	}
	.gr-sechub__col--left {
		order: 0;
		margin-bottom: 12px;
	}
	.gr-sechub__col--right {
		order: 1;
	}
	.gr-sechub__card {
		padding: 22px 20px;
		min-height: auto;
	}
	.gr-sechub__card:hover {
		transform: none;
	}
	.gr-sechub__bottom {
		margin-top: 12px;
	}
	.gr-sechub__bottom::before {
		display: none;
	}
	.gr-sechub__card--bottom {
		max-width: 100%;
	}
	.gr-sechub__logo-wrap {
		width: 130px;
		height: 130px;
	}
	.gr-sechub__ring {
		width: 110px;
		height: 110px;
	}
	.gr-sechub__ring--outer {
		width: 140px;
		height: 140px;
	}
	.gr-sechub__logo {
		width: 65px;
	}
}


/* ═══════════════════════════════════════════════════════════════
   INVESTMENT CATALOG WIDGET (gr_investment_catalog)
   ═══════════════════════════════════════════════════════════════ */

/* ── Header ── */
.gr-icat__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 72px;
}

.gr-icat__label {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-icat__label::before,
.gr-icat__label::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
	opacity: 0.4;
}

.gr-icat__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 600;
	color: var(--gr-white, #fff);
	line-height: 1.25;
	margin-bottom: 20px;
}

.gr-icat__title em {
	color: var(--gr-gold, #C8A759);
	font-style: italic;
}

.gr-icat__divider {
	width: 50px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 0 auto 20px;
}

.gr-icat__subtitle {
	font-size: 1rem;
	color: var(--gr-text, #CCC);
	line-height: 1.7;
}

/* ── Cards Container ── */
.gr-icat__cards {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.gr-icat--grid .gr-icat__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

/* ── Single Card ── */
.gr-icat__card {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	background: var(--gr-card, #111);
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.gr-icat__card:hover {
	border-color: rgba(200, 167, 89, 0.25);
	box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
}

.gr-icat__card--reversed {
	direction: rtl;
}

.gr-icat__card--reversed > * {
	direction: ltr;
}

/* Grid layout cards */
.gr-icat--grid .gr-icat__card {
	grid-template-columns: 1fr;
}

/* ── Image ── */
.gr-icat__card-image {
	position: relative;
	overflow: hidden;
	min-height: 360px;
	align-self: stretch;
}

.gr-icat--grid .gr-icat__card-image {
	min-height: 280px;
}

.gr-icat__card-image img.gr-icat__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gr-icat__card:hover .gr-icat__card-image img.gr-icat__img {
	transform: scale(1.05);
}

.gr-icat__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--gr-dark-alt, #151B26) 0%, rgba(200, 169, 81, 0.05) 100%);
	color: rgba(200, 169, 81, 0.2);
}

.gr-icat__price {
	position: absolute;
	bottom: 16px;
	left: 16px;
	padding: 8px 18px;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(200, 167, 89, 0.25);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--gr-white, #fff);
	letter-spacing: 0.03em;
}

/* ── Content ── */
.gr-icat__card-content {
	padding: 48px 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gr-icat--grid .gr-icat__card-content {
	padding: 32px;
}

.gr-icat__location {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 12px;
}

.gr-icat__location svg {
	color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}

.gr-icat__name {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 600;
	color: var(--gr-white, #fff);
	margin-bottom: 16px;
	line-height: 1.25;
}

.gr-icat__desc {
	font-size: 0.9375rem;
	color: var(--gr-text, #CCC);
	line-height: 1.75;
	margin-bottom: 20px;
}

/* ── Highlights ── */
.gr-icat__highlights {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gr-icat__highlights li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.875rem;
	color: var(--gr-text, #CCC);
}

.gr-icat__highlights svg {
	color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}

/* ── Download Button ── */
.gr-icat__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 36px;
	background: var(--gr-gold, #C8A759);
	color: var(--gr-black, #0A0A0A);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid var(--gr-gold, #C8A759);
	transition: all 0.35s ease;
	align-self: flex-start;
}

.gr-icat__btn:hover {
	background: transparent;
	color: var(--gr-gold, #C8A759);
}

.gr-icat__btn svg {
	transition: transform 0.3s ease;
}

.gr-icat__btn:hover svg {
	transform: translateY(3px);
}

.gr-icat__btn--disabled {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.1);
	color: var(--gr-text-muted, #8A8A8A);
	cursor: not-allowed;
	pointer-events: none;
}

/* ── Restricted Access ── */
.gr-icat__restricted {
	text-align: center;
	padding: 100px 40px;
	max-width: 600px;
	margin: 0 auto;
}

.gr-icat__restricted-icon {
	color: var(--gr-gold, #C8A759);
	margin-bottom: 32px;
	opacity: 0.6;
}

.gr-icat__restricted-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 600;
	color: var(--gr-white, #fff);
	margin-bottom: 16px;
}

.gr-icat__restricted-desc {
	font-size: 1rem;
	color: var(--gr-text, #CCC);
	line-height: 1.7;
	margin-bottom: 32px;
}

.gr-icat__restricted .gr-icat__btn {
	align-self: center;
	margin: 0 auto;
}

/* ── Light Scheme ── */
.gr-icat--light .gr-icat__title {
	color: var(--gr-black, #0A0A0A);
}

.gr-icat--light .gr-icat__subtitle {
	color: #555;
}

.gr-icat--light .gr-icat__card {
	background: #fff;
	border-color: rgba(0, 0, 0, 0.08);
}

.gr-icat--light .gr-icat__card:hover {
	border-color: var(--gr-gold, #C8A759);
	box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08);
}

.gr-icat--light .gr-icat__name {
	color: var(--gr-black, #0A0A0A);
}

.gr-icat--light .gr-icat__desc,
.gr-icat--light .gr-icat__highlights li {
	color: #555;
}

.gr-icat--light .gr-icat__restricted-title {
	color: var(--gr-black, #0A0A0A);
}

.gr-icat--light .gr-icat__restricted-desc {
	color: #555;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.gr-icat__card {
		grid-template-columns: 1fr;
	}
	.gr-icat__card--reversed {
		direction: ltr;
	}
	.gr-icat__card-image {
		min-height: 300px;
	}
	.gr-icat--grid .gr-icat__cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.gr-icat__header {
		margin-bottom: 48px;
	}
	.gr-icat__card-image {
		min-height: 240px;
	}
	.gr-icat__card-content {
		padding: 32px 24px;
	}
	.gr-icat__cards {
		gap: 32px;
	}
	.gr-icat__restricted {
		padding: 60px 24px;
	}
}

@media (max-width: 480px) {
	.gr-icat__card-image {
		min-height: 200px;
	}
	.gr-icat__btn {
		width: 100%;
		justify-content: center;
	}
}


/* ═══════════════════════════════════════════════════════════════
   WEBINAR NAVBAR WIDGET (gr_webinar_navbar)
   ═══════════════════════════════════════════════════════════════ */

.gr-wnav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9990;
	background: rgba(10, 10, 10, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(200, 169, 89, 0.15);
	transition: background 0.3s ease;
}

.gr-wnav__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gr-wnav__left {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.gr-wnav__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.gr-wnav__logo-img {
	height: 32px;
	max-height: 32px;
	width: auto;
	object-fit: contain;
}

.gr-wnav__logo-text {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--gr-white, #fff);
	letter-spacing: 0.06em;
}

.gr-wnav__badge {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	background: rgba(200, 169, 89, 0.1);
	border: 1px solid rgba(200, 169, 89, 0.25);
	padding: 4px 12px;
}

/* ── Nav links ── */
.gr-wnav__right {
	display: flex;
	align-items: center;
	gap: 32px;
}

.gr-wnav__links {
	display: flex;
	align-items: center;
	gap: 24px;
}

.gr-wnav__link {
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.gr-wnav__link:hover {
	color: var(--gr-gold, #C8A759);
}

.gr-wnav__cta.gr-btn--sm {
	padding: 10px 28px;
	font-size: 0.8125rem;
}

@media (max-width: 768px) {
	.gr-wnav__inner { padding: 0 20px; height: 60px; }
	.gr-wnav__logo-img { height: 28px; max-height: 28px; }
	.gr-wnav__badge { display: none; }
	.gr-wnav__links { display: none; }
	.gr-wnav__cta.gr-btn--sm { padding: 8px 20px; font-size: 0.75rem; }
}


/* ═══════════════════════════════════════════════════════════════
   WEBINAR HERO WIDGET (gr_webinar_hero)
   ═══════════════════════════════════════════════════════════════ */

.gr-whero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--gr-black, #0A0A0A);
}

.gr-whero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-repeat: no-repeat;
	transform: scale(1.05);
	animation: grWheroZoom 20s ease-in-out infinite alternate;
}

@keyframes grWheroZoom {
	0%   { transform: scale(1.05); }
	100% { transform: scale(1.12); }
}

.gr-whero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.5) 100%);
}

.gr-whero__container {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 120px 40px 80px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: center;
}

.gr-whero--with-photo .gr-whero__container {
	grid-template-columns: 1.2fr 0.8fr;
}

/* ── Badge ── */
.gr-whero__badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	background: rgba(200, 169, 89, 0.1);
	border: 1px solid rgba(200, 169, 89, 0.3);
	padding: 8px 24px;
	border-radius: 4px;
	margin-bottom: 24px;
}

/* ── Title ── */
.gr-whero__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--gr-white, #fff);
	margin: 0 0 20px;
}

.gr-whero__title em {
	color: var(--gr-gold, #C8A759);
	font-style: italic;
}

/* ── Subtitle ── */
.gr-whero__subtitle {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.7;
	color: #CCCCCC;
	margin: 0 0 32px;
	max-width: 600px;
}

/* ── Meta (date, duration, format) ── */
.gr-whero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 40px;
}

.gr-whero__meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9375rem;
	color: #CCCCCC;
}

.gr-whero__meta-item svg {
	color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}

/* ── CTA ── */
.gr-whero__actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.gr-whero__btn {
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: 600;
}

.gr-whero__seats {
	font-size: 0.8125rem;
	color: rgba(200, 169, 89, 0.7);
	font-style: italic;
}

/* ── Presenter photo in hero ── */
.gr-whero__photo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.gr-whero__photo-frame {
	width: 320px;
	height: 400px;
	overflow: hidden;
	border: 2px solid rgba(200, 169, 89, 0.3);
	box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.gr-whero__photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gr-whero__photo-info {
	text-align: center;
}

.gr-whero__photo-name {
	display: block;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.1rem;
	color: var(--gr-white, #fff);
	font-weight: 600;
}

.gr-whero__photo-role {
	display: block;
	font-size: 0.8125rem;
	color: var(--gr-gold, #C8A759);
	margin-top: 4px;
}

/* ── Scroll indicator ── */
.gr-whero__scroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 3;
}

.gr-whero__scroll-text {
	font-size: 0.6875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(200, 169, 89, 0.5);
}

.gr-whero__scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--gr-gold, #C8A759), transparent);
	animation: grScrollPulse 2s ease-in-out infinite;
}

@keyframes grScrollPulse {
	0%, 100% { opacity: 0.4; }
	50%      { opacity: 1; }
}

/* ── Hero responsive ── */
@media (max-width: 1024px) {
	.gr-whero--with-photo .gr-whero__container {
		grid-template-columns: 1fr;
	}
	.gr-whero__photo { order: -1; }
	.gr-whero__photo-frame { width: 240px; height: 300px; }
}

@media (max-width: 768px) {
	.gr-whero__container { padding: 100px 24px 60px; }
	.gr-whero__badge { font-size: 0.625rem; padding: 6px 16px; }
	.gr-whero__meta { gap: 16px; }
	.gr-whero__meta-item { font-size: 0.8125rem; }
	.gr-whero__btn { padding: 14px 32px; font-size: 0.9375rem; width: 100%; text-align: center; }
	.gr-whero__photo-frame { width: 200px; height: 260px; }
	.gr-whero__scroll { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   WEBINAR COUNTDOWN WIDGET (gr_webinar_countdown)
   ═══════════════════════════════════════════════════════════════ */

.gr-wcount {
	text-align: center;
	padding: 60px 24px;
	background: linear-gradient(180deg, rgba(200, 169, 89, 0.04) 0%, transparent 100%);
}

.gr-wcount__heading {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	color: var(--gr-white, #fff);
	margin: 0 0 40px;
	font-weight: 500;
}

.gr-wcount__timer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

.gr-wcount__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-width: 90px;
	padding: 20px 16px;
	background: rgba(200, 169, 89, 0.06);
	border: 1px solid rgba(200, 169, 89, 0.2);
	border-radius: 8px;
}

.gr-wcount__number {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
}

.gr-wcount__label {
	font-size: 0.6875rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #999;
}

.gr-wcount__sep {
	font-size: 2rem;
	color: rgba(200, 169, 89, 0.3);
	font-weight: 300;
	align-self: flex-start;
	padding-top: 20px;
}

.gr-wcount__expired {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.5rem;
	color: var(--gr-gold, #C8A759);
}

.gr-wcount__btn {
	padding: 16px 48px;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.gr-wcount { padding: 40px 16px; }
	.gr-wcount__timer { gap: 8px; }
	.gr-wcount__unit { min-width: 70px; padding: 14px 10px; }
	.gr-wcount__sep { font-size: 1.5rem; padding-top: 14px; }
}

@media (max-width: 480px) {
	.gr-wcount__unit { min-width: 60px; padding: 12px 8px; }
	.gr-wcount__number { font-size: 1.8rem; }
}


/* ═══════════════════════════════════════════════════════════════
   WEBINAR TOPICS WIDGET (gr_webinar_topics)
   ═══════════════════════════════════════════════════════════════ */

.gr-wtopic {
	padding: 80px 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.gr-wtopic__header {
	text-align: center;
	margin-bottom: 60px;
}

.gr-wtopic__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-wtopic__label::before,
.gr-wtopic__label::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
}

.gr-wtopic__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	color: var(--gr-white, #fff);
	margin: 0;
}

.gr-wtopic__title em {
	color: var(--gr-gold, #C8A759);
	font-style: italic;
}

.gr-wtopic__divider {
	width: 50px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 20px auto 0;
}

/* ── List layout ── */
.gr-wtopic__list--list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.gr-wtopic__list--grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.gr-wtopic__item {
	display: flex;
	gap: 24px;
	padding: 32px 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gr-wtopic__list--grid .gr-wtopic__item {
	padding: 28px;
	border: 1px solid rgba(200, 169, 89, 0.12);
	border-radius: 8px;
	background: rgba(255,255,255,0.02);
	transition: border-color 0.3s ease, background 0.3s ease;
}

.gr-wtopic__list--grid .gr-wtopic__item:hover {
	border-color: rgba(200, 169, 89, 0.3);
	background: rgba(200, 169, 89, 0.04);
}

.gr-wtopic__num {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 2rem;
	font-weight: 700;
	color: rgba(200, 169, 89, 0.2);
	line-height: 1;
	flex-shrink: 0;
	min-width: 48px;
}

.gr-wtopic__body {
	flex: 1;
}

.gr-wtopic__item-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--gr-white, #fff);
	margin: 0 0 8px;
}

.gr-wtopic__item-desc {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #AAAAAA;
	margin: 0;
}

@media (max-width: 768px) {
	.gr-wtopic { padding: 60px 24px; }
	.gr-wtopic__list--grid { grid-template-columns: 1fr; }
	.gr-wtopic__item { gap: 16px; padding: 24px 0; }
	.gr-wtopic__num { font-size: 1.5rem; min-width: 36px; }
}


/* ═══════════════════════════════════════════════════════════════
   WEBINAR AUDIENCE WIDGET (gr_webinar_audience)
   ═══════════════════════════════════════════════════════════════ */

.gr-waud {
	padding: 80px 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.gr-waud__header {
	text-align: center;
	margin-bottom: 60px;
}

.gr-waud__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-waud__label::before,
.gr-waud__label::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
}

.gr-waud__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	color: var(--gr-white, #fff);
	margin: 0;
}

.gr-waud__title em {
	color: var(--gr-gold, #C8A759);
	font-style: italic;
}

.gr-waud__divider {
	width: 50px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 20px auto 0;
}

.gr-waud__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.gr-waud__col {
	padding: 40px;
	border: 1px solid rgba(200, 169, 89, 0.15);
	background: rgba(255,255,255,0.02);
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.gr-waud__col:hover {
	border-color: rgba(200, 169, 89, 0.35);
	transform: translateY(-4px);
}

.gr-waud__col-icon {
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}

.gr-waud__col-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--gr-white, #fff);
	margin: 0 0 24px;
}

.gr-waud__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gr-waud__list-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #CCCCCC;
}

.gr-waud__check {
	color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
	margin-top: 3px;
}

.gr-waud__cta {
	text-align: center;
	margin-top: 48px;
}

.gr-waud__cta .gr-btn {
	padding: 16px 48px;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.gr-waud { padding: 60px 24px; }
	.gr-waud__grid { grid-template-columns: 1fr; gap: 24px; }
	.gr-waud__col { padding: 28px; }
	.gr-waud__cta .gr-btn { width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════
   WEBINAR SPEAKER WIDGET (gr_webinar_speaker)
   ═══════════════════════════════════════════════════════════════ */

.gr-wspeak {
	padding: 80px 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.gr-wspeak__header {
	text-align: center;
	margin-bottom: 60px;
}

.gr-wspeak__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-wspeak__label::before,
.gr-wspeak__label::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
}

.gr-wspeak__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	color: var(--gr-white, #fff);
	margin: 0;
}

.gr-wspeak__title em {
	color: var(--gr-gold, #C8A759);
	font-style: italic;
}

.gr-wspeak__divider {
	width: 50px;
	height: 2px;
	background: var(--gr-gold, #C8A759);
	margin: 20px auto 0;
}

/* ── Body layout ── */
.gr-wspeak__body {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: start;
}

.gr-wspeak__body--photo-right {
	direction: ltr;
}

.gr-wspeak__body--photo-right .gr-wspeak__photo {
	order: 2;
}

.gr-wspeak__body--photo-right .gr-wspeak__info {
	order: 1;
}

/* ── Photo ── */
.gr-wspeak__photo-frame {
	overflow: hidden;
	border: 2px solid rgba(200, 169, 89, 0.2);
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
	aspect-ratio: 3 / 4;
}

.gr-wspeak__photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ── Info ── */
.gr-wspeak__name {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--gr-white, #fff);
	margin: 0 0 8px;
}

.gr-wspeak__role {
	display: inline-block;
	font-size: 0.875rem;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 24px;
	font-weight: 500;
}

.gr-wspeak__bio {
	font-size: 0.9375rem;
	line-height: 1.8;
	color: #BBBBBB;
	margin-bottom: 32px;
}

.gr-wspeak__bio p {
	margin: 0 0 12px;
}

/* ── Highlights (stats) ── */
.gr-wspeak__highlights {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.gr-wspeak__highlight {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 100px;
}

.gr-wspeak__highlight-num {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--gr-gold, #C8A759);
	line-height: 1;
}

.gr-wspeak__highlight-text {
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #888;
}

@media (max-width: 768px) {
	.gr-wspeak { padding: 60px 24px; }
	.gr-wspeak__body { grid-template-columns: 1fr; gap: 32px; }
	.gr-wspeak__body--photo-right .gr-wspeak__photo { order: -1; }
	.gr-wspeak__photo-frame { max-width: 300px; margin: 0 auto; }
	.gr-wspeak__highlights { gap: 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   WEBINAR FOOTER WIDGET (gr_webinar_footer)
   ═══════════════════════════════════════════════════════════════ */

.gr-wfoot {
	padding: 40px 40px 32px;
	border-top: 1px solid rgba(200, 169, 89, 0.1);
	background: rgba(10, 10, 10, 0.95);
}

/* ── Footer logo ── */
.gr-wfoot__logo-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 32px;
}
.gr-wfoot__logo {
	display: inline-flex;
}
.gr-wfoot__logo-img {
	max-height: 64px;
	width: auto;
	object-fit: contain;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}
.gr-wfoot__logo-img--small  { max-height: 44px; }
.gr-wfoot__logo-img--medium { max-height: 64px; }
.gr-wfoot__logo-img--large  { max-height: 90px; }
.gr-wfoot__logo:hover .gr-wfoot__logo-img {
	opacity: 1;
}

/* ── Contact row ── */
.gr-wfoot__contact-row {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gr-wfoot__contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8125rem;
	color: #AAA;
	text-decoration: none;
	transition: color 0.2s ease;
}

a.gr-wfoot__contact-item:hover {
	color: var(--gr-gold, #C8A759);
}

.gr-wfoot__contact-item svg {
	color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}

.gr-wfoot__socials {
	display: flex;
	gap: 12px;
	margin-left: 8px;
}

.gr-wfoot__social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.1);
	color: #AAA;
	transition: all 0.3s ease;
}

.gr-wfoot__social:hover {
	border-color: var(--gr-gold, #C8A759);
	color: var(--gr-gold, #C8A759);
	background: rgba(200, 169, 89, 0.1);
}

.gr-wfoot__disclaimer {
	font-size: 0.75rem;
	line-height: 1.7;
	color: #666;
	text-align: center;
	max-width: 700px;
	margin: 0 auto 24px;
}

.gr-wfoot__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.gr-wfoot__copy {
	font-size: 0.8125rem;
	color: #888;
}

.gr-wfoot__copy a {
	color: var(--gr-gold, #C8A759);
	text-decoration: none;
	transition: color 0.2s ease;
}

.gr-wfoot__copy a:hover {
	color: var(--gr-white, #fff);
}

.gr-wfoot__link {
	font-size: 0.8125rem;
	color: #888;
	text-decoration: none;
	transition: color 0.2s ease;
}

.gr-wfoot__link:hover {
	color: var(--gr-gold, #C8A759);
}

@media (max-width: 768px) {
	.gr-wfoot { padding: 32px 24px 24px; }
	.gr-wfoot__bottom { flex-direction: column; gap: 8px; }
}


/* ═══════════════════════════════════════════════════════════════
   WEBINAR PAGE TEMPLATE — Canvas & body overrides
   ═══════════════════════════════════════════════════════════════ */

.gr-webinar-page {
	background: var(--gr-black, #0A0A0A);
}

.gr-webinar-canvas {
	padding-top: 0;
}

.gr-webinar-page .elementor-section {
	padding-left: 0;
	padding-right: 0;
}

/* Fix for Elementor admin bar offset on webinar page */
.admin-bar .gr-wnav {
	top: 32px;
}

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


/* ═══════════════════════════════════════════════════════════════
   WEBINAR REGISTER WIDGET (gr_webinar_register)
   ═══════════════════════════════════════════════════════════════ */

.gr-wreg {
	padding: 80px 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.gr-wreg__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* ── Info side ── */
.gr-wreg__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}

.gr-wreg__label::before,
.gr-wreg__label::after {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gr-gold, #C8A759);
}

.gr-wreg__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	color: var(--gr-white, #fff);
	margin: 0 0 16px;
}

.gr-wreg__title em {
	color: var(--gr-gold, #C8A759);
	font-style: italic;
}

.gr-wreg__subtitle {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #AAAAAA;
	margin: 0 0 32px;
}

.gr-wreg__bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.gr-wreg__bullet {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9375rem;
	color: #CCCCCC;
}

.gr-wreg__bullet svg {
	color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}

/* ── Form side ── */
.gr-wreg__form-wrap {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(200, 169, 89, 0.15);
	padding: 40px;
}

.gr-wreg__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.gr-wreg__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gr-wreg__field-label {
	font-size: 0.8125rem;
	font-weight: 500;
	color: #CCCCCC;
	letter-spacing: 0.02em;
}

.gr-wreg__input {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 6px;
	padding: 14px 16px;
	font-size: 0.9375rem;
	color: var(--gr-white, #fff);
	transition: border-color 0.3s ease, background 0.3s ease;
	outline: none;
	font-family: inherit;
}

.gr-wreg__input::placeholder {
	color: #666;
}

.gr-wreg__input:focus {
	border-color: var(--gr-gold, #C8A759);
	background: rgba(200, 169, 89, 0.05);
}

.gr-wreg__consent {
	padding-top: 4px;
}

.gr-wreg__consent-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.75rem;
	line-height: 1.6;
	color: #888;
	cursor: pointer;
}

.gr-wreg__consent-label a {
	color: var(--gr-gold, #C8A759);
	text-decoration: none;
}

.gr-wreg__consent-label a:hover {
	text-decoration: underline;
}

.gr-wreg__checkbox {
	margin-top: 3px;
	accent-color: var(--gr-gold, #C8A759);
	flex-shrink: 0;
}

.gr-wreg__submit {
	width: 100%;
	padding: 16px;
	font-size: 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 8px;
}

.gr-wreg__submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.gr-wreg__submit-loading svg {
	animation: grSpinner 1s linear infinite;
}

@keyframes grSpinner {
	to { transform: rotate(360deg); }
}

.gr-wreg__message {
	padding: 14px 20px;
	font-size: 0.875rem;
	text-align: center;
}

.gr-wreg__message--success {
	background: rgba(72, 187, 120, 0.1);
	border: 1px solid rgba(72, 187, 120, 0.3);
	color: #48BB78;
}

.gr-wreg__message--error {
	background: rgba(245, 101, 101, 0.1);
	border: 1px solid rgba(245, 101, 101, 0.3);
	color: #F56565;
}

/* ── Shortcode embed styling ── */
.gr-wreg__embed input[type="text"],
.gr-wreg__embed input[type="email"],
.gr-wreg__embed input[type="tel"],
.gr-wreg__embed textarea {
	background: rgba(255,255,255,0.05) !important;
	border: 1px solid rgba(255,255,255,0.12) !important;
	padding: 14px 16px !important;
	font-size: 0.9375rem !important;
	color: var(--gr-white, #fff) !important;
}

.gr-wreg__embed input:focus,
.gr-wreg__embed textarea:focus {
	border-color: var(--gr-gold, #C8A759) !important;
}

.gr-wreg__embed input[type="submit"],
.gr-wreg__embed button[type="submit"] {
	background: var(--gr-gold, #C8A759) !important;
	color: #0A0A0A !important;
	border: none !important;
	padding: 16px 40px !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	border-radius: 4px !important;
	cursor: pointer !important;
	width: 100% !important;
	transition: background 0.3s ease !important;
}

.gr-wreg__embed input[type="submit"]:hover,
.gr-wreg__embed button[type="submit"]:hover {
	background: #D4B85C !important;
}

@media (max-width: 768px) {
	.gr-wreg { padding: 60px 24px; }
	.gr-wreg__container { grid-template-columns: 1fr; gap: 40px; }
	.gr-wreg__form-wrap { padding: 28px; }
}

/* ═══════════════════════════════════════════
   Webinar Thank You  (gr-wty)
   ═══════════════════════════════════════════ */
.gr-wty {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 80px 24px 60px;
}

/* ── Confirmation ── */
.gr-wty__icon {
	margin-bottom: 28px;
	animation: gr-wty-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes gr-wty-pop {
	0%   { transform: scale(0); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}
.gr-wty__label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
	padding: 6px 18px;
	border: 1px solid rgba(200, 167, 89, 0.3);
}
.gr-wty__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 20px;
}
.gr-wty__title em {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}
.gr-wty__subtitle {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 auto 48px;
	max-width: 640px;
}

/* ── Email notice ── */
.gr-wty__email-notice {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px;
	margin-bottom: 48px;
	background: rgba(200, 167, 89, 0.04);
	border: 1px solid rgba(200, 167, 89, 0.15);
}
.gr-wty__email-icon {
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}
.gr-wty__email-heading {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 10px;
}
.gr-wty__email-text {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	max-width: 520px;
}

/* ── Event details ── */
.gr-wty__event {
	margin-bottom: 48px;
	padding: 32px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(200, 167, 89, 0.15);
}
.gr-wty__event-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}
.gr-wty__event-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	text-align: left;
	padding: 14px;
	transition: background 0.3s ease;
}
.gr-wty__event-item:hover {
	background: rgba(200, 167, 89, 0.05);
}
.gr-wty__event-item--full {
	grid-column: 1 / -1;
	border-bottom: 1px solid rgba(200, 167, 89, 0.1);
	padding-bottom: 18px;
	margin-bottom: 8px;
}
.gr-wty__event-item svg {
	flex-shrink: 0;
	color: var(--gr-gold, #C8A759);
	margin-top: 2px;
}
.gr-wty__event-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 4px;
}
.gr-wty__event-value {
	display: block;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
}

/* ── Video ── */
.gr-wty__video {
	margin-bottom: 48px;
}
.gr-wty__video-heading {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 24px;
	text-align: center;
}
.gr-wty__video-wrap {
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
	border: 1px solid rgba(200, 167, 89, 0.2);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.gr-wty__video-wrap iframe,
.gr-wty__video-wrap video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.gr-wty__video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.05);
	color: rgba(255, 255, 255, 0.4);
	gap: 12px;
}
.gr-wty__video-placeholder svg {
	color: var(--gr-gold, #C8A759);
	opacity: 0.4;
}
.gr-wty__video-placeholder p {
	font-size: 14px;
	margin: 0;
}

/* ── Mobile ── */
@media (max-width: 768px) {
	.gr-wty { padding: 60px 20px 40px; }
	.gr-wty__event-grid { grid-template-columns: 1fr; }
	.gr-wty__event { padding: 20px; }
}

/* ═══════════════════════════════════════════
   Webinar Preparation  (gr-wprep)
   ═══════════════════════════════════════════ */
.gr-wprep {
	max-width: 1000px;
	margin: 0 auto;
	padding: 80px 24px;
}

/* ── Header ── */
.gr-wprep__header {
	text-align: center;
	margin-bottom: 56px;
}
.gr-wprep__label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}
.gr-wprep__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 16px;
}
.gr-wprep__title em {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}
.gr-wprep__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 auto;
	max-width: 560px;
}

/* ── Steps grid ── */
.gr-wprep__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 56px;
}
.gr-wprep__card {
	position: relative;
	padding: 32px 28px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(200, 167, 89, 0.1);
	transition: border-color 0.3s ease, transform 0.3s ease;
}
.gr-wprep__card:hover {
	border-color: rgba(200, 167, 89, 0.35);
	transform: translateY(-3px);
}
.gr-wprep__card-num {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 42px;
	font-weight: 800;
	color: rgba(200, 167, 89, 0.08);
	line-height: 1;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
}
.gr-wprep__card-icon {
	margin-bottom: 18px;
	color: var(--gr-gold, #C8A759);
}
.gr-wprep__card-heading {
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 10px;
}
.gr-wprep__card-text {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* ── Knowledge base CTA ── */
.gr-wprep__kb {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px 36px;
	background: rgba(200, 167, 89, 0.05);
	border: 1px solid rgba(200, 167, 89, 0.2);
}
.gr-wprep__kb-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.1);
	color: var(--gr-gold, #C8A759);
}
.gr-wprep__kb-content {
	flex: 1;
}
.gr-wprep__kb-title {
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 6px;
}
.gr-wprep__kb-desc {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}
.gr-wprep__kb-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.gr-wprep__kb-btn svg {
	transition: transform 0.3s ease;
}
.gr-wprep__kb-btn:hover svg {
	transform: translateX(4px);
}

/* ── Mobile ── */
@media (max-width: 768px) {
	.gr-wprep { padding: 60px 20px; }
	.gr-wprep__grid { grid-template-columns: 1fr; }
	.gr-wprep__kb {
		flex-direction: column;
		text-align: center;
		gap: 20px;
		padding: 28px 24px;
	}
	.gr-wprep__kb-btn { align-self: center; }
}

/* ═══════════════════════════════════════════
   Webinar Process Steps  (gr-wstep)
   ═══════════════════════════════════════════ */
.gr-wstep {
	padding: 24px 20px;
}
.gr-wstep__track {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	max-width: 800px;
	margin: 0 auto;
}
.gr-wstep__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	flex-shrink: 0;
}
.gr-wstep__circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(200, 167, 89, 0.2);
	background: rgba(255, 255, 255, 0.03);
	color: rgba(255, 255, 255, 0.35);
	transition: all 0.4s var(--gr-ease-smooth, cubic-bezier(0.4, 0, 0.2, 1));
}
.gr-wstep__item--completed .gr-wstep__circle {
	border-color: var(--gr-gold, #C8A759);
	background: rgba(200, 167, 89, 0.15);
	color: var(--gr-gold, #C8A759);
}
.gr-wstep__item--active .gr-wstep__circle {
	border-color: var(--gr-gold, #C8A759);
	background: var(--gr-gold, #C8A759);
	color: #0A0A0A;
	box-shadow: 0 0 20px rgba(200, 167, 89, 0.35);
	animation: gr-wstep-pulse 2s ease-in-out infinite;
}
@keyframes gr-wstep-pulse {
	0%, 100% { box-shadow: 0 0 20px rgba(200, 167, 89, 0.35); }
	50%      { box-shadow: 0 0 30px rgba(200, 167, 89, 0.55); }
}
.gr-wstep__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	text-align: center;
	white-space: nowrap;
}
.gr-wstep__item--completed .gr-wstep__label {
	color: var(--gr-gold, #C8A759);
	opacity: 0.7;
}
.gr-wstep__item--active .gr-wstep__label {
	color: var(--gr-gold, #C8A759);
	font-weight: 700;
}
.gr-wstep__line {
	flex: 1;
	height: 2px;
	min-width: 40px;
	margin-top: 24px;
	background: rgba(200, 167, 89, 0.15);
	transition: background 0.4s ease;
}
.gr-wstep__line--done {
	background: var(--gr-gold, #C8A759);
	opacity: 0.5;
}
@media (max-width: 600px) {
	.gr-wstep__track { gap: 0; }
	.gr-wstep__circle { width: 38px; height: 38px; }
	.gr-wstep__circle svg { width: 14px; height: 14px; }
	.gr-wstep__label { font-size: 10px; }
	.gr-wstep__line { min-width: 20px; margin-top: 19px; }
}

/* ═══════════════════════════════════════════
   Webinar Booking  (gr-wbook)
   ═══════════════════════════════════════════ */
.gr-wbook {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 24px;
}
.gr-wbook__content {
	padding-top: 20px;
}
.gr-wbook__label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
	padding: 6px 18px;
	border: 1px solid rgba(200, 167, 89, 0.3);
}
.gr-wbook__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 20px;
}
.gr-wbook__title em {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}
.gr-wbook__subtitle {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	margin: 0 0 36px;
}

/* Benefits list */
.gr-wbook__benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.gr-wbook__benefit {
	display: flex;
	align-items: center;
	gap: 14px;
}
.gr-wbook__benefit-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.1);
	color: var(--gr-gold, #C8A759);
}
.gr-wbook__benefit-text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.4;
}

/* Trust bar */
.gr-wbook__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid rgba(200, 167, 89, 0.1);
}
.gr-wbook__trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

/* Embed area */
.gr-wbook__embed {
	overflow: hidden;
	border: 1px solid rgba(200, 167, 89, 0.15);
	background: rgba(255, 255, 255, 0.02);
}
.gr-wbook__calendly,
.gr-wbook__iframe-wrap {
	width: 100%;
	overflow: hidden;
}
.gr-wbook__calendly iframe,
.gr-wbook__iframe-wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
}
.gr-wbook__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	color: rgba(255, 255, 255, 0.35);
	gap: 16px;
	padding: 40px;
}
.gr-wbook__placeholder svg {
	color: var(--gr-gold, #C8A759);
	opacity: 0.3;
}
.gr-wbook__placeholder p {
	font-size: 14px;
	margin: 0;
}
.gr-wbook__btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	padding: 40px;
}
.gr-wbook__cta-btn {
	font-size: 18px;
	padding: 18px 40px;
}
@media (max-width: 900px) {
	.gr-wbook {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 40px 20px;
	}
	.gr-wbook__content { padding-top: 0; }
}

/* ═══════════════════════════════════════════
   Webinar Testimonials  (gr-wtest)
   ═══════════════════════════════════════════ */
.gr-wtest {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 24px;
}

/* Header */
.gr-wtest__header {
	text-align: center;
	margin-bottom: 56px;
}
.gr-wtest__label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}
.gr-wtest__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 16px;
}
.gr-wtest__title em {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}
.gr-wtest__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 auto;
	max-width: 560px;
}

/* Grid */
.gr-wtest__grid {
	display: grid;
	gap: 24px;
}
.gr-wtest__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gr-wtest__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Card base */
.gr-wtest__card {
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(200, 167, 89, 0.1);
	transition: border-color 0.3s ease, transform 0.3s ease;
}
.gr-wtest__card:hover {
	border-color: rgba(200, 167, 89, 0.3);
	transform: translateY(-3px);
}

/* Text testimonial */
.gr-wtest__quote-icon {
	margin-bottom: 16px;
}
.gr-wtest__stars {
	display: flex;
	gap: 3px;
	margin-bottom: 16px;
}
.gr-wtest__quote {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 24px;
	flex: 1;
	font-style: italic;
}

/* Video testimonial */
.gr-wtest__card--video {
	padding: 0;
	overflow: hidden;
}
.gr-wtest__card--video .gr-wtest__author {
	padding: 20px 28px 28px;
}
.gr-wtest__video-wrap {
	position: relative;
	padding-top: 56.25%;
	background: rgba(0, 0, 0, 0.3);
}
.gr-wtest__video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.gr-wtest__video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gr-gold, #C8A759);
	opacity: 0.3;
}
.gr-wtest__video-caption {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	margin: 12px 28px 0;
	font-style: italic;
}

/* Author block */
.gr-wtest__author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid rgba(200, 167, 89, 0.08);
}
.gr-wtest__card--video .gr-wtest__author {
	border-top: none;
	padding-top: 0;
}
.gr-wtest__author-photo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(200, 167, 89, 0.3);
}
.gr-wtest__author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.12);
	color: var(--gr-gold, #C8A759);
	font-weight: 700;
	font-size: 17px;
	flex-shrink: 0;
}
.gr-wtest__author-name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}
.gr-wtest__author-role {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}

/* Responsive */
@media (max-width: 900px) {
	.gr-wtest__grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.gr-wtest { padding: 60px 20px; }
	.gr-wtest__grid--cols-2,
	.gr-wtest__grid--cols-3 { grid-template-columns: 1fr; }
	.gr-wtest__card { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════
   Webinar Calendar  (gr-wcal)
   ═══════════════════════════════════════════ */
.gr-wcal {
	margin: 0 auto;
	padding: 60px 24px 80px;
}

/* Header */
.gr-wcal__header {
	text-align: center;
	margin-bottom: 40px;
}
.gr-wcal__label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}
.gr-wcal__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 16px;
}
.gr-wcal__title em {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}
.gr-wcal__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 auto;
	max-width: 560px;
}

/* Embed */
.gr-wcal__embed {
	overflow: hidden;
	border: 1px solid rgba(200, 167, 89, 0.15);
	background: rgba(255, 255, 255, 0.02);
}
.gr-wcal__frame {
	width: 100%;
	overflow: hidden;
}
.gr-wcal__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}
.gr-wcal__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.35);
	gap: 16px;
	padding: 60px 40px;
}
.gr-wcal__placeholder svg {
	color: var(--gr-gold, #C8A759);
	opacity: 0.25;
}
.gr-wcal__placeholder p {
	font-size: 15px;
	margin: 0;
}

/* Note */
.gr-wcal__note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 24px;
	padding: 20px 24px;
	background: rgba(200, 167, 89, 0.04);
	border: 1px solid rgba(200, 167, 89, 0.1);
}
.gr-wcal__note svg {
	flex-shrink: 0;
	color: var(--gr-gold, #C8A759);
	opacity: 0.5;
	margin-top: 2px;
}
.gr-wcal__note p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

@media (max-width: 768px) {
	.gr-wcal { padding: 40px 16px 60px; }
}

/* ═══════════════════════════════════════════
   Video Opinions  (gr-vop)
   ═══════════════════════════════════════════ */
.gr-vop {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 24px;
}
.gr-vop__header {
	text-align: center;
	margin-bottom: 56px;
}
.gr-vop__label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gr-gold, #C8A759);
	margin-bottom: 16px;
}
.gr-vop__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(26px, 4vw, 36px);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 16px;
}
.gr-vop__title em {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}
.gr-vop__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 auto;
	max-width: 560px;
}

/* Grid */
.gr-vop__grid {
	display: grid;
	gap: 24px;
}
.gr-vop__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gr-vop__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.gr-vop__grid--cols-4 { grid-template-columns: repeat(2, 1fr); }

/* Card */
.gr-vop__card {
	display: flex;
	flex-direction: column;
	background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(200,167,89,0.02) 100%);
	border: 1px solid rgba(200, 167, 89, 0.1);
	overflow: hidden;
	transition: border-color 0.4s var(--gr-ease-smooth, ease), transform 0.4s var(--gr-ease-smooth, ease), box-shadow 0.4s ease;
}
.gr-vop__card:hover {
	border-color: rgba(200, 167, 89, 0.35);
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(200, 167, 89, 0.08);
}

/* Video */
.gr-vop__video {
	position: relative;
	padding-top: 56.25%;
	background: rgba(0, 0, 0, 0.4);
}
.gr-vop__video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.gr-vop__vid-ph {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(200,167,89,0.08) 0%, rgba(0,0,0,0.3) 100%);
	color: var(--gr-gold, #C8A759);
	opacity: 0.5;
}

/* Body */
.gr-vop__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 28px 28px 32px;
}
.gr-vop__quote-mark {
	margin-bottom: 12px;
}
.gr-vop__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 14px;
}
.gr-vop__headline {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 10px;
	line-height: 1.3;
}
.gr-vop__quote {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 24px;
	flex: 1;
}

/* Author */
.gr-vop__author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid rgba(200, 167, 89, 0.08);
	margin-top: auto;
}
.gr-vop__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(200,167,89,0.2) 0%, rgba(200,167,89,0.08) 100%);
	color: var(--gr-gold, #C8A759);
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
}
.gr-vop__avatar-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(200, 167, 89, 0.25);
	flex-shrink: 0;
}
.gr-vop__name {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}
.gr-vop__role {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
	.gr-vop__grid--cols-3,
	.gr-vop__grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.gr-vop { padding: 60px 16px; }
	.gr-vop__grid--cols-2,
	.gr-vop__grid--cols-3,
	.gr-vop__grid--cols-4 { grid-template-columns: 1fr; }
	.gr-vop__body { padding: 22px 22px 26px; }
}

/* ═══════════════════════════════════════════
   Dual CTA  (gr-dcta)
   ═══════════════════════════════════════════ */
.gr-dcta {
	max-width: 1000px;
	margin: 0 auto;
	padding: 80px 24px;
}
.gr-dcta__header {
	text-align: center;
	margin-bottom: 40px;
}
.gr-dcta__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: clamp(24px, 3.5vw, 32px);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 14px;
}
.gr-dcta__title em {
	font-style: italic;
	color: var(--gr-gold, #C8A759);
}
.gr-dcta__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 auto;
	max-width: 500px;
}

/* Cards */
.gr-dcta__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.gr-dcta__card {
	padding: 36px 32px;
	background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(200,167,89,0.02) 100%);
	border: 1px solid rgba(200, 167, 89, 0.12);
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease, transform 0.3s ease;
}
.gr-dcta__card:hover {
	border-color: rgba(200, 167, 89, 0.35);
	transform: translateY(-3px);
}
.gr-dcta__card-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(200, 167, 89, 0.1);
	color: var(--gr-gold, #C8A759);
	margin-bottom: 20px;
}
.gr-dcta__card-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 10px;
}
.gr-dcta__card-desc {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 24px;
	flex: 1;
}
.gr-dcta__card-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gr-gold, #C8A759);
	text-decoration: none;
	transition: color 0.3s ease;
}
.gr-dcta__card-btn:hover {
	color: var(--gr-gold-light, #E8CC67);
}
.gr-dcta__card-btn svg {
	transition: transform 0.3s ease;
}
.gr-dcta__card-btn:hover svg {
	transform: translateX(4px);
}

@media (max-width: 600px) {
	.gr-dcta { padding: 60px 16px; }
	.gr-dcta__cards { grid-template-columns: 1fr; }
	.gr-dcta__card { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   VOICES GRID WIDGET — editorial interview cards + Vimeo popup
   ═══════════════════════════════════════════════════════════ */

.gr-voices {
	--voices-gold: var(--gr-gold, #C8A759);
	--voices-cyan: #4FD1C5;
	--voices-card: rgba(255, 255, 255, 0.025);
	--voices-card-hover: rgba(200, 167, 89, 0.05);
	--voices-border: rgba(255, 255, 255, 0.07);
	--voices-border-hover: rgba(200, 167, 89, 0.25);
	position: relative;
	padding: 120px 24px;
	overflow: hidden;
}

.gr-voices::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 10%, rgba(200, 167, 89, 0.06) 0%, transparent 40%),
		radial-gradient(circle at 80% 90%, rgba(79, 209, 197, 0.04) 0%, transparent 40%);
	pointer-events: none;
}

.gr-voices__container {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
}

/* ── Header ── */
.gr-voices__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 80px;
}

.gr-voices__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--voices-gold);
	margin-bottom: 24px;
}

.gr-voices__eyebrow::before,
.gr-voices__eyebrow::after {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--voices-gold);
	opacity: 0.5;
}

.gr-voices__title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-weight: 400;
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--gr-text, #F5F5F5);
	margin: 0 0 24px;
}

.gr-voices__title em {
	font-style: italic;
	color: var(--voices-gold);
	font-weight: 400;
}

.gr-voices__intro {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--gr-text-muted, #A0A0A8);
	max-width: 620px;
	margin: 0 auto;
}

/* ── Grid ── */
.gr-voices__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

/* ── Card ── */
.gr-voices__card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--voices-card);
	border: 1px solid var(--voices-border);
	transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: hidden;
}

.gr-voices__card--video:focus-visible {
	outline: 2px solid var(--voices-gold);
	outline-offset: 4px;
}

.gr-voices__card:hover {
	background: var(--voices-card-hover);
	border-color: var(--voices-border-hover);
	transform: translateY(-4px);
}

/* Meta row */
.gr-voices__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 26px 0;
}

.gr-voices__number {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 0.95rem;
	color: var(--gr-text-muted, #A0A0A8);
	letter-spacing: 0.05em;
}

.gr-voices__tag {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 6px 12px;
	border: 1px solid;
}

.gr-voices__tag--gold {
	color: var(--voices-gold);
	border-color: rgba(200, 167, 89, 0.35);
	background: rgba(200, 167, 89, 0.1);
}

.gr-voices__tag--cyan {
	color: var(--voices-cyan);
	border-color: rgba(79, 209, 197, 0.35);
	background: rgba(79, 209, 197, 0.1);
}

/* Portrait */
.gr-voices__portrait {
	position: relative;
	display: block;
	width: calc(100% - 52px);
	margin: 22px 26px 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: linear-gradient(135deg, #1a2a45 0%, #0a1628 100%);
	transition: filter 0.4s ease;
}

.gr-voices .gr-voices__portrait img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center center;
	display: block;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
}

.gr-voices__card:hover .gr-voices__portrait img {
	transform: scale(1.05);
}

.gr-voices__monogram {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 9rem;
	font-weight: 300;
	color: rgba(200, 167, 89, 0.18);
	letter-spacing: -0.04em;
	line-height: 1;
}

.gr-voices__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(255, 255, 255, 0.95);
	filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
	transition: color 0.35s ease, transform 0.35s ease;
	pointer-events: none;
}

.gr-voices__card:hover .gr-voices__play {
	color: var(--voices-gold);
	transform: translate(-50%, -50%) scale(1.08);
}

/* Identity */
.gr-voices__identity {
	padding: 22px 26px 0;
}

.gr-voices__name {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 1.1;
	color: var(--gr-text, #F5F5F5);
	margin: 0 0 6px;
	letter-spacing: -0.01em;
}

.gr-voices__role {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.85rem;
	color: var(--gr-text-muted, #A0A0A8);
	letter-spacing: 0.02em;
	margin: 0;
}

.gr-voices__role-divider {
	color: var(--voices-gold);
	margin: 0 8px;
	opacity: 0.6;
}

/* Quote */
.gr-voices__quote {
	flex-grow: 1;
	position: relative;
	padding: 22px 26px;
}

.gr-voices__quote::before {
	content: '"';
	position: absolute;
	top: 12px;
	left: 18px;
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 4rem;
	color: var(--voices-gold);
	opacity: 0.2;
	line-height: 1;
}

.gr-voices__quote p {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-style: italic;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--gr-text, #F5F5F5);
	padding-left: 30px;
	margin: 0;
}

/* CTA */
.gr-voices__cta-wrap {
	border-top: 1px solid var(--voices-border);
	padding: 18px 26px;
}

.gr-voices__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gr-text, #F5F5F5);
	transition: color 0.3s ease, gap 0.3s ease;
}

.gr-voices__card:hover .gr-voices__cta,
.gr-voices__cta:hover {
	color: var(--voices-gold);
	gap: 14px;
}

.gr-voices__cta-arrow {
	transition: transform 0.3s ease;
}

.gr-voices__card:hover .gr-voices__cta-arrow {
	transform: translateX(4px);
}

/* Footer */
.gr-voices__footer {
	text-align: center;
	padding-top: 56px;
	margin-top: 56px;
	border-top: 1px solid var(--voices-border);
}

.gr-voices__footer-text {
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	color: var(--gr-text-muted, #A0A0A8);
	margin: 0 0 16px;
	font-size: 0.95rem;
}

.gr-voices__footer-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--voices-gold);
	text-decoration: none;
	font-family: var(--gr-font-body, 'Inter', sans-serif);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.8rem;
	padding: 14px 32px;
	border: 1px solid var(--voices-gold);
	transition: background 0.3s ease, color 0.3s ease;
}

.gr-voices__footer-btn:hover {
	background: var(--voices-gold);
	color: #0A0A0A;
}

/* ── Modal ── */
.gr-voices__modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gr-voices__modal--open {
	opacity: 1;
	visibility: visible;
}

.gr-voices__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.gr-voices__modal-close {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 10;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.gr-voices__modal-close:hover {
	background: rgba(200, 167, 89, 0.15);
	border-color: var(--voices-gold);
	color: var(--voices-gold);
}

.gr-voices__modal-content {
	position: relative;
	z-index: 2;
	width: 90%;
	max-width: 1000px;
	transform: translateY(24px) scale(0.95);
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gr-voices__modal--open .gr-voices__modal-content {
	transform: translateY(0) scale(1);
}

.gr-voices__modal-title {
	font-family: var(--gr-font-heading, 'Playfair Display', serif);
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	margin: 16px 0 0;
	text-align: center;
	letter-spacing: 0.02em;
}

.gr-voices__modal-player {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #000;
	border: 1px solid rgba(200, 167, 89, 0.12);
	overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 980px) {
	.gr-voices__grid {
		grid-template-columns: 1fr;
		gap: 28px;
		max-width: 540px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 640px) {
	.gr-voices { padding: 80px 20px; }
	.gr-voices__header { margin-bottom: 56px; }
	.gr-voices__meta,
	.gr-voices__identity,
	.gr-voices__quote,
	.gr-voices__cta-wrap { padding-left: 20px; padding-right: 20px; }
	.gr-voices__portrait { margin: 18px 20px 0; width: calc(100% - 40px); }
	.gr-voices__name { font-size: 1.55rem; }
	.gr-voices__monogram { font-size: 7rem; }
	.gr-voices__modal-content { width: 96%; max-width: none; }
	.gr-voices__modal-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}
